mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const contactJourneyOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add contact to list',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
];
|
|
|
|
export const contactJourneyFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* contactJourney:add */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Trigger ID',
|
|
name: 'triggerId',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTriggers',
|
|
},
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'List ID.',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
required: true,
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'add',
|
|
],
|
|
resource: [
|
|
'contactJourney',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Can be ID or email.',
|
|
},
|
|
];
|