2022-08-01 13:47:55 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2020-07-02 13:41:59 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const formOperations: 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: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['form'],
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Add Subscriber',
|
|
|
|
value: 'addSubscriber',
|
2020-08-05 18:55:53 -07:00
|
|
|
description: 'Add a subscriber',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Add a subscriber',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2020-07-02 13:41:59 -07:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many forms',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many forms',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get Subscriptions',
|
|
|
|
value: 'getSubscriptions',
|
2020-08-05 18:55:53 -07:00
|
|
|
description: 'List subscriptions to a form including subscriber data',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get all subscriptions',
|
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 formFields: INodeProperties[] = [
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Form Name or ID',
|
2020-08-10 06:41:10 -07:00
|
|
|
name: 'id',
|
|
|
|
type: 'options',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
2020-08-10 06:41:10 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getForms',
|
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['form'],
|
|
|
|
operation: ['addSubscriber', 'getSubscriptions'],
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2020-08-10 06:41:10 -07:00
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2020-07-02 13:41:59 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['form'],
|
|
|
|
operation: ['addSubscriber'],
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description: "The subscriber's email address",
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['form'],
|
|
|
|
operation: ['addSubscriber'],
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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-08-01 13:47:55 -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-08-01 13:47:55 -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-08-01 13:47:55 -07:00
|
|
|
description: "The subscriber's first name",
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
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: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll', 'getSubscriptions'],
|
|
|
|
resource: ['form'],
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll', 'getSubscriptions'],
|
|
|
|
resource: ['form'],
|
|
|
|
returnAll: [false],
|
2020-08-05 18:55:53 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['form'],
|
|
|
|
operation: ['getSubscriptions'],
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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
|
|
|
];
|