n8n-nodes-base
Version:
Base nodes of n8n
62 lines • 1.9 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.contactJourneyFields = exports.contactJourneyOperations = void 0;
exports.contactJourneyOperations = [
{
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',
},
];
exports.contactJourneyFields = [
/* -------------------------------------------------------------------------- */
/* 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/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',
},
];
//# sourceMappingURL=ContactJourneyDescription.js.map