n8n/packages/nodes-base/nodes/Mautic/CampaignContactDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

68 lines
1.5 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const campaignContactOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['campaignContact'],
},
},
options: [
{
name: 'Add',
value: 'add',
description: 'Add contact to a campaign',
action: 'Add a campaign contact',
},
{
name: 'Remove',
value: 'remove',
description: 'Remove contact from a campaign',
action: 'Remove a campaign contact',
},
],
default: 'add',
},
];
export const campaignContactFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* campaignContact:add */
/* -------------------------------------------------------------------------- */
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['campaignContact'],
operation: ['add', 'remove'],
},
},
default: '',
},
{
displayName: 'Campaign Name or ID',
name: 'campaignId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
required: true,
displayOptions: {
show: {
resource: ['campaignContact'],
operation: ['add', 'remove'],
},
},
typeOptions: {
loadOptionsMethod: 'getCampaigns',
},
default: '',
},
];