n8n/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts

74 lines
1.3 KiB
TypeScript
Raw Normal View History

import { INodeProperties } from 'n8n-workflow';
export const segmentOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'segment',
],
},
},
options: [
{
name: 'Add Customer',
value: 'add',
},
{
name: 'Remove Customer',
value: 'remove',
},
],
default: 'add',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const segmentFields = [
/* -------------------------------------------------------------------------- */
/* segment:add */
/* -------------------------------------------------------------------------- */
{
displayName: 'Segment ID',
name: 'segmentId',
type: 'number',
required: true,
default: 0,
displayOptions: {
show: {
resource: [
'segment',
],
operation: [
'add',
'remove',
2020-10-22 06:46:03 -07:00
],
},
},
description: 'The unique identifier of the segment.',
},
{
displayName: 'Customer IDs',
name: 'customerIds',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'segment',
],
operation: [
'add',
'remove',
2020-10-22 06:46:03 -07:00
],
},
},
description: 'A list of customer ids to add to the segment.',
},
] as INodeProperties[];