mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
refactor: Apply more eslint-plugin-n8n-nodes-base
autofixable rules (#3432)
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
This commit is contained in:
parent
58ecadf53c
commit
70ae90fa3c
13
.eslintrc.js
13
.eslintrc.js
|
@ -423,6 +423,19 @@ module.exports = {
|
|||
'n8n-nodes-base/node-param-resource-with-plural-option': 'error',
|
||||
'n8n-nodes-base/node-param-resource-without-no-data-expression': 'error',
|
||||
'n8n-nodes-base/node-param-type-options-missing-from-limit': 'error',
|
||||
'n8n-nodes-base/node-param-description-wrong-for-dynamic-options': 'error',
|
||||
'n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options': 'error',
|
||||
'n8n-nodes-base/node-param-min-value-wrong-for-limit': 'error',
|
||||
'n8n-nodes-base/node-param-placeholder-miscased-id': 'error',
|
||||
'n8n-nodes-base/node-param-description-miscased-url': 'error',
|
||||
'n8n-nodes-base/node-param-option-name-wrong-for-upsert': 'error',
|
||||
'n8n-nodes-base/node-param-options-type-unsorted-items': 'error',
|
||||
'n8n-nodes-base/node-param-default-wrong-for-string': 'error',
|
||||
'n8n-nodes-base/node-param-default-wrong-for-number': 'error',
|
||||
'n8n-nodes-base/node-param-description-lowercase-first-char': 'error',
|
||||
'n8n-nodes-base/node-param-display-name-miscased': 'error',
|
||||
'n8n-nodes-base/node-param-default-wrong-for-fixed-collection': 'error',
|
||||
'n8n-nodes-base/node-param-description-line-break-html-tag': 'error',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
|
@ -34,9 +34,9 @@ export const personTagFields: INodeProperties[] = [
|
|||
// personTag: add
|
||||
// ----------------------------------------
|
||||
{
|
||||
displayName: 'Tag ID',
|
||||
displayName: 'Tag Name or ID',
|
||||
name: 'tagId',
|
||||
description: 'ID of the tag to add',
|
||||
description: 'ID of the tag to add. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTags',
|
||||
|
@ -77,9 +77,9 @@ export const personTagFields: INodeProperties[] = [
|
|||
// personTag: remove
|
||||
// ----------------------------------------
|
||||
{
|
||||
displayName: 'Tag ID',
|
||||
displayName: 'Tag Name or ID',
|
||||
name: 'tagId',
|
||||
description: 'ID of the tag whose tagging to delete',
|
||||
description: 'ID of the tag whose tagging to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTags',
|
||||
|
@ -98,9 +98,9 @@ export const personTagFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Tagging ID',
|
||||
displayName: 'Tagging Name or ID',
|
||||
name: 'taggingId',
|
||||
description: 'ID of the tagging to remove',
|
||||
description: 'ID of the tagging to remove. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsDependsOn: [
|
||||
|
|
|
@ -92,7 +92,7 @@ export const accountContactFields: INodeProperties[] = [
|
|||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Job title',
|
||||
displayName: 'Job Title',
|
||||
name: 'jobTitle',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -162,7 +162,7 @@ export const accountContactFields: INodeProperties[] = [
|
|||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Job title',
|
||||
displayName: 'Job Title',
|
||||
name: 'jobTitle',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -112,14 +112,14 @@ export const accountFields: INodeProperties[] = [
|
|||
displayName: 'Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'customFieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getAccountCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the field to set',
|
||||
description: 'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Field Value',
|
||||
|
@ -204,14 +204,14 @@ export const accountFields: INodeProperties[] = [
|
|||
displayName: 'Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'customFieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getAccountCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the field to set',
|
||||
description: 'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Field Value',
|
||||
|
|
|
@ -143,6 +143,10 @@ export class ActiveCampaign implements INodeType {
|
|||
name: 'Account Contact',
|
||||
value: 'accountContact',
|
||||
},
|
||||
{
|
||||
name: 'Connection',
|
||||
value: 'connection',
|
||||
},
|
||||
{
|
||||
name: 'Contact',
|
||||
value: 'contact',
|
||||
|
@ -155,24 +159,20 @@ export class ActiveCampaign implements INodeType {
|
|||
name: 'Contact Tag',
|
||||
value: 'contactTag',
|
||||
},
|
||||
{
|
||||
name: 'Connection',
|
||||
value: 'connection',
|
||||
},
|
||||
{
|
||||
name: 'Deal',
|
||||
value: 'deal',
|
||||
},
|
||||
{
|
||||
name: 'E-commerce Order',
|
||||
value: 'ecommerceOrder',
|
||||
},
|
||||
{
|
||||
name: 'E-Commerce Customer',
|
||||
value: 'ecommerceCustomer',
|
||||
},
|
||||
{
|
||||
name: 'E-commerce Order Product',
|
||||
name: 'E-Commerce Order',
|
||||
value: 'ecommerceOrder',
|
||||
},
|
||||
{
|
||||
name: 'E-Commerce Order Product',
|
||||
value: 'ecommerceOrderProducts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -74,7 +74,7 @@ export const connectionFields: INodeProperties[] = [
|
|||
description: 'The name of the service',
|
||||
},
|
||||
{
|
||||
displayName: 'External accout ID',
|
||||
displayName: 'External Account ID',
|
||||
name: 'externalid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -193,7 +193,7 @@ export const connectionFields: INodeProperties[] = [
|
|||
description: 'The name of the service',
|
||||
},
|
||||
{
|
||||
displayName: 'External accout ID',
|
||||
displayName: 'External Account ID',
|
||||
name: 'externalid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -73,7 +73,7 @@ export const contactFields: INodeProperties[] = [
|
|||
description: 'The email of the contact to create',
|
||||
},
|
||||
{
|
||||
displayName: 'Update if exists',
|
||||
displayName: 'Update if Exists',
|
||||
name: 'updateIfExists',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
|
@ -122,14 +122,14 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getContactCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the field to set',
|
||||
description: 'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Field Value',
|
||||
|
@ -221,14 +221,14 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getContactCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the field to set',
|
||||
description: 'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Field Value',
|
||||
|
@ -405,26 +405,26 @@ export const contactFields: INodeProperties[] = [
|
|||
name: 'status',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Active',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Any',
|
||||
value: -1,
|
||||
},
|
||||
{
|
||||
name: 'Bounced',
|
||||
value: 3,
|
||||
},
|
||||
{
|
||||
name: 'Unconfirmed',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
name: 'Active',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Unsubscribed',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Bounced',
|
||||
value: 3,
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -36,7 +36,7 @@ export const contactTagFields: INodeProperties[] = [
|
|||
// contactTag:add
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Tag ID',
|
||||
displayName: 'Tag Name or ID',
|
||||
name: 'tagId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -29,6 +29,11 @@ export const dealOperations: INodeProperties[] = [
|
|||
value: 'create',
|
||||
description: 'Create a deal',
|
||||
},
|
||||
{
|
||||
name: 'Create Note',
|
||||
value: 'createNote',
|
||||
description: 'Create a deal note',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
|
@ -50,12 +55,7 @@ export const dealOperations: INodeProperties[] = [
|
|||
description: 'Update a deal',
|
||||
},
|
||||
{
|
||||
name: 'Create Note',
|
||||
value: 'createNote',
|
||||
description: 'Create a deal note',
|
||||
},
|
||||
{
|
||||
name: 'Update deal note',
|
||||
name: 'Update Deal Note',
|
||||
value: 'updateNote',
|
||||
description: 'Update a deal note',
|
||||
},
|
||||
|
@ -88,7 +88,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The title of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal\'s contact ID',
|
||||
displayName: 'Deal\'s Contact ID',
|
||||
name: 'contact',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -106,7 +106,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The ID of the deal\'s contact',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal value',
|
||||
displayName: 'Deal Value',
|
||||
name: 'value',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -143,7 +143,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The currency of the deal in 3-character ISO format',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal pipeline ID',
|
||||
displayName: 'Deal Pipeline ID',
|
||||
name: 'group',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -160,7 +160,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The pipeline ID of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal stage ID',
|
||||
displayName: 'Deal Stage ID',
|
||||
name: 'stage',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -177,7 +177,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The stage ID of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal owner ID',
|
||||
displayName: 'Deal Owner ID',
|
||||
name: 'owner',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -219,14 +219,14 @@ export const dealFields: INodeProperties[] = [
|
|||
},
|
||||
|
||||
{
|
||||
displayName: 'Deal percentage',
|
||||
displayName: 'Deal Percentage',
|
||||
name: 'percent',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
description: 'The percentage of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal status',
|
||||
displayName: 'Deal Status',
|
||||
name: 'status',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -282,14 +282,14 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The title of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal\'s contact ID',
|
||||
displayName: 'Deal\'s Contact ID',
|
||||
name: 'contact',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
description: 'The ID of the deal\'s contact',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal value',
|
||||
displayName: 'Deal Value',
|
||||
name: 'value',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -311,35 +311,35 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The description of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal pipeline ID',
|
||||
displayName: 'Deal Pipeline ID',
|
||||
name: 'group',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The pipeline ID of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal stage ID',
|
||||
displayName: 'Deal Stage ID',
|
||||
name: 'stage',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The stage ID of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal owner ID',
|
||||
displayName: 'Deal Owner ID',
|
||||
name: 'owner',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The owner ID of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal percentage',
|
||||
displayName: 'Deal Percentage',
|
||||
name: 'percent',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
description: 'The percentage of the deal',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal status',
|
||||
displayName: 'Deal Status',
|
||||
name: 'status',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -459,7 +459,7 @@ export const dealFields: INodeProperties[] = [
|
|||
description: 'The ID of the deal note',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal note ID',
|
||||
displayName: 'Deal Note ID',
|
||||
name: 'dealNoteId',
|
||||
type: 'number',
|
||||
default: '',
|
||||
|
|
|
@ -76,7 +76,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The ID of the order in the external service. ONLY REQUIRED IF EXTERNALCHECKOUTID NOT INCLUDED.',
|
||||
},
|
||||
{
|
||||
displayName: 'External checkout ID',
|
||||
displayName: 'External Checkout ID',
|
||||
name: 'externalcheckoutid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -93,7 +93,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The ID of the cart in the external service. ONLY REQUIRED IF EXTERNALID IS NOT INCLUDED.',
|
||||
},
|
||||
{
|
||||
displayName: 'Order source',
|
||||
displayName: 'Order Source',
|
||||
name: 'source',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -129,7 +129,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The email address of the customer who placed the order',
|
||||
},
|
||||
{
|
||||
displayName: 'Total price',
|
||||
displayName: 'Total Price',
|
||||
name: 'totalPrice',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -147,7 +147,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The total price of the order in cents, including tax and shipping charges. (i.e. $456.78 => 45678). Must be greater than or equal to zero.',
|
||||
},
|
||||
{
|
||||
displayName: 'Order currency',
|
||||
displayName: 'Order Currency',
|
||||
name: 'currency',
|
||||
type: 'options',
|
||||
default: 'eur',
|
||||
|
@ -280,7 +280,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The quantity ordered',
|
||||
},
|
||||
{
|
||||
displayName: 'Product external ID',
|
||||
displayName: 'Product External ID',
|
||||
name: 'externalid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -370,7 +370,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The URL for the order in the external service',
|
||||
},
|
||||
{
|
||||
displayName: 'External updated date',
|
||||
displayName: 'External Updated Date',
|
||||
name: 'externalUpdatedDate',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
|
@ -440,14 +440,14 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The ID of the order in the external service. ONLY REQUIRED IF EXTERNALCHECKOUTID NOT INCLUDED.',
|
||||
},
|
||||
{
|
||||
displayName: 'External checkout ID',
|
||||
displayName: 'External Checkout ID',
|
||||
name: 'externalcheckoutid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The ID of the cart in the external service. ONLY REQUIRED IF EXTERNALID IS NOT INCLUDED.',
|
||||
},
|
||||
{
|
||||
displayName: 'Order source',
|
||||
displayName: 'Order Source',
|
||||
name: 'source',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -461,14 +461,14 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The email address of the customer who placed the order',
|
||||
},
|
||||
{
|
||||
displayName: 'Total price',
|
||||
displayName: 'Total Price',
|
||||
name: 'totalPrice',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
description: 'The total price of the order in cents, including tax and shipping charges. (i.e. $456.78 => 45678). Must be greater than or equal to zero.',
|
||||
},
|
||||
{
|
||||
displayName: 'Order currency',
|
||||
displayName: 'Order Currency',
|
||||
name: 'currency',
|
||||
type: 'options',
|
||||
default: 'eur',
|
||||
|
@ -533,7 +533,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The URL for the order in the external service',
|
||||
},
|
||||
{
|
||||
displayName: 'External updated date',
|
||||
displayName: 'External Updated Date',
|
||||
name: 'externalUpdatedDate',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
|
@ -588,7 +588,7 @@ export const ecomOrderFields: INodeProperties[] = [
|
|||
description: 'The quantity ordered',
|
||||
},
|
||||
{
|
||||
displayName: 'Product external ID',
|
||||
displayName: 'Product External ID',
|
||||
name: 'externalid',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -66,7 +66,7 @@ export const allCurrencies = [
|
|||
{ name: 'Hungarian Forint', value: 'huf' },
|
||||
{ name: 'Indonesian Rupiah', value: 'idr' },
|
||||
{ name: 'Israeli New Sheqel', value: 'ils' },
|
||||
{ name: 'Manx pound', value: 'imp' },
|
||||
{ name: 'Manx Pound', value: 'imp' },
|
||||
{ name: 'Indian Rupee', value: 'inr' },
|
||||
{ name: 'Iraqi Dinar', value: 'iqd' },
|
||||
{ name: 'Iranian Rial', value: 'irr' },
|
||||
|
@ -97,7 +97,7 @@ export const allCurrencies = [
|
|||
{ name: 'Myanma Kyat', value: 'mmk' },
|
||||
{ name: 'Mongolian Tugrik', value: 'mnt' },
|
||||
{ name: 'Macanese Pataca', value: 'mop' },
|
||||
{ name: 'Mauritanian Ouguiya (pre-2018)', value: 'mro' },
|
||||
{ name: 'Mauritanian Ouguiya (Pre-2018)', value: 'mro' },
|
||||
{ name: 'Mauritanian Ouguiya', value: 'mru' },
|
||||
{ name: 'Mauritian Rupee', value: 'mur' },
|
||||
{ name: 'Maldivian Rufiyaa', value: 'mvr' },
|
||||
|
@ -135,7 +135,7 @@ export const allCurrencies = [
|
|||
{ name: 'Somali Shilling', value: 'sos' },
|
||||
{ name: 'Surinamese Dollar', value: 'srd' },
|
||||
{ name: 'South Sudanese Pound', value: 'ssp' },
|
||||
{ name: 'São Tomé and Príncipe Dobra (pre-2018)', value: 'std' },
|
||||
{ name: 'São Tomé and Príncipe Dobra (Pre-2018)', value: 'std' },
|
||||
{ name: 'São Tomé and Príncipe Dobra', value: 'stn' },
|
||||
{ name: 'Salvadoran Colón', value: 'svc' },
|
||||
{ name: 'Syrian Pound', value: 'syp' },
|
||||
|
|
|
@ -83,30 +83,30 @@ export class AcuitySchedulingTrigger implements INodeType {
|
|||
required: true,
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'appointment.scheduled',
|
||||
value: 'appointment.scheduled',
|
||||
description: 'is called once when an appointment is initially booked',
|
||||
},
|
||||
{
|
||||
name: 'appointment.rescheduled',
|
||||
value: 'appointment.rescheduled',
|
||||
description: 'is called when the appointment is rescheduled to a new time',
|
||||
},
|
||||
{
|
||||
name: 'appointment.canceled',
|
||||
value: 'appointment.canceled',
|
||||
description: 'is called whenever an appointment is canceled',
|
||||
description: 'Is called whenever an appointment is canceled',
|
||||
},
|
||||
{
|
||||
name: 'appointment.changed',
|
||||
value: 'appointment.changed',
|
||||
description: 'is called when the appointment is changed in any way',
|
||||
description: 'Is called when the appointment is changed in any way',
|
||||
},
|
||||
{
|
||||
name: 'appointment.rescheduled',
|
||||
value: 'appointment.rescheduled',
|
||||
description: 'Is called when the appointment is rescheduled to a new time',
|
||||
},
|
||||
{
|
||||
name: 'appointment.scheduled',
|
||||
value: 'appointment.scheduled',
|
||||
description: 'Is called once when an appointment is initially booked',
|
||||
},
|
||||
{
|
||||
name: 'order.completed',
|
||||
value: 'order.completed',
|
||||
description: 'is called when an order is completed',
|
||||
description: 'Is called when an order is completed',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
|
@ -47,7 +47,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
/* listEntry:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -65,7 +65,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The unique ID of the list whose list entries are to be retrieved',
|
||||
description: 'The unique ID of the list whose list entries are to be retrieved. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Entity ID',
|
||||
|
@ -115,7 +115,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
/* listEntry:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -133,7 +133,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The unique ID of the list that contains the specified list_entry_id',
|
||||
description: 'The unique ID of the list that contains the specified list_entry_id. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'List Entry ID',
|
||||
|
@ -157,7 +157,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
/* listEntry:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -174,7 +174,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The unique ID of the list whose list entries are to be retrieved',
|
||||
description: 'The unique ID of the list whose list entries are to be retrieved. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -221,7 +221,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
/* listEntry:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -239,7 +239,7 @@ export const listEntryFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The unique ID of the list that contains the specified list_entry_id',
|
||||
description: 'The unique ID of the list that contains the specified list_entry_id. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'List Entry ID',
|
||||
|
|
|
@ -149,7 +149,7 @@ export const companyFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Any filter',
|
||||
name: 'Any Filter',
|
||||
value: 'anyFilter',
|
||||
},
|
||||
{
|
||||
|
@ -230,32 +230,32 @@ export const companyFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Equals',
|
||||
value: 'EQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'NOTEQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Last',
|
||||
value: 'LAST',
|
||||
},
|
||||
{
|
||||
name: 'Between',
|
||||
value: 'BETWEEN',
|
||||
},
|
||||
{
|
||||
name: 'On',
|
||||
value: 'ON',
|
||||
name: 'After',
|
||||
value: 'AFTER',
|
||||
},
|
||||
{
|
||||
name: 'Before',
|
||||
value: 'BEFORE',
|
||||
},
|
||||
{
|
||||
name: 'After',
|
||||
value: 'AFTER',
|
||||
name: 'Between',
|
||||
value: 'BETWEEN',
|
||||
},
|
||||
{
|
||||
name: 'Equals',
|
||||
value: 'EQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Last',
|
||||
value: 'LAST',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'NOTEQUALS',
|
||||
},
|
||||
{
|
||||
name: 'On',
|
||||
value: 'ON',
|
||||
},
|
||||
],
|
||||
default: 'EQUALS',
|
||||
|
@ -528,7 +528,7 @@ export const companyFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Website properties.',
|
||||
displayName: 'Website Properties.',
|
||||
name: 'websiteProperties',
|
||||
values: [
|
||||
{
|
||||
|
@ -643,7 +643,7 @@ export const companyFields: INodeProperties[] = [
|
|||
/* company:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'company ID',
|
||||
displayName: 'Company ID',
|
||||
name: 'companyId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
|
@ -824,7 +824,7 @@ export const companyFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Website properties.',
|
||||
displayName: 'Website Properties.',
|
||||
name: 'websiteProperties',
|
||||
values: [
|
||||
{
|
||||
|
|
|
@ -149,7 +149,7 @@ export const contactFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Any filter',
|
||||
name: 'Any Filter',
|
||||
value: 'anyFilter',
|
||||
},
|
||||
{
|
||||
|
@ -230,32 +230,32 @@ export const contactFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Equals',
|
||||
value: 'EQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'NOTEQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Last',
|
||||
value: 'LAST',
|
||||
},
|
||||
{
|
||||
name: 'Between',
|
||||
value: 'BETWEEN',
|
||||
},
|
||||
{
|
||||
name: 'On',
|
||||
value: 'ON',
|
||||
name: 'After',
|
||||
value: 'AFTER',
|
||||
},
|
||||
{
|
||||
name: 'Before',
|
||||
value: 'BEFORE',
|
||||
},
|
||||
{
|
||||
name: 'After',
|
||||
value: 'AFTER',
|
||||
name: 'Between',
|
||||
value: 'BETWEEN',
|
||||
},
|
||||
{
|
||||
name: 'Equals',
|
||||
value: 'EQUALS',
|
||||
},
|
||||
{
|
||||
name: 'Last',
|
||||
value: 'LAST',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'NOTEQUALS',
|
||||
},
|
||||
{
|
||||
name: 'On',
|
||||
value: 'ON',
|
||||
},
|
||||
],
|
||||
default: 'EQUALS',
|
||||
|
@ -614,7 +614,7 @@ export const contactFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Phone properties',
|
||||
displayName: 'Phone Properties',
|
||||
name: 'phoneProperties',
|
||||
values: [
|
||||
{
|
||||
|
@ -645,14 +645,14 @@ export const contactFields: INodeProperties[] = [
|
|||
name: 'Other',
|
||||
value: 'other',
|
||||
},
|
||||
{
|
||||
name: 'Work Fax',
|
||||
value: 'workFax',
|
||||
},
|
||||
{
|
||||
name: 'Work',
|
||||
value: 'work',
|
||||
},
|
||||
{
|
||||
name: 'Work Fax',
|
||||
value: 'workFax',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -696,7 +696,7 @@ export const contactFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Website properties.',
|
||||
displayName: 'Website Properties.',
|
||||
name: 'websiteProperties',
|
||||
values: [
|
||||
{
|
||||
|
@ -1075,7 +1075,7 @@ export const contactFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Phone properties',
|
||||
displayName: 'Phone Properties',
|
||||
name: 'phoneProperties',
|
||||
values: [
|
||||
{
|
||||
|
@ -1106,14 +1106,14 @@ export const contactFields: INodeProperties[] = [
|
|||
name: 'Other',
|
||||
value: 'other',
|
||||
},
|
||||
{
|
||||
name: 'Work Fax',
|
||||
value: 'workFax',
|
||||
},
|
||||
{
|
||||
name: 'Work',
|
||||
value: 'work',
|
||||
},
|
||||
{
|
||||
name: 'Work Fax',
|
||||
value: 'workFax',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -1157,7 +1157,7 @@ export const contactFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Website properties.',
|
||||
displayName: 'Website Properties.',
|
||||
name: 'websiteProperties',
|
||||
values: [
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ export class Amqp implements INodeType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'topic://sourcename.something',
|
||||
description: 'name of the queue of topic to publish to',
|
||||
description: 'Name of the queue of topic to publish to',
|
||||
},
|
||||
// Header Parameters
|
||||
{
|
||||
|
@ -84,7 +84,7 @@ export class Amqp implements INodeType {
|
|||
description: 'Maximum number of reconnect attempts',
|
||||
},
|
||||
{
|
||||
displayName: 'Send property',
|
||||
displayName: 'Send Property',
|
||||
name: 'sendOnlyProperty',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -42,7 +42,7 @@ export class AmqpTrigger implements INodeType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'topic://sourcename.something',
|
||||
description: 'name of the queue of topic to listen to',
|
||||
description: 'Name of the queue of topic to listen to',
|
||||
},
|
||||
{
|
||||
displayName: 'Clientname',
|
||||
|
|
|
@ -105,12 +105,12 @@ export class ApiTemplateIo implements INodeType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Template ID',
|
||||
displayName: 'Template Name or ID',
|
||||
name: 'imageTemplateId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'ID of the image template to use',
|
||||
description: 'ID of the image template to use. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getImageTemplates',
|
||||
},
|
||||
|
@ -126,12 +126,12 @@ export class ApiTemplateIo implements INodeType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Template ID',
|
||||
displayName: 'Template Name or ID',
|
||||
name: 'pdfTemplateId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'ID of the PDF template to use',
|
||||
description: 'ID of the PDF template to use. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getPdfTemplates',
|
||||
},
|
||||
|
|
|
@ -111,14 +111,14 @@ export class Asana implements INodeType {
|
|||
name: 'Task Comment',
|
||||
value: 'taskComment',
|
||||
},
|
||||
{
|
||||
name: 'Task Tag',
|
||||
value: 'taskTag',
|
||||
},
|
||||
{
|
||||
name: 'Task Project',
|
||||
value: 'taskProject',
|
||||
},
|
||||
{
|
||||
name: 'Task Tag',
|
||||
value: 'taskTag',
|
||||
},
|
||||
{
|
||||
name: 'User',
|
||||
value: 'user',
|
||||
|
@ -213,14 +213,14 @@ export class Asana implements INodeType {
|
|||
placeholder: 'Add Field',
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: '',
|
||||
description: 'Set Assignee on the subtask',
|
||||
description: 'Set Assignee on the subtask. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Assignee Status',
|
||||
|
@ -280,14 +280,14 @@ export class Asana implements INodeType {
|
|||
description: 'The task notes',
|
||||
},
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getWorkspaces',
|
||||
},
|
||||
default: '',
|
||||
description: 'The workspace to create the subtask in',
|
||||
description: 'The workspace to create the subtask in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -452,7 +452,7 @@ export class Asana implements INodeType {
|
|||
// task:create
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -471,7 +471,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace to create the task in',
|
||||
description: 'The workspace to create the task in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
|
@ -598,14 +598,14 @@ export class Asana implements INodeType {
|
|||
placeholder: 'Add Filter',
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: '',
|
||||
description: 'The assignee to filter tasks on. Note: If you specify assignee, you must also specify the workspace to filter on.',
|
||||
description: 'The assignee to filter tasks on. Note: If you specify assignee, you must also specify the workspace to filter on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Fields',
|
||||
|
@ -629,34 +629,34 @@ export class Asana implements INodeType {
|
|||
description: 'Provides “pretty” output',
|
||||
},
|
||||
{
|
||||
displayName: 'Project',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'project',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getProjects',
|
||||
},
|
||||
default: '',
|
||||
description: 'The project to filter tasks on',
|
||||
description: 'The project to filter tasks on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Section',
|
||||
displayName: 'Section Name or ID',
|
||||
name: 'section',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getSections',
|
||||
},
|
||||
default: '',
|
||||
description: 'The section to filter tasks on',
|
||||
description: 'The section to filter tasks on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getWorkspaces',
|
||||
},
|
||||
default: '',
|
||||
description: 'The workspace to filter tasks on. Note: If you specify workspace, you must also specify the assignee to filter on.',
|
||||
description: 'The workspace to filter tasks on. Note: If you specify workspace, you must also specify the assignee to filter on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Completed Since',
|
||||
|
@ -698,7 +698,7 @@ export class Asana implements INodeType {
|
|||
description: 'The ID of the task to be moved',
|
||||
},
|
||||
{
|
||||
displayName: 'Project',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'projectId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -717,10 +717,10 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'Project to show the sections of',
|
||||
description: 'Project to show the sections of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Section',
|
||||
displayName: 'Section Name or ID',
|
||||
name: 'section',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -742,7 +742,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The Section to move the task to',
|
||||
description: 'The Section to move the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
@ -771,7 +771,7 @@ export class Asana implements INodeType {
|
|||
// task:search
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -790,7 +790,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace in which the task is searched',
|
||||
description: 'The workspace in which the task is searched. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Filters',
|
||||
|
@ -853,14 +853,14 @@ export class Asana implements INodeType {
|
|||
placeholder: 'Add Field',
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: '',
|
||||
description: 'Set Assignee on the task',
|
||||
description: 'Set Assignee on the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Assignee Status',
|
||||
|
@ -1166,7 +1166,7 @@ export class Asana implements INodeType {
|
|||
description: 'The ID of the task to add the project to',
|
||||
},
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'project',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1184,7 +1184,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The project where the task will be added',
|
||||
description: 'The project where the task will be added. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
|
@ -1250,7 +1250,7 @@ export class Asana implements INodeType {
|
|||
description: 'The ID of the task to add the project to',
|
||||
},
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'project',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1268,7 +1268,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The project where the task will be removed from',
|
||||
description: 'The project where the task will be removed from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
// ----------------------------------
|
||||
// taskTag
|
||||
|
@ -1324,7 +1324,7 @@ export class Asana implements INodeType {
|
|||
description: 'The ID of the task to add the tag to',
|
||||
},
|
||||
{
|
||||
displayName: 'Tags',
|
||||
displayName: 'Tags Name or ID',
|
||||
name: 'tag',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1345,7 +1345,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The tag that should be added',
|
||||
description: 'The tag that should be added. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
@ -1371,7 +1371,7 @@ export class Asana implements INodeType {
|
|||
description: 'The ID of the task to add the tag to',
|
||||
},
|
||||
{
|
||||
displayName: 'Tags',
|
||||
displayName: 'Tags Name or ID',
|
||||
name: 'tag',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1392,7 +1392,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The tag that should be added',
|
||||
description: 'The tag that should be added. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
@ -1451,7 +1451,7 @@ export class Asana implements INodeType {
|
|||
// user:getAll
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1470,7 +1470,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace in which to get users',
|
||||
description: 'The workspace in which to get users. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
@ -1541,7 +1541,7 @@ export class Asana implements INodeType {
|
|||
description: 'The name of the project to create',
|
||||
},
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1559,10 +1559,10 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace to create the project in',
|
||||
description: 'The workspace to create the project in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Team',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1582,7 +1582,7 @@ export class Asana implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The team this project will be assigned to',
|
||||
description: 'The team this project will be assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
|
@ -1671,7 +1671,7 @@ export class Asana implements INodeType {
|
|||
// project:getAll
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1690,7 +1690,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace in which to get users',
|
||||
description: 'The workspace in which to get users. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -1759,7 +1759,7 @@ export class Asana implements INodeType {
|
|||
description: 'Only return projects whose archived field takes on the value of this parameter',
|
||||
},
|
||||
{
|
||||
displayName: 'Teams',
|
||||
displayName: 'Teams Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1769,7 +1769,7 @@ export class Asana implements INodeType {
|
|||
loadOptionsMethod: 'getTeams',
|
||||
},
|
||||
default: '',
|
||||
description: 'The new name of the task',
|
||||
description: 'The new name of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -1777,7 +1777,7 @@ export class Asana implements INodeType {
|
|||
// project:update
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1796,7 +1796,7 @@ export class Asana implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The workspace in which to get users',
|
||||
description: 'The workspace in which to get users. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
|
@ -1871,7 +1871,7 @@ export class Asana implements INodeType {
|
|||
description: 'The new assignee/cardinal for this project',
|
||||
},
|
||||
{
|
||||
displayName: 'Team',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -1881,7 +1881,7 @@ export class Asana implements INodeType {
|
|||
loadOptionsMethod: 'getTeams',
|
||||
},
|
||||
default: '',
|
||||
description: 'The team this project will be assigned to',
|
||||
description: 'The team this project will be assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
|
@ -93,7 +93,7 @@ export class AsanaTrigger implements INodeType {
|
|||
description: 'The resource ID to subscribe to. The resource can be a task or project.',
|
||||
},
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -101,7 +101,7 @@ export class AsanaTrigger implements INodeType {
|
|||
},
|
||||
options: [],
|
||||
default: '',
|
||||
description: 'The workspace ID the resource is registered under. This is only required if you want to allow overriding existing webhooks.',
|
||||
description: 'The workspace ID the resource is registered under. This is only required if you want to allow overriding existing webhooks. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
@ -70,7 +70,7 @@ export const contactFields: INodeProperties[] = [
|
|||
description: 'The email address of the contact',
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -122,13 +122,13 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Key',
|
||||
displayName: 'Key Name or ID',
|
||||
name: 'key',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
description: 'The end user specified key of the user defined data',
|
||||
description: 'The end user specified key of the user defined data. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -233,7 +233,7 @@ export const contactFields: INodeProperties[] = [
|
|||
/* contact:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -406,13 +406,13 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Key',
|
||||
displayName: 'Key Name or ID',
|
||||
name: 'key',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
description: 'The end user specified key of the user defined data',
|
||||
description: 'The end user specified key of the user defined data. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Create/Update',
|
||||
name: 'Create or Update',
|
||||
value: 'upsert',
|
||||
description: 'Create a new contact, or update the current one if it already exists (upsert)',
|
||||
},
|
||||
|
@ -103,13 +103,13 @@ export const contactFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Key',
|
||||
displayName: 'Key Name or ID',
|
||||
name: 'key',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
description: 'User-specified key of user-defined data',
|
||||
description: 'User-specified key of user-defined data. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
|
@ -160,14 +160,14 @@ export const contactFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'autopilotList',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getLists',
|
||||
},
|
||||
default: '',
|
||||
description: 'List to which this contact will be added on creation',
|
||||
description: 'List to which this contact will be added on creation. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Mailing Country',
|
||||
|
|
|
@ -32,7 +32,7 @@ export const contactJourneyFields: INodeProperties[] = [
|
|||
/* contactJourney:add */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Trigger ID',
|
||||
displayName: 'Trigger Name or ID',
|
||||
name: 'triggerId',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
|
@ -50,7 +50,7 @@ export const contactJourneyFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'List ID',
|
||||
description: 'List ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Contact ID',
|
||||
|
|
|
@ -47,7 +47,7 @@ export const contactListFields: INodeProperties[] = [
|
|||
/* contactList:add */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'listId',
|
||||
required: true,
|
||||
typeOptions: {
|
||||
|
@ -68,7 +68,7 @@ export const contactListFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the list to operate on',
|
||||
description: 'ID of the list to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Contact ID',
|
||||
|
|
|
@ -49,7 +49,7 @@ export class AwsLambda implements INodeType {
|
|||
default: 'invoke',
|
||||
},
|
||||
{
|
||||
displayName: 'Function',
|
||||
displayName: 'Function Name or ID',
|
||||
name: 'function',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -65,7 +65,7 @@ export class AwsLambda implements INodeType {
|
|||
options: [],
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The function you want to invoke',
|
||||
description: 'The function you want to invoke. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Qualifier',
|
||||
|
@ -88,12 +88,12 @@ export class AwsLambda implements INodeType {
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Wait for results',
|
||||
name: 'Wait for Results',
|
||||
value: 'RequestResponse',
|
||||
description: 'Invoke the function synchronously and wait for the response',
|
||||
},
|
||||
{
|
||||
name: 'Continue workflow',
|
||||
name: 'Continue Workflow',
|
||||
value: 'Event',
|
||||
description: 'Invoke the function and immediately continue the workflow',
|
||||
},
|
||||
|
|
|
@ -48,7 +48,7 @@ export class AwsSns implements INodeType {
|
|||
default: 'publish',
|
||||
},
|
||||
{
|
||||
displayName: 'Topic',
|
||||
displayName: 'Topic Name or ID',
|
||||
name: 'topic',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -64,7 +64,7 @@ export class AwsSns implements INodeType {
|
|||
options: [],
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The topic you want to publish to',
|
||||
description: 'The topic you want to publish to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Subject',
|
||||
|
|
|
@ -51,7 +51,7 @@ export class AwsSnsTrigger implements INodeType {
|
|||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Topic',
|
||||
displayName: 'Topic Name or ID',
|
||||
name: 'topic',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
|
|
@ -46,9 +46,9 @@ export const itemFields: INodeProperties[] = [
|
|||
// all
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Table Name',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableName',
|
||||
description: 'Table to operate on',
|
||||
description: 'Table to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
type: 'options',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
|
@ -73,7 +73,7 @@ export const itemFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Auto-map Input Data to Columns',
|
||||
name: 'Auto-Map Input Data to Columns',
|
||||
value: 'autoMapInputData',
|
||||
description: 'Use when node input properties match destination column names',
|
||||
},
|
||||
|
@ -616,6 +616,7 @@ export const itemFields: INodeProperties[] = [
|
|||
displayName: 'Attributes to Select',
|
||||
name: 'projectionExpression',
|
||||
type: 'string',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-placeholder-miscased-id
|
||||
placeholder: 'id, name',
|
||||
default: '',
|
||||
},
|
||||
|
@ -656,11 +657,11 @@ export const itemFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Strongly consistent read',
|
||||
name: 'Strongly Consistent Read',
|
||||
value: 'stronglyConsistentRead',
|
||||
},
|
||||
{
|
||||
name: 'Eventually consistent read',
|
||||
name: 'Eventually Consistent Read',
|
||||
value: 'eventuallyConsistentRead',
|
||||
},
|
||||
],
|
||||
|
@ -709,6 +710,7 @@ export const itemFields: INodeProperties[] = [
|
|||
displayName: 'Key Condition Expression',
|
||||
name: 'keyConditionExpression',
|
||||
description: 'Condition to determine the items to be retrieved. The condition must perform an equality test on a single partition key value, in this format: <code>partitionKeyName = :partitionkeyval</code>',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-placeholder-miscased-id
|
||||
placeholder: 'id = :id',
|
||||
default: '',
|
||||
type: 'string',
|
||||
|
|
|
@ -287,6 +287,10 @@ export const fileFields: INodeProperties[] = [
|
|||
name: 'Deep Archive',
|
||||
value: 'deepArchive',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Intelligent Tiering',
|
||||
value: 'intelligentTiering',
|
||||
|
@ -295,10 +299,6 @@ export const fileFields: INodeProperties[] = [
|
|||
name: 'One Zone IA',
|
||||
value: 'onezoneIA',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Standard',
|
||||
value: 'standard',
|
||||
|
@ -640,6 +640,10 @@ export const fileFields: INodeProperties[] = [
|
|||
name: 'Deep Archive',
|
||||
value: 'deepArchive',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Intelligent Tiering',
|
||||
value: 'intelligentTiering',
|
||||
|
@ -648,10 +652,6 @@ export const fileFields: INodeProperties[] = [
|
|||
name: 'One Zone IA',
|
||||
value: 'onezoneIA',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Standard',
|
||||
value: 'standard',
|
||||
|
|
|
@ -115,6 +115,10 @@ export const folderFields: INodeProperties[] = [
|
|||
name: 'Deep Archive',
|
||||
value: 'deepArchive',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Intelligent Tiering',
|
||||
value: 'intelligentTiering',
|
||||
|
@ -123,10 +127,6 @@ export const folderFields: INodeProperties[] = [
|
|||
name: 'One Zone IA',
|
||||
value: 'onezoneIA',
|
||||
},
|
||||
{
|
||||
name: 'Glacier',
|
||||
value: 'glacier',
|
||||
},
|
||||
{
|
||||
name: 'Reduced Redundancy',
|
||||
value: 'RecudedRedundancy',
|
||||
|
|
|
@ -522,7 +522,7 @@ export class AwsSes implements INodeType {
|
|||
default: [],
|
||||
},
|
||||
{
|
||||
displayName: 'Template Name',
|
||||
displayName: 'Template Name or ID',
|
||||
name: 'templateName',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -539,7 +539,7 @@ export class AwsSes implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The ARN of the template to use when sending this email',
|
||||
description: 'The ARN of the template to use when sending this email. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'From Email',
|
||||
|
|
|
@ -54,7 +54,7 @@ export class AwsSqs implements INodeType {
|
|||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Send message',
|
||||
name: 'Send Message',
|
||||
value: 'sendMessage',
|
||||
description: 'Send a message to a queue',
|
||||
},
|
||||
|
@ -62,7 +62,7 @@ export class AwsSqs implements INodeType {
|
|||
default: 'sendMessage',
|
||||
},
|
||||
{
|
||||
displayName: 'Queue',
|
||||
displayName: 'Queue Name or ID',
|
||||
name: 'queue',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -78,7 +78,7 @@ export class AwsSqs implements INodeType {
|
|||
options: [],
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Queue to send a message to',
|
||||
description: 'Queue to send a message to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Queue Type',
|
||||
|
|
|
@ -144,25 +144,25 @@ export class AwsTranscribe implements INodeType {
|
|||
value: 'en-GB',
|
||||
},
|
||||
{
|
||||
name: 'Irish English',
|
||||
value: 'en-IE',
|
||||
name: 'German',
|
||||
value: 'de-DE',
|
||||
},
|
||||
{
|
||||
name: 'Indian English',
|
||||
value: 'en-IN',
|
||||
},
|
||||
{
|
||||
name: 'Spanish',
|
||||
value: 'es-ES',
|
||||
},
|
||||
{
|
||||
name: 'German',
|
||||
value: 'de-DE',
|
||||
name: 'Irish English',
|
||||
value: 'en-IE',
|
||||
},
|
||||
{
|
||||
name: 'Russian',
|
||||
value: 'ru-RU',
|
||||
},
|
||||
{
|
||||
name: 'Spanish',
|
||||
value: 'es-ES',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -63,7 +63,7 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Department',
|
||||
displayName: 'Department Name or ID',
|
||||
name: 'department',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -72,7 +72,7 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Division',
|
||||
displayName: 'Division Name or ID',
|
||||
name: 'division',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -96,7 +96,7 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
value: 'exempt',
|
||||
},
|
||||
{
|
||||
name: 'Non-exempt',
|
||||
name: 'Non-Exempt',
|
||||
value: 'non-exempt',
|
||||
},
|
||||
],
|
||||
|
@ -125,7 +125,7 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Location',
|
||||
displayName: 'Location Name or ID',
|
||||
name: 'location',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -163,6 +163,8 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
displayName: 'Pay Per',
|
||||
name: 'paidPer',
|
||||
type: 'options',
|
||||
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Hour',
|
||||
|
@ -228,34 +230,10 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
name: 'payType',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Hourly',
|
||||
value: 'hourly',
|
||||
},
|
||||
{
|
||||
name: 'Salary',
|
||||
value: 'salary',
|
||||
},
|
||||
{
|
||||
name: 'Commission',
|
||||
value: 'commission',
|
||||
},
|
||||
{
|
||||
name: 'Exception Hourly',
|
||||
value: 'exceptionHourly',
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 'monthly',
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 'weekly',
|
||||
},
|
||||
{
|
||||
name: 'Piece Rate',
|
||||
value: 'pieceRate',
|
||||
},
|
||||
{
|
||||
name: 'Contract',
|
||||
value: 'contract',
|
||||
|
@ -264,10 +242,34 @@ export const createEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
name: 'Daily',
|
||||
value: 'daily',
|
||||
},
|
||||
{
|
||||
name: 'Exception Hourly',
|
||||
value: 'exceptionHourly',
|
||||
},
|
||||
{
|
||||
name: 'Hourly',
|
||||
value: 'hourly',
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 'monthly',
|
||||
},
|
||||
{
|
||||
name: 'Piece Rate',
|
||||
value: 'pieceRate',
|
||||
},
|
||||
{
|
||||
name: 'Pro Rata',
|
||||
value: 'proRata',
|
||||
},
|
||||
{
|
||||
name: 'Salary',
|
||||
value: 'salary',
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 'weekly',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -63,7 +63,7 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Department',
|
||||
displayName: 'Department Name or ID',
|
||||
name: 'department',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -72,7 +72,7 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Division',
|
||||
displayName: 'Division Name or ID',
|
||||
name: 'division',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -122,7 +122,7 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
value: 'exempt',
|
||||
},
|
||||
{
|
||||
name: 'Non-exempt',
|
||||
name: 'Non-Exempt',
|
||||
value: 'non-exempt',
|
||||
},
|
||||
],
|
||||
|
@ -151,7 +151,7 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Location',
|
||||
displayName: 'Location Name or ID',
|
||||
name: 'location',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -189,6 +189,8 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
displayName: 'Pay Per',
|
||||
name: 'paidPer',
|
||||
type: 'options',
|
||||
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Hour',
|
||||
|
@ -254,34 +256,10 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
name: 'payType',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Hourly',
|
||||
value: 'hourly',
|
||||
},
|
||||
{
|
||||
name: 'Salary',
|
||||
value: 'salary',
|
||||
},
|
||||
{
|
||||
name: 'Commission',
|
||||
value: 'commission',
|
||||
},
|
||||
{
|
||||
name: 'Exception Hourly',
|
||||
value: 'exceptionHourly',
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 'monthly',
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 'weekly',
|
||||
},
|
||||
{
|
||||
name: 'Piece Rate',
|
||||
value: 'pieceRate',
|
||||
},
|
||||
{
|
||||
name: 'Contract',
|
||||
value: 'contract',
|
||||
|
@ -290,10 +268,34 @@ export const updateEmployeeSharedDescription = (sync = false): INodeProperties[]
|
|||
name: 'Daily',
|
||||
value: 'daily',
|
||||
},
|
||||
{
|
||||
name: 'Exception Hourly',
|
||||
value: 'exceptionHourly',
|
||||
},
|
||||
{
|
||||
name: 'Hourly',
|
||||
value: 'hourly',
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 'monthly',
|
||||
},
|
||||
{
|
||||
name: 'Piece Rate',
|
||||
value: 'pieceRate',
|
||||
},
|
||||
{
|
||||
name: 'Pro Rata',
|
||||
value: 'proRata',
|
||||
},
|
||||
{
|
||||
name: 'Salary',
|
||||
value: 'salary',
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 'weekly',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -55,7 +55,7 @@ export const employeeDocumentUpdateDescription: EmployeeDocumentProperties = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Employee Document Category Name/ID',
|
||||
displayName: 'Employee Document Category Name or ID',
|
||||
name: 'categoryId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -65,7 +65,7 @@ export const employeeDocumentUpdateDescription: EmployeeDocumentProperties = [
|
|||
],
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the new category of the file',
|
||||
description: 'ID of the new category of the file. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
|
|
|
@ -39,14 +39,14 @@ export const fileUpdateDescription: FileProperties = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Category Name/ID',
|
||||
displayName: 'Category Name or ID',
|
||||
name: 'categoryId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCompanyFileCategories',
|
||||
},
|
||||
default: '',
|
||||
description: 'Move the file to a different category',
|
||||
description: 'Move the file to a different category. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
|
|
|
@ -20,7 +20,7 @@ export const fileUploadDescription: INodeProperties[] = [
|
|||
description: 'The name of the input field containing the binary file data to be uploaded. Supported file types: PNG, JPEG.',
|
||||
},
|
||||
{
|
||||
displayName: 'Category Name/ID',
|
||||
displayName: 'Category Name or ID',
|
||||
name: 'categoryId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -37,7 +37,7 @@ export const imageFields: INodeProperties[] = [
|
|||
/* image:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Template ID',
|
||||
displayName: 'Template Name or ID',
|
||||
name: 'templateId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -55,7 +55,7 @@ export const imageFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The template ID you want to use',
|
||||
description: 'The template ID you want to use. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
|
@ -111,7 +111,7 @@ export const imageFields: INodeProperties[] = [
|
|||
name: 'webhookUrl',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'A url to POST the Image object to upon rendering completed',
|
||||
description: 'A URL to POST the Image object to upon rendering completed',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -140,7 +140,7 @@ export const imageFields: INodeProperties[] = [
|
|||
name: 'modificationsValues',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Name',
|
||||
displayName: 'Name or ID',
|
||||
name: 'name',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -150,7 +150,7 @@ export const imageFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
default: '',
|
||||
description: 'The name of the item you want to change',
|
||||
description: 'The name of the item you want to change. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Text',
|
||||
|
@ -178,7 +178,7 @@ export const imageFields: INodeProperties[] = [
|
|||
name: 'imageUrl',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Replacement image url you want to use (must be publicly viewable)',
|
||||
description: 'Replacement image URL you want to use (must be publicly viewable)',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
|
@ -7,23 +7,23 @@ export const operationFields: INodeProperties[] = [
|
|||
// shared
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Database',
|
||||
displayName: 'Database Name or ID',
|
||||
name: 'databaseId',
|
||||
type: 'options',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Database to operate on',
|
||||
description: 'Database to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getDatabaseIds',
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Table to operate on',
|
||||
description: 'Table to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsDependsOn: [
|
||||
'databaseId',
|
||||
|
@ -79,7 +79,7 @@ export const operationFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Auto-map Input Data to Columns',
|
||||
name: 'Auto-Map Input Data to Columns',
|
||||
value: 'autoMapInputData',
|
||||
description: 'Use when node input properties match destination column names',
|
||||
},
|
||||
|
@ -146,7 +146,7 @@ export const operationFields: INodeProperties[] = [
|
|||
name: 'fieldValues',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'fieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -255,11 +255,11 @@ export const operationFields: INodeProperties[] = [
|
|||
displayName: 'Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'Field to compare',
|
||||
description: 'Field to compare. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsDependsOn: [
|
||||
'tableId',
|
||||
|
@ -273,16 +273,6 @@ export const operationFields: INodeProperties[] = [
|
|||
description: 'Operator to compare field and value with',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Equal',
|
||||
value: 'equal',
|
||||
description: 'Field is equal to value',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'not_equal',
|
||||
description: 'Field is not equal to value',
|
||||
},
|
||||
{
|
||||
name: 'Contains',
|
||||
value: 'contains',
|
||||
|
@ -294,29 +284,9 @@ export const operationFields: INodeProperties[] = [
|
|||
description: 'Field does not contain value',
|
||||
},
|
||||
{
|
||||
name: 'Date Equal',
|
||||
value: 'date_equal',
|
||||
description: 'Field is date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Date Not Equal',
|
||||
value: 'date_not_equal',
|
||||
description: 'Field is not date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Today',
|
||||
value: 'date_equals_today',
|
||||
description: 'Field is today. Format: string.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Month',
|
||||
value: 'date_equals_month',
|
||||
description: 'Field in this month. Format: string.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Year',
|
||||
value: 'date_equals_year',
|
||||
description: 'Field in this year. Format: string.',
|
||||
name: 'Date After Date',
|
||||
value: 'date_after',
|
||||
description: 'Field after this date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Date Before Date',
|
||||
|
@ -324,9 +294,34 @@ export const operationFields: INodeProperties[] = [
|
|||
description: 'Field before this date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Date After Date',
|
||||
value: 'date_after',
|
||||
description: 'Field after this date. Format: \'YYYY-MM-DD\'.',
|
||||
name: 'Date Equal',
|
||||
value: 'date_equal',
|
||||
description: 'Field is date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Month',
|
||||
value: 'date_equals_month',
|
||||
description: 'Field in this month. Format: string.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Today',
|
||||
value: 'date_equals_today',
|
||||
description: 'Field is today. Format: string.',
|
||||
},
|
||||
{
|
||||
name: 'Date Equals Year',
|
||||
value: 'date_equals_year',
|
||||
description: 'Field in this year. Format: string.',
|
||||
},
|
||||
{
|
||||
name: 'Date Not Equal',
|
||||
value: 'date_not_equal',
|
||||
description: 'Field is not date. Format: \'YYYY-MM-DD\'.',
|
||||
},
|
||||
{
|
||||
name: 'Equal',
|
||||
value: 'equal',
|
||||
description: 'Field is equal to value',
|
||||
},
|
||||
{
|
||||
name: 'Filename Contains',
|
||||
|
@ -338,11 +333,6 @@ export const operationFields: INodeProperties[] = [
|
|||
value: 'higher_than',
|
||||
description: 'Field is higher than value',
|
||||
},
|
||||
{
|
||||
name: 'Lower Than',
|
||||
value: 'lower_than',
|
||||
description: 'Field is lower than value',
|
||||
},
|
||||
{
|
||||
name: 'Is Empty',
|
||||
value: 'empty',
|
||||
|
@ -358,15 +348,25 @@ export const operationFields: INodeProperties[] = [
|
|||
value: 'boolean',
|
||||
description: 'Boolean field is true',
|
||||
},
|
||||
{
|
||||
name: 'Link Row Does Not Have',
|
||||
value: 'link_row_has_not',
|
||||
description: 'Field does not have link ID',
|
||||
},
|
||||
{
|
||||
name: 'Link Row Has',
|
||||
value: 'link_row_has',
|
||||
description: 'Field has link ID',
|
||||
},
|
||||
{
|
||||
name: 'Link Row Does Not Have',
|
||||
value: 'link_row_has_not',
|
||||
description: 'Field does not have link ID',
|
||||
name: 'Lower Than',
|
||||
value: 'lower_than',
|
||||
description: 'Field is lower than value',
|
||||
},
|
||||
{
|
||||
name: 'Not Equal',
|
||||
value: 'not_equal',
|
||||
description: 'Field is not equal to value',
|
||||
},
|
||||
{
|
||||
name: 'Single Select Equal',
|
||||
|
@ -434,11 +434,11 @@ export const operationFields: INodeProperties[] = [
|
|||
displayName: 'Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field Name',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'Field name to sort by',
|
||||
description: 'Field name to sort by. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsDependsOn: [
|
||||
'tableId',
|
||||
|
|
|
@ -92,7 +92,7 @@ export class Beeminder implements INodeType {
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Goal Name',
|
||||
displayName: 'Goal Name or ID',
|
||||
name: 'goalName',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -106,7 +106,7 @@ export class Beeminder implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The name of the goal',
|
||||
description: 'The name of the goal. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
|
|
@ -70,7 +70,7 @@ export class BitbucketTrigger implements INodeType {
|
|||
default: 'workspace',
|
||||
},
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspace',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -86,7 +86,7 @@ export class BitbucketTrigger implements INodeType {
|
|||
},
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'The repository of which to listen to the events',
|
||||
description: 'The repository of which to listen to the events. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Events',
|
||||
|
@ -108,7 +108,7 @@ export class BitbucketTrigger implements INodeType {
|
|||
description: 'The events to listen to',
|
||||
},
|
||||
{
|
||||
displayName: 'Repository',
|
||||
displayName: 'Repository Name or ID',
|
||||
name: 'repository',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -126,7 +126,7 @@ export class BitbucketTrigger implements INodeType {
|
|||
},
|
||||
required: true,
|
||||
default: '',
|
||||
description: 'The repository of which to listen to the events',
|
||||
description: 'The repository of which to listen to the events. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Events',
|
||||
|
|
|
@ -81,7 +81,7 @@ export const linkFields: INodeProperties[] = [
|
|||
default: 'bit.ly',
|
||||
},
|
||||
{
|
||||
displayName: 'Group',
|
||||
displayName: 'Group Name or ID',
|
||||
name: 'group',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -206,7 +206,7 @@ export const linkFields: INodeProperties[] = [
|
|||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Group',
|
||||
displayName: 'Group Name or ID',
|
||||
name: 'group',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
|
|
@ -436,7 +436,7 @@ export const fileFields: INodeProperties[] = [
|
|||
},
|
||||
],
|
||||
default: 'relevance',
|
||||
description: 'returns the results ordered in descending order by date at which the item was last modified',
|
||||
description: 'Returns the results ordered in descending order by date at which the item was last modified',
|
||||
},
|
||||
{
|
||||
displayName: 'Trash Content',
|
||||
|
|
|
@ -21,16 +21,16 @@ export const folderOperations: INodeProperties[] = [
|
|||
value: 'create',
|
||||
description: 'Create a folder',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a folder',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a folder',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a folder',
|
||||
},
|
||||
{
|
||||
name: 'Search',
|
||||
value: 'search',
|
||||
|
@ -388,7 +388,7 @@ export const folderFields: INodeProperties[] = [
|
|||
},
|
||||
],
|
||||
default: 'relevance',
|
||||
description: 'returns the results ordered in descending order by date at which the item was last modified',
|
||||
description: 'Returns the results ordered in descending order by date at which the item was last modified',
|
||||
},
|
||||
{
|
||||
displayName: 'Trash Content',
|
||||
|
@ -792,7 +792,7 @@ export const folderFields: INodeProperties[] = [
|
|||
{
|
||||
name: 'Company',
|
||||
value: 'company',
|
||||
description: 'only people within the company',
|
||||
description: 'Only people within the company',
|
||||
},
|
||||
{
|
||||
name: 'Open',
|
||||
|
|
|
@ -357,6 +357,7 @@ export const objectFields: INodeProperties[] = [
|
|||
displayName: 'Constrain',
|
||||
name: 'constraint_type',
|
||||
type: 'options',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Equals',
|
||||
|
|
|
@ -230,7 +230,7 @@ export class Chargebee implements INodeType {
|
|||
// invoice:list
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Max results',
|
||||
displayName: 'Max Results',
|
||||
name: 'maxResults',
|
||||
type: 'number',
|
||||
typeOptions: {
|
||||
|
@ -321,6 +321,14 @@ export class Chargebee implements INodeType {
|
|||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Greater Equal Than',
|
||||
value: 'gte',
|
||||
},
|
||||
{
|
||||
name: 'Greater Than',
|
||||
value: 'gt',
|
||||
},
|
||||
{
|
||||
name: 'Is',
|
||||
value: 'is',
|
||||
|
@ -330,21 +338,13 @@ export class Chargebee implements INodeType {
|
|||
value: 'is_not',
|
||||
},
|
||||
{
|
||||
name: 'Greater than',
|
||||
value: 'gt',
|
||||
},
|
||||
{
|
||||
name: 'Greater equal than',
|
||||
value: 'gte',
|
||||
},
|
||||
{
|
||||
name: 'Less than',
|
||||
value: 'lt',
|
||||
},
|
||||
{
|
||||
name: 'Less equal than',
|
||||
name: 'Less Equal Than',
|
||||
value: 'lte',
|
||||
},
|
||||
{
|
||||
name: 'Less Than',
|
||||
value: 'lt',
|
||||
},
|
||||
],
|
||||
default: 'gt',
|
||||
description: 'Operation to decide where the the data should be mapped to',
|
||||
|
@ -440,7 +440,7 @@ export class Chargebee implements INodeType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Schedule end of Term',
|
||||
displayName: 'Schedule End of Term',
|
||||
name: 'endOfTerm',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -58,6 +58,10 @@ export class CiscoWebexTrigger implements INodeType {
|
|||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: '[All]',
|
||||
value: 'all',
|
||||
},
|
||||
{
|
||||
name: 'Attachment Action',
|
||||
value: 'attachmentAction',
|
||||
|
@ -86,10 +90,6 @@ export class CiscoWebexTrigger implements INodeType {
|
|||
name: 'Room',
|
||||
value: 'room',
|
||||
},
|
||||
{
|
||||
name: '[All]',
|
||||
value: 'all',
|
||||
},
|
||||
],
|
||||
default: 'meeting',
|
||||
required: true,
|
||||
|
|
|
@ -220,32 +220,32 @@ export function getTextBlockProperties(): INodeProperties[] {
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Default',
|
||||
value: 'default',
|
||||
name: 'Accent',
|
||||
value: 'accent',
|
||||
},
|
||||
{
|
||||
name: 'Attention',
|
||||
value: 'attention',
|
||||
},
|
||||
{
|
||||
name: 'Dark',
|
||||
value: 'dark',
|
||||
},
|
||||
{
|
||||
name: 'Light',
|
||||
value: 'light',
|
||||
},
|
||||
{
|
||||
name: 'Accent',
|
||||
value: 'accent',
|
||||
name: 'Default',
|
||||
value: 'default',
|
||||
},
|
||||
{
|
||||
name: 'Good',
|
||||
value: 'good',
|
||||
},
|
||||
{
|
||||
name: 'Warning',
|
||||
value: 'warning',
|
||||
name: 'Light',
|
||||
value: 'light',
|
||||
},
|
||||
{
|
||||
name: 'Attention',
|
||||
value: 'attention',
|
||||
name: 'Warning',
|
||||
value: 'warning',
|
||||
},
|
||||
],
|
||||
default: 'default',
|
||||
|
@ -348,20 +348,20 @@ export function getTextBlockProperties(): INodeProperties[] {
|
|||
value: 'default',
|
||||
},
|
||||
{
|
||||
name: 'Small',
|
||||
value: 'small',
|
||||
},
|
||||
{
|
||||
name: 'Medium',
|
||||
value: 'medium',
|
||||
name: 'Extra Large',
|
||||
value: 'extraLarge',
|
||||
},
|
||||
{
|
||||
name: 'Large',
|
||||
value: 'large',
|
||||
},
|
||||
{
|
||||
name: 'Extra Large',
|
||||
value: 'extraLarge',
|
||||
name: 'Medium',
|
||||
value: 'medium',
|
||||
},
|
||||
{
|
||||
name: 'Small',
|
||||
value: 'small',
|
||||
},
|
||||
],
|
||||
default: 'default',
|
||||
|
@ -464,29 +464,29 @@ export function getTextBlockProperties(): INodeProperties[] {
|
|||
value: 'default',
|
||||
},
|
||||
{
|
||||
name: 'None',
|
||||
value: 'none',
|
||||
},
|
||||
{
|
||||
name: 'Small',
|
||||
value: 'small',
|
||||
},
|
||||
{
|
||||
name: 'Medium',
|
||||
value: 'medium',
|
||||
name: 'Extra Large',
|
||||
value: 'extraLarge',
|
||||
},
|
||||
{
|
||||
name: 'Large',
|
||||
value: 'large',
|
||||
},
|
||||
{
|
||||
name: 'Extra Large',
|
||||
value: 'extraLarge',
|
||||
name: 'Medium',
|
||||
value: 'medium',
|
||||
},
|
||||
{
|
||||
name: 'None',
|
||||
value: 'none',
|
||||
},
|
||||
{
|
||||
name: 'Padding',
|
||||
value: 'padding',
|
||||
},
|
||||
{
|
||||
name: 'Small',
|
||||
value: 'small',
|
||||
},
|
||||
],
|
||||
default: 'default',
|
||||
description: 'Controls the amount of spacing between this element and the preceding element',
|
||||
|
|
|
@ -348,6 +348,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
description: 'Whether or not to send emails to host and invitees',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
||||
displayName: 'Site URL',
|
||||
name: 'siteUrl',
|
||||
type: 'options',
|
||||
|
@ -355,7 +356,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'getSites',
|
||||
},
|
||||
default: '',
|
||||
description: 'URL of the Webex site which the meeting is created on. If not specified, the meeting is created on user\'s preferred site.',
|
||||
description: 'URL of the Webex site which the meeting is created on. If not specified, the meeting is created on user\'s preferred site. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -603,6 +604,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
description: 'Email of a person that must be a meeting participant',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
||||
displayName: 'Site URL',
|
||||
name: 'siteUrl',
|
||||
type: 'options',
|
||||
|
@ -610,7 +612,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'getSites',
|
||||
},
|
||||
default: '',
|
||||
description: 'URL of the Webex site which the API lists meetings from',
|
||||
description: 'URL of the Webex site which the API lists meetings from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'State',
|
||||
|
@ -622,32 +624,32 @@ export const meetingFields: INodeProperties[] = [
|
|||
value: 'active',
|
||||
},
|
||||
{
|
||||
name: 'Scheduled',
|
||||
value: 'scheduled',
|
||||
name: 'Ended',
|
||||
value: 'ended',
|
||||
},
|
||||
{
|
||||
name: 'Ready',
|
||||
value: 'ready',
|
||||
},
|
||||
{
|
||||
name: 'Lobby',
|
||||
value: 'lobby',
|
||||
name: 'Expired',
|
||||
value: 'expired',
|
||||
},
|
||||
{
|
||||
name: 'In Progress',
|
||||
value: 'inProgress',
|
||||
},
|
||||
{
|
||||
name: 'Ended',
|
||||
value: 'ended',
|
||||
name: 'Lobby',
|
||||
value: 'lobby',
|
||||
},
|
||||
{
|
||||
name: 'Missed',
|
||||
value: 'missed',
|
||||
},
|
||||
{
|
||||
name: 'Expired',
|
||||
value: 'expired',
|
||||
name: 'Ready',
|
||||
value: 'ready',
|
||||
},
|
||||
{
|
||||
name: 'Scheduled',
|
||||
value: 'scheduled',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
|
@ -940,6 +942,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
description: 'Whether or not to send emails to host and invitees. It is an optional field and default value is true.',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
||||
displayName: 'Site URL',
|
||||
name: 'siteUrl',
|
||||
type: 'options',
|
||||
|
@ -947,7 +950,7 @@ export const meetingFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'getSites',
|
||||
},
|
||||
default: '',
|
||||
description: 'URL of the Webex site which the meeting is created on. If not specified, the meeting is created on user\'s preferred site.',
|
||||
description: 'URL of the Webex site which the meeting is created on. If not specified, the meeting is created on user\'s preferred site. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Start',
|
||||
|
|
|
@ -92,10 +92,12 @@ export const meetingTranscriptFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'txt',
|
||||
value: 'txt',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'vtt',
|
||||
value: 'vtt',
|
||||
},
|
||||
|
|
|
@ -77,7 +77,7 @@ export const messageFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Room ID',
|
||||
displayName: 'Room Name or ID',
|
||||
name: 'roomId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -461,9 +461,9 @@ export const messageFields: INodeProperties[] = [
|
|||
// message: getAll
|
||||
// ----------------------------------------
|
||||
{
|
||||
displayName: 'Room ID',
|
||||
displayName: 'Room Name or ID',
|
||||
name: 'roomId',
|
||||
description: 'List messages in a room, by ID',
|
||||
description: 'List messages in a room, by ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getRooms',
|
||||
|
|
|
@ -204,6 +204,10 @@ export class ClickUp implements INodeType {
|
|||
name: 'Task',
|
||||
value: 'task',
|
||||
},
|
||||
{
|
||||
name: 'Task Dependency',
|
||||
value: 'taskDependency',
|
||||
},
|
||||
{
|
||||
name: 'Task List',
|
||||
value: 'taskList',
|
||||
|
@ -212,10 +216,6 @@ export class ClickUp implements INodeType {
|
|||
name: 'Task Tag',
|
||||
value: 'taskTag',
|
||||
},
|
||||
{
|
||||
name: 'Task Dependency',
|
||||
value: 'taskDependency',
|
||||
},
|
||||
{
|
||||
name: 'Time Entry',
|
||||
value: 'timeEntry',
|
||||
|
|
|
@ -83,7 +83,7 @@ export class ClickUpTrigger implements INodeType {
|
|||
default: 'accessToken',
|
||||
},
|
||||
{
|
||||
displayName: 'Team',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -52,7 +52,7 @@ export const folderFields: INodeProperties[] = [
|
|||
/* folder:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -72,7 +72,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -116,7 +116,7 @@ export const folderFields: INodeProperties[] = [
|
|||
/* folder:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -136,7 +136,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -159,7 +159,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -186,7 +186,7 @@ export const folderFields: INodeProperties[] = [
|
|||
/* folder:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -206,7 +206,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -229,7 +229,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -256,7 +256,7 @@ export const folderFields: INodeProperties[] = [
|
|||
/* folder:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -276,7 +276,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -349,7 +349,7 @@ export const folderFields: INodeProperties[] = [
|
|||
/* folder:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -369,7 +369,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -392,7 +392,7 @@ export const folderFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
|
|
@ -52,7 +52,7 @@ export const goalFields: INodeProperties[] = [
|
|||
/* goal:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -187,7 +187,7 @@ export const goalFields: INodeProperties[] = [
|
|||
/* goal:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
|
|
@ -47,7 +47,7 @@ export const guestFields: INodeProperties[] = [
|
|||
/* guest:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -112,7 +112,7 @@ export const guestFields: INodeProperties[] = [
|
|||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Can See Time estimated',
|
||||
displayName: 'Can See Time Estimated',
|
||||
name: 'can_see_time_estimated',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
@ -124,7 +124,7 @@ export const guestFields: INodeProperties[] = [
|
|||
/* guest:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -165,7 +165,7 @@ export const guestFields: INodeProperties[] = [
|
|||
/* guest:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -206,7 +206,7 @@ export const guestFields: INodeProperties[] = [
|
|||
/* guest:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -272,7 +272,7 @@ export const guestFields: INodeProperties[] = [
|
|||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Can See Time estimated',
|
||||
displayName: 'Can See Time Estimated',
|
||||
name: 'can_see_time_estimated',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -62,7 +62,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -82,7 +82,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -122,7 +122,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -220,7 +220,7 @@ export const listFields: INodeProperties[] = [
|
|||
default: 3,
|
||||
},
|
||||
{
|
||||
displayName: 'Status',
|
||||
displayName: 'Status Name or ID',
|
||||
name: 'status',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -300,7 +300,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:customFields */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -320,7 +320,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -360,7 +360,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -386,7 +386,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -412,7 +412,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -442,7 +442,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -462,7 +462,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -502,7 +502,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -549,7 +549,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -569,7 +569,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -609,7 +609,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -656,7 +656,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -676,7 +676,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -716,7 +716,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -792,7 +792,7 @@ export const listFields: INodeProperties[] = [
|
|||
/* list:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -812,7 +812,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -852,7 +852,7 @@ export const listFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -912,7 +912,7 @@ export const listFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -83,7 +83,7 @@ export const spaceTagFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
displayName: 'Name or ID',
|
||||
name: 'name',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -62,7 +62,7 @@ export const taskFields: INodeProperties[] = [
|
|||
/* task:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -82,7 +82,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -122,7 +122,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -148,7 +148,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -174,7 +174,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -320,7 +320,7 @@ export const taskFields: INodeProperties[] = [
|
|||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Status',
|
||||
displayName: 'Status Name or ID',
|
||||
name: 'status',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -348,7 +348,7 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Time Estimate',
|
||||
name: 'timeEstimate',
|
||||
type: 'number',
|
||||
description: 'time estimate in minutes',
|
||||
description: 'Time estimate in minutes',
|
||||
default: 1,
|
||||
},
|
||||
],
|
||||
|
@ -483,7 +483,7 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Time Estimate',
|
||||
name: 'timeEstimate',
|
||||
type: 'number',
|
||||
description: 'time estimate in minutes',
|
||||
description: 'Time estimate in minutes',
|
||||
default: 1,
|
||||
},
|
||||
],
|
||||
|
@ -515,7 +515,7 @@ export const taskFields: INodeProperties[] = [
|
|||
/* task:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -535,7 +535,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -575,7 +575,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -601,7 +601,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -627,7 +627,7 @@ export const taskFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -745,14 +745,14 @@ export const taskFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'fieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCustomFields',
|
||||
},
|
||||
default: '',
|
||||
description: 'The ID of the field to add custom field to',
|
||||
description: 'The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Operator',
|
||||
|
@ -760,8 +760,8 @@ export const taskFields: INodeProperties[] = [
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Equal',
|
||||
value: 'equal',
|
||||
name: '!=',
|
||||
value: '!=',
|
||||
},
|
||||
{
|
||||
name: '<',
|
||||
|
@ -780,17 +780,17 @@ export const taskFields: INodeProperties[] = [
|
|||
value: '>=',
|
||||
},
|
||||
{
|
||||
name: '!=',
|
||||
value: '!=',
|
||||
},
|
||||
{
|
||||
name: 'Is Null',
|
||||
value: 'IS NULL',
|
||||
name: 'Equal',
|
||||
value: 'equal',
|
||||
},
|
||||
{
|
||||
name: 'Is Not Null',
|
||||
value: 'IS NOT NULL',
|
||||
},
|
||||
{
|
||||
name: 'Is Null',
|
||||
value: 'IS NULL',
|
||||
},
|
||||
],
|
||||
default: 'equal',
|
||||
description: 'The value to set on custom field',
|
||||
|
@ -1045,7 +1045,7 @@ export const taskFields: INodeProperties[] = [
|
|||
description: 'The ID of the field to add custom field to',
|
||||
},
|
||||
{
|
||||
displayName: 'Value is JSON',
|
||||
displayName: 'Value Is JSON',
|
||||
name: 'jsonParse',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
|
|
|
@ -97,14 +97,14 @@ export const taskTagFields: INodeProperties[] = [
|
|||
description: 'If you want to reference a task by it\'s custom task ID, this value must be true',
|
||||
},
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team_id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTeams',
|
||||
},
|
||||
default: '',
|
||||
description: 'Only used when the parameter is set to custom_task_ids=true',
|
||||
description: 'Only used when the parameter is set to custom_task_ids=true. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
|
@ -62,7 +62,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -158,7 +158,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -219,7 +219,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -239,7 +239,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -279,7 +279,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -305,7 +305,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -331,7 +331,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -374,7 +374,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Duration (minutes)',
|
||||
displayName: 'Duration (Minutes)',
|
||||
name: 'duration',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
|
@ -392,7 +392,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
description: 'Duration in minutes',
|
||||
},
|
||||
{
|
||||
displayName: 'Task ID',
|
||||
displayName: 'Task Name or ID',
|
||||
name: 'task',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -431,7 +431,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee IDs',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -474,7 +474,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:start */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -547,7 +547,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:stop */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -571,7 +571,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -612,7 +612,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
/* timeEntry:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -632,7 +632,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Space ID',
|
||||
displayName: 'Space Name or ID',
|
||||
name: 'space',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -672,7 +672,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Folder ID',
|
||||
displayName: 'Folder Name or ID',
|
||||
name: 'folder',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -698,7 +698,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -724,7 +724,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -801,7 +801,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Assignee IDs',
|
||||
displayName: 'Assignee Name or ID',
|
||||
name: 'assignee',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -826,7 +826,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
description: 'Description of the time entry',
|
||||
},
|
||||
{
|
||||
displayName: 'Duration (minutes)',
|
||||
displayName: 'Duration (Minutes)',
|
||||
name: 'duration',
|
||||
type: 'number',
|
||||
default: 0,
|
||||
|
@ -851,7 +851,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
default: [],
|
||||
},
|
||||
{
|
||||
displayName: 'Task ID',
|
||||
displayName: 'Task Name or ID',
|
||||
name: 'task',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -42,7 +42,7 @@ export const timeEntryTagFields: INodeProperties[] = [
|
|||
/* timeEntryTag:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -107,7 +107,7 @@ export const timeEntryTagFields: INodeProperties[] = [
|
|||
/* timeEntryTag:add */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -194,7 +194,7 @@ export const timeEntryTagFields: INodeProperties[] = [
|
|||
/* timeEntryTag:remove */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Team ID',
|
||||
displayName: 'Team Name or ID',
|
||||
name: 'team',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
|
|
@ -102,7 +102,7 @@ export class Clockify implements INodeType {
|
|||
...taskOperations,
|
||||
...timeEntryOperations,
|
||||
{
|
||||
displayName: 'Workspace ID',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspaceId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -41,7 +41,7 @@ export class ClockifyTrigger implements INodeType {
|
|||
polling: true,
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Workspace',
|
||||
displayName: 'Workspace Name or ID',
|
||||
name: 'workspaceId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -99,7 +99,7 @@ export const projectFields: INodeProperties[] = [
|
|||
default: '#0000FF',
|
||||
},
|
||||
{
|
||||
displayName: 'Client ID',
|
||||
displayName: 'Client Name or ID',
|
||||
name: 'clientId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -371,7 +371,7 @@ export const projectFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'User IDs',
|
||||
displayName: 'User Name or ID',
|
||||
name: 'users',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -452,7 +452,7 @@ export const projectFields: INodeProperties[] = [
|
|||
default: '#0000FF',
|
||||
},
|
||||
{
|
||||
displayName: 'Client ID',
|
||||
displayName: 'Client Name or ID',
|
||||
name: 'clientId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -48,7 +48,7 @@ export const taskOperations: INodeProperties[] = [
|
|||
|
||||
export const taskFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'projectId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -102,7 +102,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'customFieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -112,7 +112,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
||||
},
|
||||
default: '',
|
||||
description: 'The ID of the field to add custom field to',
|
||||
description: 'The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Value',
|
||||
|
@ -141,7 +141,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'projectId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -305,7 +305,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
displayName: 'Custom Field',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'customFieldId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -315,7 +315,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
|
||||
},
|
||||
default: '',
|
||||
description: 'The ID of the field to add custom field to',
|
||||
description: 'The ID of the field to add custom field to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Value',
|
||||
|
@ -344,7 +344,7 @@ export const timeEntryFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Project ID',
|
||||
displayName: 'Project Name or ID',
|
||||
name: 'projectId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -21,7 +21,7 @@ export const collectionOperations: INodeProperties[] = [
|
|||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-option-name-wrong-for-get-all
|
||||
name: 'Get all Entries',
|
||||
name: 'Get All Entries',
|
||||
value: 'getAll',
|
||||
description: 'Get all collection entries',
|
||||
},
|
||||
|
@ -37,7 +37,7 @@ export const collectionOperations: INodeProperties[] = [
|
|||
|
||||
export const collectionFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Collection',
|
||||
displayName: 'Collection Name or ID',
|
||||
name: 'collection',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -52,7 +52,7 @@ export const collectionFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'Name of the collection to operate on',
|
||||
description: 'Name of the collection to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// Collection:entry:getAll
|
||||
|
@ -198,7 +198,7 @@ export const collectionFields: INodeProperties[] = [
|
|||
// Collection:entry:create
|
||||
// Collection:entry:update
|
||||
{
|
||||
displayName: 'JSON Data fields',
|
||||
displayName: 'JSON Data Fields',
|
||||
name: 'jsonDataFields',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -44,7 +44,7 @@ export const formFields: INodeProperties[] = [
|
|||
|
||||
// Form:submit
|
||||
{
|
||||
displayName: 'JSON Data fields',
|
||||
displayName: 'JSON Data Fields',
|
||||
name: 'jsonDataFields',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -26,7 +26,7 @@ export const singletonOperations: INodeProperties[] = [
|
|||
|
||||
export const singletonFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Singleton',
|
||||
displayName: 'Singleton Name or ID',
|
||||
name: 'singleton',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -41,6 +41,6 @@ export const singletonFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'Name of the singleton to operate on',
|
||||
description: 'Name of the singleton to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
];
|
||||
|
|
|
@ -35,7 +35,7 @@ export const controlFields: INodeProperties[] = [
|
|||
/* control:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -53,7 +53,7 @@ export const controlFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Control ID',
|
||||
|
@ -77,7 +77,7 @@ export const controlFields: INodeProperties[] = [
|
|||
/* control:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -95,7 +95,7 @@ export const controlFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
|
|
@ -35,7 +35,7 @@ export const formulaFields: INodeProperties[] = [
|
|||
/* formula:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -53,7 +53,7 @@ export const formulaFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Formula ID',
|
||||
|
@ -77,7 +77,7 @@ export const formulaFields: INodeProperties[] = [
|
|||
/* formula:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -95,7 +95,7 @@ export const formulaFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
|
|
@ -59,7 +59,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:createRow */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -77,10 +77,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -101,7 +101,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to create the row in',
|
||||
description: 'The table to create the row in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
|
@ -140,7 +140,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -158,10 +158,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -182,7 +182,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the row from',
|
||||
description: 'The table to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row ID',
|
||||
|
@ -260,7 +260,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -278,10 +278,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -302,7 +302,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the rows from',
|
||||
description: 'The table to get the rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -437,7 +437,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* row:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -455,10 +455,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -479,7 +479,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to delete the row in',
|
||||
description: 'The table to delete the row in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row ID',
|
||||
|
@ -503,7 +503,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:pushButton */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -521,10 +521,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -545,7 +545,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the row from',
|
||||
description: 'The table to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row ID',
|
||||
|
@ -566,7 +566,7 @@ export const tableFields: INodeProperties[] = [
|
|||
description: 'ID or name of the row. Names are discouraged because they\'re easily prone to being changed by users. If you\'re using a name, be sure to URI-encode it. If there are multiple rows with the same value in the identifying column, an arbitrary one will be selected',
|
||||
},
|
||||
{
|
||||
displayName: 'Column',
|
||||
displayName: 'Column Name or ID',
|
||||
name: 'columnId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -593,7 +593,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:getColumn */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -611,10 +611,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -635,7 +635,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the row from',
|
||||
description: 'The table to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Column ID',
|
||||
|
@ -659,7 +659,7 @@ export const tableFields: INodeProperties[] = [
|
|||
/* table:getAllColumns */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -677,10 +677,10 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Table',
|
||||
displayName: 'Table Name or ID',
|
||||
name: 'tableId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -701,7 +701,7 @@ export const tableFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the row from',
|
||||
description: 'The table to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
|
|
@ -39,15 +39,15 @@ export const viewOperations: INodeProperties[] = [
|
|||
value: 'getAllViewRows',
|
||||
description: 'Get all views rows',
|
||||
},
|
||||
{
|
||||
name: 'Update Row',
|
||||
value: 'updateViewRow',
|
||||
},
|
||||
{
|
||||
name: 'Push Button',
|
||||
value: 'pushViewButton',
|
||||
description: 'Push view button',
|
||||
},
|
||||
{
|
||||
name: 'Update Row',
|
||||
value: 'updateViewRow',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
},
|
||||
|
@ -59,7 +59,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -77,7 +77,7 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View ID',
|
||||
|
@ -101,7 +101,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -119,7 +119,7 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -166,7 +166,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:getAllViewRows */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -184,10 +184,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View',
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -208,7 +208,7 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the rows from',
|
||||
description: 'The table to get the rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -336,7 +336,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:getAllViewColumns */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -354,10 +354,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View',
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -378,7 +378,7 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The table to get the rows from',
|
||||
description: 'The table to get the rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
|
@ -425,7 +425,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:deleteViewRow */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -443,10 +443,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View',
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -467,10 +467,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row',
|
||||
displayName: 'Row Name or ID',
|
||||
name: 'rowId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -491,13 +491,13 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* view:pushViewButton */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -515,10 +515,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View',
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -539,10 +539,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row',
|
||||
displayName: 'Row Name or ID',
|
||||
name: 'rowId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -563,10 +563,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Column',
|
||||
displayName: 'Column Name or ID',
|
||||
name: 'columnId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -593,7 +593,7 @@ export const viewFields: INodeProperties[] = [
|
|||
/* view:updateViewRow */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Doc',
|
||||
displayName: 'Doc Name or ID',
|
||||
name: 'docId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -611,10 +611,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'ID of the doc',
|
||||
description: 'ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'View',
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -635,10 +635,10 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Row',
|
||||
displayName: 'Row Name or ID',
|
||||
name: 'rowId',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -659,7 +659,7 @@ export const viewFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The view to get the row from',
|
||||
description: 'The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Key Name',
|
||||
|
|
|
@ -73,7 +73,7 @@ export const coinFields: INodeProperties[] = [
|
|||
value: 'coinId',
|
||||
},
|
||||
{
|
||||
name: 'Contract address',
|
||||
name: 'Contract Address',
|
||||
value: 'contractAddress',
|
||||
},
|
||||
],
|
||||
|
@ -93,7 +93,7 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'Search by coin ID or contract address',
|
||||
},
|
||||
{
|
||||
displayName: 'Coin ID',
|
||||
displayName: 'Coin Name or ID',
|
||||
name: 'coinId',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -114,7 +114,7 @@ export const coinFields: INodeProperties[] = [
|
|||
placeholder: 'bitcoin',
|
||||
},
|
||||
{
|
||||
displayName: 'Base Currency',
|
||||
displayName: 'Base Currency Name or ID',
|
||||
name: 'baseCurrency',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -133,10 +133,10 @@ export const coinFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC.',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Base Currency',
|
||||
displayName: 'Base Currency Name or ID',
|
||||
name: 'baseCurrency',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -155,10 +155,10 @@ export const coinFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC.',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Coin ID',
|
||||
displayName: 'Coin Name or ID',
|
||||
name: 'coinId',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -234,7 +234,7 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'The ID of the platform issuing tokens',
|
||||
},
|
||||
{
|
||||
displayName: 'Contract address',
|
||||
displayName: 'Contract Address',
|
||||
name: 'contractAddress',
|
||||
required: true,
|
||||
type: 'string',
|
||||
|
@ -256,7 +256,7 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'Token\'s contract address',
|
||||
},
|
||||
{
|
||||
displayName: 'Contract addresses',
|
||||
displayName: 'Contract Addresses',
|
||||
name: 'contractAddresses',
|
||||
required: true,
|
||||
type: 'string',
|
||||
|
@ -277,7 +277,7 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'The contract address of tokens, comma-separated',
|
||||
},
|
||||
{
|
||||
displayName: 'Base Currency',
|
||||
displayName: 'Base Currency Name or ID',
|
||||
name: 'baseCurrency',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -303,10 +303,10 @@ export const coinFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC.',
|
||||
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Quote Currency',
|
||||
displayName: 'Quote Currency Name or ID',
|
||||
name: 'quoteCurrency',
|
||||
required: true,
|
||||
type: 'options',
|
||||
|
@ -325,7 +325,7 @@ export const coinFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The second currency in the pair. For BTC:ETH this is ETH.',
|
||||
description: 'The second currency in the pair. For BTC:ETH this is ETH. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Quote Currencies',
|
||||
|
@ -349,10 +349,11 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'The second currency in the pair. For BTC:ETH this is ETH.',
|
||||
},
|
||||
{
|
||||
displayName: 'Range (days)',
|
||||
displayName: 'Range (Days)',
|
||||
name: 'days',
|
||||
required: true,
|
||||
type: 'options',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: '1',
|
||||
|
@ -507,29 +508,13 @@ export const coinFields: INodeProperties[] = [
|
|||
name: 'order',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Market Cap Desc',
|
||||
value: 'market_cap_desc',
|
||||
},
|
||||
{
|
||||
name: 'Gecko Desc',
|
||||
value: 'gecko_desc',
|
||||
},
|
||||
{
|
||||
name: 'Gecko Asc',
|
||||
value: 'gecko_asc',
|
||||
},
|
||||
{
|
||||
name: 'Market Cap Asc',
|
||||
value: 'market_cap_asc',
|
||||
},
|
||||
{
|
||||
name: 'Volume Asc',
|
||||
value: 'volume_asc',
|
||||
},
|
||||
{
|
||||
name: 'Volume Desc',
|
||||
value: 'volume_desc',
|
||||
name: 'Gecko Desc',
|
||||
value: 'gecko_desc',
|
||||
},
|
||||
{
|
||||
name: 'ID Asc',
|
||||
|
@ -539,6 +524,22 @@ export const coinFields: INodeProperties[] = [
|
|||
name: 'ID Desc',
|
||||
value: 'id_desc',
|
||||
},
|
||||
{
|
||||
name: 'Market Cap Asc',
|
||||
value: 'market_cap_asc',
|
||||
},
|
||||
{
|
||||
name: 'Market Cap Desc',
|
||||
value: 'market_cap_desc',
|
||||
},
|
||||
{
|
||||
name: 'Volume Asc',
|
||||
value: 'volume_asc',
|
||||
},
|
||||
{
|
||||
name: 'Volume Desc',
|
||||
value: 'volume_desc',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'Sort results by field',
|
||||
|
@ -732,14 +733,14 @@ export const coinFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Community data',
|
||||
displayName: 'Community Data',
|
||||
name: 'community_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include community data',
|
||||
},
|
||||
{
|
||||
displayName: 'Developer data',
|
||||
displayName: 'Developer Data',
|
||||
name: 'developer_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
@ -753,7 +754,7 @@ export const coinFields: INodeProperties[] = [
|
|||
description: 'Include all localized languages in response',
|
||||
},
|
||||
{
|
||||
displayName: 'Market data',
|
||||
displayName: 'Market Data',
|
||||
name: 'market_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -86,41 +86,42 @@ export const eventFields: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Country code',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
||||
displayName: 'Country Code',
|
||||
name: 'country_code',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getEventCountryCodes',
|
||||
},
|
||||
default: '',
|
||||
description: 'Country code of event',
|
||||
description: 'Country code of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'From date',
|
||||
displayName: 'From Date',
|
||||
name: 'from_date',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Lists events after this date',
|
||||
},
|
||||
{
|
||||
displayName: 'To date',
|
||||
displayName: 'To Date',
|
||||
name: 'to_date',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Lists events before this date',
|
||||
},
|
||||
{
|
||||
displayName: 'Type',
|
||||
displayName: 'Type Name or ID',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getEventTypes',
|
||||
},
|
||||
default: '',
|
||||
description: 'Type of event',
|
||||
description: 'Type of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Upcoming events only',
|
||||
displayName: 'Upcoming Events Only',
|
||||
name: 'upcoming_events_only',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
|
|
|
@ -106,11 +106,11 @@ export class Compression implements INodeType {
|
|||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'gzip',
|
||||
name: 'Gzip',
|
||||
value: 'gzip',
|
||||
},
|
||||
{
|
||||
name: 'zip',
|
||||
name: 'Zip',
|
||||
value: 'zip',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -100,7 +100,7 @@ export class ConvertKitTrigger implements INodeType {
|
|||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Form ID',
|
||||
displayName: 'Form Name or ID',
|
||||
name: 'formId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -117,7 +117,7 @@ export class ConvertKitTrigger implements INodeType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Sequence ID',
|
||||
displayName: 'Sequence Name or ID',
|
||||
name: 'courseId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -164,7 +164,7 @@ export class ConvertKitTrigger implements INodeType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Tag ID',
|
||||
displayName: 'Tag Name or ID',
|
||||
name: 'tagId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -39,7 +39,7 @@ export const formOperations: INodeProperties[] = [
|
|||
|
||||
export const formFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Form ID',
|
||||
displayName: 'Form Name or ID',
|
||||
name: 'id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -39,7 +39,7 @@ export const sequenceOperations: INodeProperties[] = [
|
|||
|
||||
export const sequenceFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Sequence ID',
|
||||
displayName: 'Sequence Name or ID',
|
||||
name: 'id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -38,7 +38,7 @@ export const tagSubscriberOperations: INodeProperties[] = [
|
|||
|
||||
export const tagSubscriberFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Tag ID',
|
||||
displayName: 'Tag Name or ID',
|
||||
name: 'tagId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -34,7 +34,7 @@ export const analyzersOperations: INodeProperties[] = [
|
|||
|
||||
export const analyzerFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Analyzer Type',
|
||||
displayName: 'Analyzer Type Name or ID',
|
||||
name: 'analyzer',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -51,11 +51,11 @@ export const analyzerFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'Choose the analyzer',
|
||||
description: 'Choose the analyzer. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Observable Type',
|
||||
displayName: 'Observable Type Name or ID',
|
||||
name: 'observableType',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -81,7 +81,7 @@ export const analyzerFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
default: '',
|
||||
description: 'Choose the observable type',
|
||||
description: 'Choose the observable type. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
|
||||
// Observable type != file
|
||||
|
@ -199,7 +199,7 @@ export const analyzerFields: INodeProperties[] = [
|
|||
description: 'To force bypassing the cache, set this parameter to true',
|
||||
},
|
||||
{
|
||||
displayName: 'Timeout (seconds)',
|
||||
displayName: 'Timeout (Seconds)',
|
||||
name: 'timeout',
|
||||
type: 'number',
|
||||
default: 3,
|
||||
|
|
|
@ -34,7 +34,7 @@ export const respondersOperations: INodeProperties[] = [
|
|||
|
||||
export const responderFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Responder Type',
|
||||
displayName: 'Responder Type Name or ID',
|
||||
name: 'responder',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -49,10 +49,10 @@ export const responderFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'Choose the responder',
|
||||
description: 'Choose the responder. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Entity Type',
|
||||
displayName: 'Entity Type Name or ID',
|
||||
name: 'entityType',
|
||||
type: 'options',
|
||||
required: true,
|
||||
|
@ -70,7 +70,7 @@ export const responderFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
default: '',
|
||||
description: 'Choose the Data type',
|
||||
description: 'Choose the Data type. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'JSON Parameters',
|
||||
|
|
|
@ -79,6 +79,7 @@ export class CrateDb implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-placeholder-miscased-id
|
||||
placeholder: 'SELECT id, name FROM product WHERE quantity > $1 AND price <= $2',
|
||||
required: true,
|
||||
description: 'The SQL query to execute. You can use n8n expressions or $1 and $2 in conjunction with query parameters.',
|
||||
|
@ -123,6 +124,7 @@ export class CrateDb implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-placeholder-miscased-id
|
||||
placeholder: 'id,name,description',
|
||||
description: 'Comma-separated list of the properties which should used as columns for the new rows',
|
||||
},
|
||||
|
@ -220,7 +222,7 @@ export class CrateDb implements INodeType {
|
|||
description: 'Execute each query independently',
|
||||
},
|
||||
{
|
||||
name: 'Multiple queries',
|
||||
name: 'Multiple Queries',
|
||||
value: 'multiple',
|
||||
description: '<b>Default</b>. Sends multiple queries at once to database.',
|
||||
},
|
||||
|
|
|
@ -55,6 +55,7 @@ export class Cron implements INodeType {
|
|||
displayName: 'Mode',
|
||||
name: 'mode',
|
||||
type: 'options',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Every Minute',
|
||||
|
@ -158,6 +159,7 @@ export class Cron implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Monday',
|
||||
|
|
|
@ -289,7 +289,7 @@ export class Crypto implements INodeType {
|
|||
description: 'Name of the property to which to write the signed value',
|
||||
},
|
||||
{
|
||||
displayName: 'Algorithm',
|
||||
displayName: 'Algorithm Name or ID',
|
||||
name: 'algorithm',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
|
@ -163,14 +163,14 @@ export const campaignFields: INodeProperties[] = [
|
|||
default: 'empty',
|
||||
description: 'Specify metric type',
|
||||
options: [
|
||||
{
|
||||
name: 'Empty',
|
||||
value: 'empty',
|
||||
},
|
||||
{
|
||||
name: 'Email',
|
||||
value: 'email',
|
||||
},
|
||||
{
|
||||
name: 'Empty',
|
||||
value: 'empty',
|
||||
},
|
||||
{
|
||||
name: 'Push',
|
||||
value: 'push',
|
||||
|
@ -180,7 +180,7 @@ export const campaignFields: INodeProperties[] = [
|
|||
value: 'slack',
|
||||
},
|
||||
{
|
||||
name: 'twilio',
|
||||
name: 'Twilio',
|
||||
value: 'twilio',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ export const customerOperations: INodeProperties[] = [
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Create/Update',
|
||||
name: 'Create or Update',
|
||||
value: 'upsert',
|
||||
description: 'Create a new customer, or update the current one if it already exists (upsert)',
|
||||
},
|
||||
|
@ -177,7 +177,7 @@ export const customerFields: INodeProperties[] = [
|
|||
description: 'The email address of the user',
|
||||
},
|
||||
{
|
||||
displayName: 'Created at',
|
||||
displayName: 'Created At',
|
||||
name: 'createdAt',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
|
|
|
@ -81,142 +81,142 @@ export class CustomerIoTrigger implements INodeType {
|
|||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email clicked',
|
||||
name: 'Email Clicked',
|
||||
value: 'email.clicked',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email converted',
|
||||
name: 'Email Converted',
|
||||
value: 'email.converted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email delivered',
|
||||
name: 'Email Delivered',
|
||||
value: 'email.delivered',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email drafted',
|
||||
name: 'Email Drafted',
|
||||
value: 'email.drafted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email failed',
|
||||
name: 'Email Failed',
|
||||
value: 'email.failed',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email opened',
|
||||
name: 'Email Opened',
|
||||
value: 'email.opened',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email sent',
|
||||
name: 'Email Sent',
|
||||
value: 'email.sent',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Email spammed',
|
||||
name: 'Email Spammed',
|
||||
value: 'email.spammed',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push attempted',
|
||||
name: 'Push Attempted',
|
||||
value: 'push.attempted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push bounced',
|
||||
name: 'Push Bounced',
|
||||
value: 'push.bounced',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push clicked',
|
||||
name: 'Push Clicked',
|
||||
value: 'push.clicked',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push delivered',
|
||||
name: 'Push Delivered',
|
||||
value: 'push.delivered',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push drafted',
|
||||
name: 'Push Drafted',
|
||||
value: 'push.drafted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push failed',
|
||||
name: 'Push Failed',
|
||||
value: 'push.failed',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push opened',
|
||||
name: 'Push Opened',
|
||||
value: 'push.opened',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Push sent',
|
||||
name: 'Push Sent',
|
||||
value: 'push.sent',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Slack attempted',
|
||||
name: 'Slack Attempted',
|
||||
value: 'slack.attempted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Slack clicked',
|
||||
name: 'Slack Clicked',
|
||||
value: 'slack.clicked',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Slack drafted',
|
||||
name: 'Slack Drafted',
|
||||
value: 'slack.drafted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Slack failed',
|
||||
name: 'Slack Failed',
|
||||
value: 'slack.failed',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'Slack sent',
|
||||
name: 'Slack Sent',
|
||||
value: 'slack.sent',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS attempted',
|
||||
name: 'SMS Attempted',
|
||||
value: 'sms.attempted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS bounced',
|
||||
name: 'SMS Bounced',
|
||||
value: 'sms.bounced',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS clicked',
|
||||
name: 'SMS Clicked',
|
||||
value: 'sms.clicked',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS delivered',
|
||||
name: 'SMS Delivered',
|
||||
value: 'sms.delivered',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS drafted',
|
||||
name: 'SMS Drafted',
|
||||
value: 'sms.drafted',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS failed',
|
||||
name: 'SMS Failed',
|
||||
value: 'sms.failed',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
{
|
||||
name: 'SMS sent',
|
||||
name: 'SMS Sent',
|
||||
value: 'sms.sent',
|
||||
description: 'Whether the webhook is triggered when a list member unsubscribes',
|
||||
},
|
||||
|
|
|
@ -129,6 +129,7 @@ export class DateTime implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'MM/DD/YYYY',
|
||||
|
@ -191,24 +192,24 @@ export class DateTime implements INodeType {
|
|||
description: 'In case the input format is not recognized you can provide the format',
|
||||
},
|
||||
{
|
||||
displayName: 'From Timezone',
|
||||
displayName: 'From Timezone Name or ID',
|
||||
name: 'fromTimezone',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTimezones',
|
||||
},
|
||||
default: 'UTC',
|
||||
description: 'The timezone to convert from',
|
||||
description: 'The timezone to convert from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'To Timezone',
|
||||
displayName: 'To Timezone Name or ID',
|
||||
name: 'toTimezone',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getTimezones',
|
||||
},
|
||||
default: 'UTC',
|
||||
description: 'The timezone to convert to',
|
||||
description: 'The timezone to convert to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -284,6 +285,7 @@ export class DateTime implements INodeType {
|
|||
},
|
||||
},
|
||||
type: 'options',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
||||
options: [
|
||||
{
|
||||
name: 'Quarters',
|
||||
|
|
|
@ -22,14 +22,14 @@ export const textOperations: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Target Language',
|
||||
displayName: 'Target Language Name or ID',
|
||||
name: 'translateTo',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getLanguages',
|
||||
},
|
||||
default: '',
|
||||
description: 'Language to translate to',
|
||||
description: 'Language to translate to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -47,11 +47,11 @@ export const textOperations: INodeProperties[] = [
|
|||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Source Language',
|
||||
displayName: 'Source Language Name or ID',
|
||||
name: 'sourceLang',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'Language to translate from',
|
||||
description: 'Language to translate from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getLanguages',
|
||||
},
|
||||
|
@ -88,12 +88,12 @@ export const textOperations: INodeProperties[] = [
|
|||
description: 'Whether the translation engine should respect the original formatting, even if it would usually correct some aspects',
|
||||
options: [
|
||||
{
|
||||
name: 'Apply corrections',
|
||||
name: 'Apply Corrections',
|
||||
value: '0',
|
||||
description: 'Fix punctuation at the beginning and end of sentences and fixes lower/upper caseing at the beginning',
|
||||
},
|
||||
{
|
||||
name: 'Do not correct',
|
||||
name: 'Do Not Correct',
|
||||
value: '1',
|
||||
description: 'Keep text as similar as possible to the original',
|
||||
},
|
||||
|
|
|
@ -180,7 +180,7 @@ export const eventFields: INodeProperties[] = [
|
|||
/* event:register */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Event ID',
|
||||
displayName: 'Event Name or ID',
|
||||
name: 'eventId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -319,7 +319,7 @@ export const eventFields: INodeProperties[] = [
|
|||
description: 'The value for the predefined Phone Number field',
|
||||
},
|
||||
{
|
||||
displayName: 'Session ID',
|
||||
displayName: 'Session Name or ID',
|
||||
name: 'date_id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -329,7 +329,7 @@ export const eventFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
default: '',
|
||||
description: 'Event Session ID',
|
||||
description: 'Event Session ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Website',
|
||||
|
|
|
@ -30,7 +30,7 @@ export const reportFields: INodeProperties[] = [
|
|||
/* report:get */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Event ID',
|
||||
displayName: 'Event Name or ID',
|
||||
name: 'eventId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -49,7 +49,7 @@ export const reportFields: INodeProperties[] = [
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Session ID',
|
||||
displayName: 'Session Name or ID',
|
||||
name: 'dateId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -60,7 +60,7 @@ export const reportFields: INodeProperties[] = [
|
|||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'ID of the session',
|
||||
description: 'ID of the session. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
|
|
@ -103,14 +103,14 @@ export const postFields: INodeProperties[] = [
|
|||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Category ID',
|
||||
displayName: 'Category Name or ID',
|
||||
name: 'category',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCategories',
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of the category',
|
||||
description: 'ID of the category. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Reply To Post Number',
|
||||
|
|
|
@ -91,7 +91,7 @@ export class Disqus implements INodeType {
|
|||
// forum:get
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Forum name',
|
||||
displayName: 'Forum Name',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -131,7 +131,7 @@ export class Disqus implements INodeType {
|
|||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'counters',
|
||||
name: 'Counters',
|
||||
value: 'counters',
|
||||
},
|
||||
{
|
||||
|
@ -189,7 +189,7 @@ export class Disqus implements INodeType {
|
|||
// forum:getPosts
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Forum name',
|
||||
displayName: 'Forum Name',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -323,7 +323,7 @@ export class Disqus implements INodeType {
|
|||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'approved',
|
||||
name: 'Approved',
|
||||
value: 'approved',
|
||||
},
|
||||
],
|
||||
|
@ -360,7 +360,7 @@ export class Disqus implements INodeType {
|
|||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'thread',
|
||||
name: 'Thread',
|
||||
value: 'thread',
|
||||
},
|
||||
],
|
||||
|
@ -381,7 +381,7 @@ export class Disqus implements INodeType {
|
|||
// forum:getCategories
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Forum name',
|
||||
displayName: 'Forum Name',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -480,7 +480,7 @@ export class Disqus implements INodeType {
|
|||
// forum:getThreads
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Forum name',
|
||||
displayName: 'Forum Name',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -565,7 +565,7 @@ export class Disqus implements INodeType {
|
|||
value: 'author',
|
||||
},
|
||||
{
|
||||
name: 'forum',
|
||||
name: 'Forum',
|
||||
value: 'forum',
|
||||
},
|
||||
],
|
||||
|
@ -578,15 +578,15 @@ export class Disqus implements INodeType {
|
|||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'closed',
|
||||
name: 'Closed',
|
||||
value: 'closed',
|
||||
},
|
||||
{
|
||||
name: 'open',
|
||||
name: 'Open',
|
||||
value: 'open',
|
||||
},
|
||||
{
|
||||
name: 'killed',
|
||||
name: 'Killed',
|
||||
value: 'killed',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -573,10 +573,12 @@ export class Dropbox implements INodeType {
|
|||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'Audio (mp3, wav, mid, etc.)',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Audio (mp3, qav, mid, etc.)',
|
||||
value: 'audio',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Document (doc, docx, txt, etc.)',
|
||||
value: 'document',
|
||||
},
|
||||
|
@ -585,6 +587,7 @@ export class Dropbox implements INodeType {
|
|||
value: 'folder',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Image (jpg, png, gif, etc.)',
|
||||
value: 'image',
|
||||
},
|
||||
|
@ -601,14 +604,17 @@ export class Dropbox implements INodeType {
|
|||
value: 'pdf',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Presentation (ppt, pptx, key, etc.)',
|
||||
value: 'presentation',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Spreadsheet (xlsx, xls, csv, etc.)',
|
||||
value: 'spreadsheet',
|
||||
},
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
name: 'Video (avi, wmv, mp4, etc.)',
|
||||
value: 'video',
|
||||
},
|
||||
|
|
|
@ -51,14 +51,14 @@ export const documentFields: INodeProperties[] = [
|
|||
// document: getAll
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'DocType',
|
||||
displayName: 'DocType Name or ID',
|
||||
name: 'docType',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getDocTypes',
|
||||
},
|
||||
default: '',
|
||||
description: 'DocType whose documents to retrieve',
|
||||
description: 'DocType whose documents to retrieve. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
placeholder: 'Customer',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -158,7 +158,7 @@ export const documentFields: INodeProperties[] = [
|
|||
name: 'customProperty',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -176,12 +176,16 @@ export const documentFields: INodeProperties[] = [
|
|||
default: 'is',
|
||||
options: [
|
||||
{
|
||||
name: 'IS',
|
||||
value: 'is',
|
||||
name: 'EQUALS, or GREATER',
|
||||
value: 'equalsGreater',
|
||||
},
|
||||
{
|
||||
name: 'IS NOT',
|
||||
value: 'isNot',
|
||||
name: 'EQUALS, or LESS',
|
||||
value: 'equalsLess',
|
||||
},
|
||||
{
|
||||
name: 'IS',
|
||||
value: 'is',
|
||||
},
|
||||
{
|
||||
name: 'IS GREATER',
|
||||
|
@ -192,12 +196,8 @@ export const documentFields: INodeProperties[] = [
|
|||
value: 'less',
|
||||
},
|
||||
{
|
||||
name: 'EQUALS, or GREATER',
|
||||
value: 'equalsGreater',
|
||||
},
|
||||
{
|
||||
name: 'EQUALS, or LESS',
|
||||
value: 'equalsLess',
|
||||
name: 'IS NOT',
|
||||
value: 'isNot',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -219,7 +219,7 @@ export const documentFields: INodeProperties[] = [
|
|||
// document: create
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'DocType',
|
||||
displayName: 'DocType Name or ID',
|
||||
name: 'docType',
|
||||
type: 'options',
|
||||
default: '',
|
||||
|
@ -227,7 +227,7 @@ export const documentFields: INodeProperties[] = [
|
|||
loadOptionsMethod: 'getDocTypes',
|
||||
},
|
||||
required: true,
|
||||
description: 'DocType you would like to create',
|
||||
description: 'DocType you would like to create. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
placeholder: 'Customer',
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -267,7 +267,7 @@ export const documentFields: INodeProperties[] = [
|
|||
placeholder: 'Add Property',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -293,14 +293,14 @@ export const documentFields: INodeProperties[] = [
|
|||
// document: get
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'DocType',
|
||||
displayName: 'DocType Name or ID',
|
||||
name: 'docType',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getDocTypes',
|
||||
},
|
||||
default: '',
|
||||
description: 'The type of document you would like to get',
|
||||
description: 'The type of document you would like to get. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -336,14 +336,14 @@ export const documentFields: INodeProperties[] = [
|
|||
// document: delete
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'DocType',
|
||||
displayName: 'DocType Name or ID',
|
||||
name: 'docType',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getDocTypes',
|
||||
},
|
||||
default: '',
|
||||
description: 'The type of document you would like to delete',
|
||||
description: 'The type of document you would like to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -379,14 +379,14 @@ export const documentFields: INodeProperties[] = [
|
|||
// document: update
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'DocType',
|
||||
displayName: 'DocType Name or ID',
|
||||
name: 'docType',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getDocTypes',
|
||||
},
|
||||
default: '',
|
||||
description: 'The type of document you would like to update',
|
||||
description: 'The type of document you would like to update. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -443,7 +443,7 @@ export const documentFields: INodeProperties[] = [
|
|||
name: 'customProperty',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
|
@ -720,7 +720,7 @@ const nodeOperationOptions: INodeProperties[] = [
|
|||
description: 'Ignore aspect ratio and resize exactly to specified values',
|
||||
},
|
||||
{
|
||||
name: 'Maximum area',
|
||||
name: 'Maximum Area',
|
||||
value: 'maximumArea',
|
||||
description: 'Specified values are maximum area',
|
||||
},
|
||||
|
@ -730,12 +730,12 @@ const nodeOperationOptions: INodeProperties[] = [
|
|||
description: 'Specified values are minimum area',
|
||||
},
|
||||
{
|
||||
name: 'Only if larger',
|
||||
name: 'Only if Larger',
|
||||
value: 'onlyIfLarger',
|
||||
description: 'Resize only if image is larger than width or height',
|
||||
},
|
||||
{
|
||||
name: 'Only if smaller',
|
||||
name: 'Only if Smaller',
|
||||
value: 'onlyIfSmaller',
|
||||
description: 'Resize only if image is smaller than width or height',
|
||||
},
|
||||
|
@ -933,7 +933,7 @@ export class EditImage implements INodeType {
|
|||
},
|
||||
...nodeOperationOptions,
|
||||
{
|
||||
displayName: 'Font',
|
||||
displayName: 'Font Name or ID',
|
||||
name: 'font',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -947,7 +947,7 @@ export class EditImage implements INodeType {
|
|||
loadOptionsMethod: 'getFonts',
|
||||
},
|
||||
default: 'default',
|
||||
description: 'The font to use',
|
||||
description: 'The font to use. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -977,7 +977,7 @@ export class EditImage implements INodeType {
|
|||
description: 'File name to set in binary data',
|
||||
},
|
||||
{
|
||||
displayName: 'Font',
|
||||
displayName: 'Font Name or ID',
|
||||
name: 'font',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -991,7 +991,7 @@ export class EditImage implements INodeType {
|
|||
loadOptionsMethod: 'getFonts',
|
||||
},
|
||||
default: 'default',
|
||||
description: 'The font to use',
|
||||
description: 'The font to use. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Format',
|
||||
|
|
|
@ -90,7 +90,7 @@ export class Egoi implements INodeType {
|
|||
default: 'create',
|
||||
},
|
||||
{
|
||||
displayName: 'List ID',
|
||||
displayName: 'List Name or ID',
|
||||
name: 'list',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -107,7 +107,7 @@ export class Egoi implements INodeType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'ID of list to operate on',
|
||||
description: 'ID of list to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Email',
|
||||
|
@ -204,7 +204,7 @@ export class Egoi implements INodeType {
|
|||
},
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field_id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
@ -332,7 +332,7 @@ export class Egoi implements INodeType {
|
|||
},
|
||||
values: [
|
||||
{
|
||||
displayName: 'Field ID',
|
||||
displayName: 'Field Name or ID',
|
||||
name: 'field_id',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue