2020-09-02 03:25:11 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const segmentOperations: INodeProperties[] = [
|
2020-09-02 03:25:11 -07:00
|
|
|
{
|
|
|
|
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.',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-09-02 03:25:11 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const segmentFields: INodeProperties[] = [
|
2020-09-02 03:25:11 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* segment:add */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
2020-09-02 03:32:12 -07:00
|
|
|
displayName: 'Segment ID',
|
|
|
|
name: 'segmentId',
|
2020-09-02 03:25:11 -07:00
|
|
|
type: 'number',
|
|
|
|
required: true,
|
|
|
|
default: 0,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'segment',
|
|
|
|
],
|
|
|
|
operation: [
|
2020-09-02 03:32:12 -07:00
|
|
|
'add',
|
|
|
|
'remove',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2020-09-02 03:25:11 -07:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The unique identifier of the segment',
|
2020-09-02 03:25:11 -07:00
|
|
|
},
|
|
|
|
{
|
2020-09-02 03:32:12 -07:00
|
|
|
displayName: 'Customer IDs',
|
|
|
|
name: 'customerIds',
|
2020-09-02 03:25:11 -07:00
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'segment',
|
|
|
|
],
|
|
|
|
operation: [
|
2020-09-02 03:32:12 -07:00
|
|
|
'add',
|
|
|
|
'remove',
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2020-09-02 03:25:11 -07:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'A list of customer IDs to add to the segment',
|
2020-09-02 03:25:11 -07:00
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|