2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2021-03-11 04:36:55 -08:00
2021-12-03 00:44:16 -08:00
export const contactOperations : INodeProperties [ ] = [
2021-03-11 04:36:55 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-03-11 04:36:55 -08:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
name : 'Create or Update' ,
2021-03-11 04:36:55 -08:00
value : 'upsert' ,
2022-08-01 13:47:55 -07:00
description :
'Create a new contact, or update the current one if it already exists (upsert)' ,
2022-07-10 13:50:51 -07:00
action : 'Create or Update a contact' ,
2021-03-11 04:36:55 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a contact' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a contact' ,
2021-03-11 04:36:55 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a contact' ,
2022-07-10 13:50:51 -07:00
action : 'Get a contact' ,
2021-03-11 04:36:55 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-03-11 04:36:55 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many contacts' ,
2022-09-08 08:10:13 -07:00
action : 'Get many contacts' ,
2021-03-11 04:36:55 -08:00
} ,
] ,
default : 'upsert' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-03-11 04:36:55 -08:00
2021-12-03 00:44:16 -08:00
export const contactFields : INodeProperties [ ] = [
2021-03-11 04:36:55 -08:00
/* -------------------------------------------------------------------------- */
/* contact:upsert */
/* -------------------------------------------------------------------------- */
{
displayName : 'Email' ,
name : 'email' ,
required : true ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-03-11 04:36:55 -08:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'upsert' ] ,
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Email address of the contact' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'upsert' ] ,
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Company' ,
name : 'Company' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
type : 'fixedCollection' ,
2022-04-22 09:29:51 -07:00
default : { } ,
2021-03-11 04:36:55 -08:00
placeholder : 'Add Custom Field' ,
typeOptions : {
multipleValues : true ,
loadOptionsMethod : 'getCustomFields' ,
} ,
options : [
{
name : 'customFieldsValues' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Key Name or ID' ,
2021-03-11 04:36:55 -08:00
name : 'key' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getCustomFields' ,
} ,
2022-08-01 13:47:55 -07:00
description :
'User-specified key of user-defined data. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-03-11 04:36:55 -08:00
default : '' ,
} ,
{
displayName : 'Value' ,
name : 'value' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'User-specified value of user-defined data' ,
2021-03-11 04:36:55 -08:00
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Fax' ,
name : 'Fax' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'First Name' ,
name : 'FirstName' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Industry' ,
name : 'Industry' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Last Name' ,
name : 'LastName' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Lead Source' ,
name : 'LeadSource' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'LinkedIn URL' ,
name : 'LinkedIn' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'List Name or ID' ,
2021-03-11 04:36:55 -08:00
name : 'autopilotList' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getLists' ,
} ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'List to which this contact will be added on creation. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Mailing Country' ,
name : 'MailingCountry' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Mailing Postal Code' ,
name : 'MailingPostalCode' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Mailing State' ,
name : 'MailingState' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Mailing Street' ,
name : 'MailingStreet' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Mailing City' ,
name : 'MailingCity' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Mobile Phone' ,
name : 'MobilePhone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'New Email' ,
name : 'newEmail' ,
type : 'string' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'If provided, will change the email address of the contact identified by the Email field' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Notify' ,
name : 'notify' ,
type : 'boolean' ,
default : true ,
2022-06-20 07:54:01 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
2022-08-01 13:47:55 -07:00
description :
'By default Autopilot notifies registered REST hook endpoints for contact_added/contact_updated events when a new contact is added or an existing contact is updated via API. Disable to skip notifications.' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Number of Employees' ,
name : 'NumberOfEmployees' ,
type : 'number' ,
default : 0 ,
} ,
{
displayName : 'Owner Name' ,
name : 'owner_name' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Phone' ,
name : 'Phone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Salutation' ,
name : 'Salutation' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Session ID' ,
name : 'autopilotSessionId' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Used to associate a contact with a session' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Status' ,
name : 'Status' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Title' ,
name : 'Title' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Subscribe' ,
name : 'unsubscribed' ,
type : 'boolean' ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to subscribe or un-subscribe a contact' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Website URL' ,
name : 'Website' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* contact:delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Contact ID' ,
name : 'contactId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'delete' ] ,
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Can be ID or email' ,
2021-03-11 04:36:55 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* contact:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Contact ID' ,
name : 'contactId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'get' ] ,
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Can be ID or email' ,
2021-03-11 04:36:55 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* contact:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'getAll' ] ,
resource : [ 'contact' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-03-11 04:36:55 -08:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'getAll' ] ,
resource : [ 'contact' ] ,
returnAll : [ false ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-03-11 04:36:55 -08:00
} ,
2021-12-03 00:44:16 -08:00
] ;