mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0ecbb4a19d
* 🔨 prettier formated nodes - A * 🔨 prettier formated nodes - B * ⚡ prettier formated nodes - C * ⚡ prettier formated nodes - D * ⚡ prettier formated nodes - E-F * 🎨 Adjust nodes-base formatting command (#3805) * Format additional files in nodes A-F (#3811) * ⚡ fixes * 🎨 Add Mindee to ignored dirs Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
63 lines
1.4 KiB
TypeScript
63 lines
1.4 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const contactJourneyOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['contactJourney'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add contact to list',
|
|
action: 'Add a contact journey',
|
|
},
|
|
],
|
|
default: 'add',
|
|
},
|
|
];
|
|
|
|
export const contactJourneyFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* contactJourney:add */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Trigger Name or ID',
|
|
name: 'triggerId',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTriggers',
|
|
},
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['add'],
|
|
resource: ['contactJourney'],
|
|
},
|
|
},
|
|
default: '',
|
|
description:
|
|
'List ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
required: true,
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['add'],
|
|
resource: ['contactJourney'],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Can be ID or email',
|
|
},
|
|
];
|