mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
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',
|
|
]
|
|
},
|
|
},
|
|
description: 'The unique identifier of the segment.',
|
|
},
|
|
{
|
|
displayName: 'Customer IDs',
|
|
name: 'customerIds',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'segment',
|
|
],
|
|
operation: [
|
|
'add',
|
|
'remove',
|
|
]
|
|
},
|
|
},
|
|
description: 'A list of customer ids to add to the segment.',
|
|
},
|
|
] as INodeProperties[];
|