Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts
2025-09-08 04:48:28 +08:00

63 lines
1.3 KiB
TypeScript
Executable File

import type { INodeProperties } from 'n8n-workflow';
export const segmentOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['segment'],
},
},
options: [
{
name: 'Add Customer',
value: 'add',
action: 'Add a customer to a segment',
},
{
name: 'Remove Customer',
value: 'remove',
action: 'Remove a customer from a segment',
},
],
default: 'add',
},
];
export const segmentFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* 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',
},
];