n8n/packages/nodes-base/nodes/Autopilot/ContactJourneyDescription.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

63 lines
1.4 KiB
TypeScript

import type { 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',
},
];