mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
115 lines
1.8 KiB
TypeScript
115 lines
1.8 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const contactListOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'contactList',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add contact to a list',
|
|
},
|
|
{
|
|
name: 'Remove',
|
|
value: 'remove',
|
|
description: 'Remove contact from a list',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
];
|
|
|
|
export const contactListFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// contactList:add
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'List ID',
|
|
name: 'listId',
|
|
type: 'number',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactList',
|
|
],
|
|
},
|
|
},
|
|
description: 'List ID',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
type: 'number',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactList',
|
|
],
|
|
},
|
|
},
|
|
description: 'Contact ID',
|
|
},
|
|
|
|
// ----------------------------------
|
|
// contactList:remove
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'List ID',
|
|
name: 'listId',
|
|
type: 'number',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'remove',
|
|
],
|
|
resource: [
|
|
'contactList',
|
|
],
|
|
},
|
|
},
|
|
description: 'List ID',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
type: 'number',
|
|
default: '',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'remove',
|
|
],
|
|
resource: [
|
|
'contactList',
|
|
],
|
|
},
|
|
},
|
|
description: 'Contact ID',
|
|
},
|
|
];
|