2020-07-02 13:41:59 -07:00
|
|
|
import {
|
2020-08-05 18:55:53 -07:00
|
|
|
INodeProperties,
|
2020-07-02 13:41:59 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const sequenceOperations: INodeProperties[] = [
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-07-02 13:41:59 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Add Subscriber',
|
|
|
|
value: 'addSubscriber',
|
2020-08-06 10:33:43 -07:00
|
|
|
description: 'Add a subscriber',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
2020-08-06 10:33:43 -07:00
|
|
|
description: 'Get all sequences',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get Subscriptions',
|
|
|
|
value: 'getSubscriptions',
|
2020-08-06 10:33:43 -07:00
|
|
|
description: 'Get all subscriptions to a sequence including subscriber data',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'addSubscriber',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The operations to perform',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-07-02 13:41:59 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const sequenceFields: INodeProperties[] = [
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
2020-08-10 06:41:10 -07:00
|
|
|
displayName: 'Sequence ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSequences',
|
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addSubscriber',
|
2020-08-10 06:41:10 -07:00
|
|
|
'getSubscriptions',
|
2020-07-02 13:41:59 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2020-08-10 06:41:10 -07:00
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2020-07-02 13:41:59 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addSubscriber',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The subscriber\'s email address',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
2020-08-05 18:55:53 -07:00
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addSubscriber',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Custom Fields',
|
2020-08-05 18:55:53 -07:00
|
|
|
name: 'fieldsUi',
|
2020-07-02 13:41:59 -07:00
|
|
|
placeholder: 'Add Custom Field',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here)',
|
2020-07-02 13:41:59 -07:00
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: true,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
2020-08-05 18:55:53 -07:00
|
|
|
name: 'fieldsValues',
|
2020-07-02 13:41:59 -07:00
|
|
|
displayName: 'Custom Field',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Field Key',
|
|
|
|
name: 'key',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: 'last_name',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The field\'s key',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Field Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: 'Doe',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Value of the field',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-08-05 18:55:53 -07:00
|
|
|
{
|
|
|
|
displayName: 'First Name',
|
|
|
|
name: 'firstName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The subscriber\'s first name',
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Tag IDs',
|
|
|
|
name: 'tags',
|
|
|
|
type: 'multiOptions',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTags',
|
|
|
|
},
|
|
|
|
default: [],
|
|
|
|
description: 'Tags',
|
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'sequence',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Subscriber State',
|
|
|
|
name: 'subscriberState',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Active',
|
|
|
|
value: 'active',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Cancelled',
|
|
|
|
value: 'cancelled',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'active',
|
|
|
|
},
|
|
|
|
],
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Receive only active subscribers or cancelled subscribers',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|