2022-08-01 13:47:55 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-03-11 04:36:55 -08:00
2021-12-03 00:44:16 -08:00
export const contactListOperations : 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 : [ 'contactList' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
options : [
{
name : 'Add' ,
value : 'add' ,
2022-05-06 14:01:25 -07:00
description : 'Add contact to list' ,
2022-07-10 13:50:51 -07:00
action : 'Add a contact to a list' ,
2021-03-11 04:36:55 -08:00
} ,
{
name : 'Exist' ,
value : 'exist' ,
2022-05-06 14:01:25 -07:00
description : 'Check if contact is on list' ,
2022-07-10 13:50:51 -07:00
action : 'Check if a contact list exists' ,
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-05-06 14:01:25 -07:00
description : 'Get all contacts on list' ,
2022-09-08 08:10:13 -07:00
action : 'Get many contact lists' ,
2021-03-11 04:36:55 -08:00
} ,
{
name : 'Remove' ,
value : 'remove' ,
2022-05-06 14:01:25 -07:00
description : 'Remove a contact from a list' ,
2022-07-10 13:50:51 -07:00
action : 'Remove a contact from a list' ,
2021-03-11 04:36:55 -08:00
} ,
] ,
default : 'add' ,
} ,
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 contactListFields : INodeProperties [ ] = [
2021-03-11 04:36:55 -08:00
/* -------------------------------------------------------------------------- */
/* contactList:add */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'List Name or ID' ,
2021-03-11 04:36:55 -08:00
name : 'listId' ,
required : true ,
typeOptions : {
loadOptionsMethod : 'getLists' ,
} ,
type : 'options' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'add' , 'remove' , 'exist' , 'getAll' ] ,
resource : [ 'contactList' ] ,
2021-03-11 04:36:55 -08:00
} ,
} ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'ID of the list to operate on. 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 : 'Contact ID' ,
name : 'contactId' ,
required : true ,
type : 'string' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'add' , 'remove' , 'exist' ] ,
resource : [ 'contactList' ] ,
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
} ,
/* -------------------------------------------------------------------------- */
/* contactList:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'getAll' ] ,
resource : [ 'contactList' ] ,
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 : [ 'contactList' ] ,
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
] ;