n8n/packages/nodes-base/nodes/Sendy/SubscriberDescription.ts
Iván Ovejero 6dcdb30bf4
refactor: Apply more nodelinting rules (#3324)
* ✏️ Alphabetize lint rules

* 🔥 Remove duplicates

*  Update `lintfix` script

* 👕 Apply `node-param-operation-without-no-data-expression` (#3329)

* 👕 Apply `node-param-operation-without-no-data-expression`

* 👕 Add exceptions

* 👕 Apply `node-param-description-weak` (#3328)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-option-value-duplicate` (#3331)

* 👕 Apply `node-param-description-miscased-json` (#3337)

* 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-type-options-missing-from-limit` (#3336)

* Rule workig as intended

* ✏️ Uncomment rules

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-option-name-duplicate` (#3338)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-description-wrong-for-simplify` (#3334)

*  fix

*  exceptions

*  changed rule ignoring from file to line

* 👕 Apply `node-param-resource-without-no-data-expression` (#3339)

* 👕 Apply `node-param-display-name-untrimmed` (#3341)

* 👕 Apply `node-param-display-name-miscased-id` (#3340)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-resource-with-plural-option` (#3342)

* 👕 Apply `node-param-description-wrong-for-upsert` (#3333)

*  fix

*  replaced record with contact in description

*  fix

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply `node-param-option-description-identical-to-name` (#3343)

* 👕 Apply `node-param-option-name-containing-star` (#3347)

* 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348)

* 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345)

*  fix

*  exceptions

* 👕 Apply node-param-display-name-wrong-for-simplify (#3344)

* Rule working as intended

* Uncomented other rules

* 👕 Undo and add exceptions

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

*  Alphabetize lint rules

*  Restore `lintfix` script

Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
2022-05-20 23:47:24 +02:00

288 lines
6.4 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const subscriberOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'subscriber',
],
},
},
options: [
{
name: 'Add',
value: 'add',
description: 'Add a subscriber to a list',
},
{
name: 'Count',
value: 'count',
description: 'Count subscribers',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a subscriber from a list',
},
{
name: 'Remove',
value: 'remove',
description: 'Unsubscribe user from a list',
},
{
name: 'Status',
value: 'status',
description: 'Get the status of subscriber',
},
],
default: 'add',
},
];
export const subscriberFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* subscriber:add */
/* -------------------------------------------------------------------------- */
{
displayName: 'Email',
name: 'email',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'add',
],
},
},
default: '',
description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'add',
],
},
},
default: '',
description: 'The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID.',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'add',
],
},
},
options: [
{
displayName: 'Country',
name: 'country',
type: 'string',
default: '',
description: 'User\'s 2 letter country code',
},
{
displayName: 'GDPR',
name: 'gdpr',
type: 'boolean',
default: false,
description: 'If you\'re signing up EU users in a GDPR compliant manner, set this to "true"',
},
{
displayName: 'Honeypot',
name: 'hp',
type: 'boolean',
default: false,
description: 'Include this \'honeypot\' field to prevent spambots from signing up via this API call. When spambots fills in this field, this API call will exit, preventing them from signing up fake addresses to your form. This parameter is only supported in Sendy 3.0 onwards.',
},
{
displayName: 'IP Address',
name: 'ipaddress',
type: 'string',
default: '',
description: 'User\'s IP address',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
description: 'User\'s name',
},
{
displayName: 'Referrer',
name: 'referrer',
type: 'string',
default: '',
description: 'The URL where the user signed up from',
},
{
displayName: 'Silent',
name: 'silent',
type: 'boolean',
default: false,
description: 'Set to "true" if your list is \'Double opt-in\' but you want to bypass that and signup the user to the list as \'Single Opt-in instead\' (optional)',
},
],
},
/* -------------------------------------------------------------------------- */
/* subscriber:count */
/* -------------------------------------------------------------------------- */
{
displayName: 'List ID',
name: 'listId',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'count',
],
},
},
default: '',
description: 'The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID.',
},
/* -------------------------------------------------------------------------- */
/* subscriber:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Email',
name: 'email',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'delete',
],
},
},
default: '',
description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'delete',
],
},
},
default: '',
description: 'The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID.',
},
/* -------------------------------------------------------------------------- */
/* subscriber:remove */
/* -------------------------------------------------------------------------- */
{
displayName: 'Email',
name: 'email',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'remove',
],
},
},
default: '',
description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'remove',
],
},
},
default: '',
description: 'The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID.',
},
/* -------------------------------------------------------------------------- */
/* subscriber:status */
/* -------------------------------------------------------------------------- */
{
displayName: 'Email',
name: 'email',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'status',
],
},
},
default: '',
description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
displayOptions: {
show: {
resource: [
'subscriber',
],
operation: [
'status',
],
},
},
default: '',
description: 'The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID.',
},
];