n8n/packages/nodes-base/nodes/Mautic/ContactSegmentDescription.ts
Ricardo Espinoza abc2f2a515
Add resource contact segment and company contact to Mautic node (#1975)
* Add contact To Segment operation

*  Improvements to #1973

*  Rename resource

Co-authored-by: Rodrigo Correia <rodrigoscdc@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-07-08 10:12:19 +02:00

83 lines
1.4 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const contactSegmentOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'contactSegment',
],
},
},
options: [
{
name: 'Add',
value: 'add',
description: 'Add contact to a segment',
},
{
name: 'Remove',
value: 'remove',
description: 'Remove contact from a segment',
},
],
default: 'add',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const contactSegmentFields = [
/* -------------------------------------------------------------------------- */
/* contactSegment:add */
/* -------------------------------------------------------------------------- */
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'contactSegment',
],
operation: [
'add',
'remove',
],
},
},
default: '',
description: 'Contact ID',
},
{
displayName: 'Segment ID',
name: 'segmentId',
type: 'options',
required: true,
displayOptions: {
show: {
resource: [
'contactSegment',
],
operation: [
'add',
'remove',
],
},
},
typeOptions: {
loadOptionsMethod: 'getSegments',
},
default: '',
description: 'Segment ID',
},
] as INodeProperties[];