2020-07-02 13:41:59 -07:00
|
|
|
import {
|
|
|
|
INodeProperties
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export const formOperations = [
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Add Subscriber',
|
|
|
|
value: 'addSubscriber',
|
2020-08-05 18:55:53 -07:00
|
|
|
description: 'Add a subscriber',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
2020-08-05 18:55:53 -07:00
|
|
|
description: 'Get all 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',
|
2020-07-02 13:41:59 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'addSubscriber',
|
|
|
|
description: 'The operations to perform.',
|
|
|
|
},
|
|
|
|
] as INodeProperties[];
|
|
|
|
|
|
|
|
export const formFields = [
|
|
|
|
{
|
2020-08-05 18:55:53 -07:00
|
|
|
displayName: 'Email',
|
2020-07-02 13:41:59 -07:00
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addSubscriber',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: `The subscriber's email address.`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Form ID',
|
|
|
|
name: 'id',
|
2020-08-05 18:55:53 -07:00
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getForms',
|
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'addSubscriber',
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Form ID.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
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',
|
|
|
|
description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here).',
|
|
|
|
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',
|
|
|
|
description: `The field's key.`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Field Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: 'Doe',
|
|
|
|
description: 'Value of the field.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-08-05 18:55:53 -07:00
|
|
|
{
|
|
|
|
displayName: 'First Name',
|
|
|
|
name: 'firstName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: `The subscriber's first name.`,
|
|
|
|
},
|
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: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
|
|
|
description: 'If all results should be returned or only up to a given limit.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
|
|
|
description: 'How many results to return.',
|
|
|
|
},
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'form',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getSubscriptions',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Subscriber State',
|
|
|
|
name: 'subscriberState',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Active',
|
|
|
|
value: 'active',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Cancelled',
|
|
|
|
value: 'cancelled',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'active',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
description: 'Receive only active subscribers or cancelled subscribers.',
|
|
|
|
},
|
|
|
|
] as INodeProperties[];
|