mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
7dcbaedea6
* added mautic campaings node actions * Changed campaign contact term and fixed typos Co-authored-by: Luiz Eduardo de Oliveira Fonseca <luizeof@gmail.com>
83 lines
1.5 KiB
TypeScript
83 lines
1.5 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const campaignContactOperations = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'campaignContact',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Add',
|
|
value: 'add',
|
|
description: 'Add contact to a campaign',
|
|
},
|
|
{
|
|
name: 'Remove',
|
|
value: 'remove',
|
|
description: 'Remove contact from a campaign',
|
|
},
|
|
],
|
|
default: 'add',
|
|
description: 'The operation to perform.',
|
|
},
|
|
] as INodeProperties[];
|
|
|
|
export const campaignContactFields = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* campaignContact:add */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Contact ID',
|
|
name: 'contactId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'campaignContact',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'remove',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Contact ID',
|
|
},
|
|
{
|
|
|
|
displayName: 'Campaign ID',
|
|
name: 'campaignId',
|
|
type: 'options',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'campaignContact',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'remove',
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCampaigns',
|
|
},
|
|
default: '',
|
|
description: 'Campaign ID',
|
|
|
|
},
|
|
] as INodeProperties[];
|