refactor(nodes-base): Apply lint rule node-param-operation-option-description-wrong-for-get-many (#4064)

* 👕 Enable rule

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Apply rule

* ✏️ Fix plurals

* ✏️ More typos

* ✏️ Final typos
This commit is contained in:
Iván Ovejero 2022-09-13 12:36:36 +02:00 committed by GitHub
parent 9f92a4d681
commit 3a9c7acb04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
354 changed files with 376 additions and 375 deletions

View file

@ -147,6 +147,7 @@ module.exports = {
'n8n-nodes-base/node-param-min-value-wrong-for-limit': 'error', 'n8n-nodes-base/node-param-min-value-wrong-for-limit': 'error',
'n8n-nodes-base/node-param-multi-options-type-unsorted-items': 'error', 'n8n-nodes-base/node-param-multi-options-type-unsorted-items': 'error',
'n8n-nodes-base/node-param-operation-option-action-wrong-for-get-many': 'error', 'n8n-nodes-base/node-param-operation-option-action-wrong-for-get-many': 'error',
'n8n-nodes-base/node-param-operation-option-description-wrong-for-get-many': 'error',
'n8n-nodes-base/node-param-operation-option-without-action': 'error', 'n8n-nodes-base/node-param-operation-option-without-action': 'error',
'n8n-nodes-base/node-param-operation-without-no-data-expression': 'error', 'n8n-nodes-base/node-param-operation-without-no-data-expression': 'error',
'n8n-nodes-base/node-param-option-description-identical-to-name': 'error', 'n8n-nodes-base/node-param-option-description-identical-to-name': 'error',

View file

@ -35,7 +35,7 @@ export const accountOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all accounts', description: 'Get data of many accounts',
action: 'Get many accounts', action: 'Get many accounts',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const connectionOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all connections', description: 'Get data of many connections',
action: 'Get many connections', action: 'Get many connections',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all contact', description: 'Get data of many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -43,7 +43,7 @@ export const dealOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all deals', description: 'Get data of many deals',
action: 'Get many deals', action: 'Get many deals',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const ecomCustomerOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all E-commerce Customer', description: 'Get data of many E-commerce Customers',
action: 'Get many e-commerce customers', action: 'Get many e-commerce customers',
}, },
{ {

View file

@ -37,7 +37,7 @@ export const ecomOrderOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all orders', description: 'Get data of many orders',
action: 'Get many e-commerce orders', action: 'Get many e-commerce orders',
}, },
{ {

View file

@ -17,7 +17,7 @@ export const ecomOrderProductsOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all order products', description: 'Get data of many order products',
action: 'Get many ecommerce orders', action: 'Get many ecommerce orders',
}, },
{ {

View file

@ -17,7 +17,7 @@ export const listOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get many lists',
action: 'Get many lists', action: 'Get many lists',
}, },
], ],

View file

@ -35,7 +35,7 @@ export const tagOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get data of all tags', description: 'Get data of many tags',
action: 'Get many tags', action: 'Get many tags',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const listOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get many lists',
action: 'Get many lists', action: 'Get many lists',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const listEntryOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all list entries', description: 'Get many list entries',
action: 'Get many list entries', action: 'Get many list entries',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const organizationOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all organizations', description: 'Get many organizations',
action: 'Get many organizations', action: 'Get many organizations',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const personOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all persons', description: 'Get many persons',
action: 'Get many people', action: 'Get many people',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const companyOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all companies', description: 'Get many companies',
action: 'Get many companies', action: 'Get many companies',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts', description: 'Get many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const dealOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all deals', description: 'Get many deals',
action: 'Get many deals', action: 'Get many deals',
}, },
{ {

View file

@ -145,7 +145,7 @@ export class Asana implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all substasks', description: 'Get many substasks',
action: 'Get many subtasks', action: 'Get many subtasks',
}, },
], ],
@ -393,7 +393,7 @@ export class Asana implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tasks', description: 'Get many tasks',
action: 'Get many tasks', action: 'Get many tasks',
}, },
{ {
@ -1272,7 +1272,7 @@ export class Asana implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all users', description: 'Get many users',
action: 'Get many users', action: 'Get many users',
}, },
], ],
@ -1357,7 +1357,7 @@ export class Asana implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all projects', description: 'Get many projects',
action: 'Get many projects', action: 'Get many projects',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts', description: 'Get many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const listOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get many lists',
action: 'Get many lists', action: 'Get many lists',
}, },
{ {

View file

@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts', description: 'Get many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
], ],

View file

@ -27,7 +27,7 @@ export const contactListOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts on list', description: 'Get many contacts from a list',
action: 'Get many contact lists', action: 'Get many contact lists',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const listOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get many lists',
action: 'Get many lists', action: 'Get many lists',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const itemOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all items', description: 'Get many items',
action: 'Get many items', action: 'Get many items',
}, },
], ],

View file

@ -27,7 +27,7 @@ export const bucketOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all buckets', description: 'Get many buckets',
action: 'Get many buckets', action: 'Get many buckets',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const fileOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all files', description: 'Get many files',
action: 'Get many files', action: 'Get many files',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const folderOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all folders', description: 'Get many folders',
action: 'Get many folders', action: 'Get many folders',
}, },
], ],

View file

@ -93,7 +93,7 @@ export class AwsSes implements INodeType {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: description:
'Get all the existing custom verification email templates for your account', 'Get many of the existing custom verification email templates for your account',
action: 'Get many custom verifications', action: 'Get many custom verifications',
}, },
{ {
@ -649,7 +649,7 @@ export class AwsSes implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all templates', description: 'Get many templates',
action: 'Get many templates', action: 'Get many templates',
}, },
{ {

View file

@ -65,7 +65,7 @@ export class AwsTranscribe implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all transcription jobs', description: 'Get many transcription jobs',
action: 'Get many transcription jobs', action: 'Get many transcription jobs',
}, },
], ],

View file

@ -34,7 +34,7 @@ export const descriptions: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all employees', description: 'Get many employees',
action: 'Get many employees', action: 'Get many employees',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const descriptions: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all employee document', description: 'Get many employee documents',
action: 'Get many employee documents', action: 'Get many employee documents',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const descriptions: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all company files', description: 'Get many company files',
action: 'Get many files', action: 'Get many files',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const templateOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all templates', description: 'Get many templates',
action: 'Get many templates', action: 'Get many templates',
}, },
], ],

View file

@ -93,7 +93,7 @@ export class Baserow implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all rows', description: 'Retrieve many rows',
action: 'Get many rows', action: 'Get many rows',
}, },
{ {

View file

@ -78,7 +78,7 @@ export class Beeminder implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all datapoints for a goal', description: 'Get many datapoints for a goal',
action: 'Get many datapoints for a goal', action: 'Get many datapoints for a goal',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const pipelineOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all pipelines', description: 'Get many pipelines',
action: 'Get many pipelines', action: 'Get many pipelines',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const commentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all comments', description: 'Get many comments',
action: 'Get many comments', action: 'Get many comments',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const folderOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all folders', description: 'Get many folders',
action: 'Get many folders', action: 'Get many folders',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const goalOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all goals', description: 'Get many goals',
action: 'Get many goals', action: 'Get many goals',
}, },
{ {

View file

@ -39,7 +39,7 @@ export const listOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get many lists',
action: 'Get many lists', action: 'Get many lists',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const spaceTagOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all space tags', description: 'Get many space tags',
action: 'Get many space tags', action: 'Get many space tags',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tasks', description: 'Get many tasks',
action: 'Get many tasks', action: 'Get many tasks',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const timeEntryOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all time entries', description: 'Get many time entries',
action: 'Get many time entries', action: 'Get many time entries',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const timeEntryTagOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all time entry tags', description: 'Get many time entry tags',
action: 'Get many time entry tags', action: 'Get many time entry tags',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const clientOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all clients', description: 'Get many clients',
action: 'Get many clients', action: 'Get many clients',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const projectOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all projects', description: 'Get many projects',
action: 'Get many projects', action: 'Get many projects',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const tagOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tags', description: 'Get many tags',
action: 'Get many tags', action: 'Get many tags',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tasks', description: 'Get many tasks',
action: 'Get many tasks', action: 'Get many tasks',
}, },
{ {

View file

@ -15,7 +15,7 @@ export const userOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all users', description: 'Get many users',
action: 'Get many users', action: 'Get many users',
}, },
], ],

View file

@ -15,7 +15,7 @@ export const workspaceOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all workspaces', description: 'Get many workspaces',
action: 'Get many workspaces', action: 'Get many workspaces',
}, },
], ],

View file

@ -22,7 +22,7 @@ export const collectionOperations: INodeProperties[] = [
// eslint-disable-next-line n8n-nodes-base/node-param-option-name-wrong-for-get-many // eslint-disable-next-line n8n-nodes-base/node-param-option-name-wrong-for-get-many
name: 'Get Many Entries', name: 'Get Many Entries',
value: 'getAll', value: 'getAll',
description: 'Get all collection entries', description: 'Get many collection entries',
action: 'Get many collection entries', action: 'Get many collection entries',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const controlOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all controls', description: 'Get many controls',
action: 'Get many controls', action: 'Get many controls',
}, },
], ],

View file

@ -21,7 +21,7 @@ export const formulaOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all formulas', description: 'Get many formulas',
action: 'Get many formulas', action: 'Get many formulas',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const viewOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all views', description: 'Get many views',
action: 'Get many views', action: 'Get many views',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const coinOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all coins', description: 'Get many coins',
action: 'Get many coins', action: 'Get many coins',
}, },
{ {

View file

@ -15,7 +15,7 @@ export const eventOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all events', description: 'Get many events',
action: 'Get many events', action: 'Get many events',
}, },
], ],

View file

@ -27,7 +27,7 @@ export const customFieldOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all fields', description: 'Get many fields',
action: 'Get many custom fields', action: 'Get many custom fields',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const formOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all forms', description: 'Get many forms',
action: 'Get many forms', action: 'Get many forms',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const sequenceOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all sequences', description: 'Get many sequences',
action: 'Get many sequences', action: 'Get many sequences',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const tagOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tags', description: 'Get many tags',
action: 'Get many tags', action: 'Get many tags',
}, },
], ],

View file

@ -21,7 +21,7 @@ export const eventOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all events', description: 'Get many events',
action: 'Get many events', action: 'Get many events',
}, },
{ {

View file

@ -23,7 +23,7 @@ export const categoryOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all categories', description: 'Get many categories',
action: 'Get many categories', action: 'Get many categories',
}, },
{ {

View file

@ -29,7 +29,7 @@ export const groupOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all groups', description: 'Get many groups',
action: 'Get many groups', action: 'Get many groups',
}, },
{ {

View file

@ -29,7 +29,7 @@ export const postOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all posts', description: 'Get many posts',
action: 'Get many posts', action: 'Get many posts',
}, },
{ {

View file

@ -29,7 +29,7 @@ export const userOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all users', description: 'Get many users',
action: 'Get many users', action: 'Get many users',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const documentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all documents', description: 'Retrieve many documents',
action: 'Get many documents', action: 'Get many documents',
}, },
{ {

View file

@ -73,7 +73,7 @@ export class Egoi implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all members', description: 'Get many members',
action: 'Get many members', action: 'Get many members',
}, },
{ {

View file

@ -27,7 +27,7 @@ export const caseCommentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all case comments', description: 'Retrieve many case comments',
action: 'Get many case comments', action: 'Get many case comments',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const caseOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all cases', description: 'Retrieve many cases',
action: 'Get many cases', action: 'Get many cases',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const documentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all documents', description: 'Get many documents',
action: 'Get many documents', action: 'Get many documents',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const taskOpeations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all the tasks', description: 'Get many tasks',
action: 'Get many tasks', action: 'Get many tasks',
}, },
], ],

View file

@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts', description: 'Get many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -144,7 +144,7 @@ export class Freshdesk implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tickets', description: 'Get many tickets',
action: 'Get many tickets', action: 'Get many tickets',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const agentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all agents', description: 'Retrieve many agents',
action: 'Get many agents', action: 'Get many agents',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const agentGroupOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all agent groups', description: 'Retrieve many agent groups',
action: 'Get many agent groups', action: 'Get many agent groups',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const agentRoleOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all agent roles', description: 'Retrieve many agent roles',
action: 'Get many agent roles', action: 'Get many agent roles',
}, },
], ],

View file

@ -33,7 +33,7 @@ export const announcementOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all announcements', description: 'Retrieve many announcements',
action: 'Get many announcements', action: 'Get many announcements',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const assetOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all assets', description: 'Retrieve many assets',
action: 'Get many assets', action: 'Get many assets',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const assetTypeOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all asset types', description: 'Retrieve many asset types',
action: 'Get many asset types', action: 'Get many asset types',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const changeOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all changes', description: 'Retrieve many changes',
action: 'Get many changes', action: 'Get many changes',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const departmentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all departments', description: 'Retrieve many departments',
action: 'Get many departments', action: 'Get many departments',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const locationOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all locations', description: 'Retrieve many locations',
action: 'Get many locations', action: 'Get many locations',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const problemOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all problems', description: 'Retrieve many problems',
action: 'Get many problems', action: 'Get many problems',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const productOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all products', description: 'Retrieve many products',
action: 'Get many products', action: 'Get many products',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const releaseOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all releases', description: 'Retrieve many releases',
action: 'Get many releases', action: 'Get many releases',
}, },
{ {

View file

@ -34,7 +34,7 @@ export const requesterOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all requesters', description: 'Retrieve many requesters',
action: 'Get many requesters', action: 'Get many requesters',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const requesterGroupOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all requester groups', description: 'Retrieve many requester groups',
action: 'Get many requester groups', action: 'Get many requester groups',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const softwareOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all software applications', description: 'Retrieve many software applications',
action: 'Get many software applications', action: 'Get many software applications',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const ticketOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all tickets', description: 'Retrieve many tickets',
action: 'Get many tickets', action: 'Get many tickets',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const accountOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all accounts', description: 'Retrieve many accounts',
action: 'Get many accounts', action: 'Get many accounts',
}, },
{ {

View file

@ -35,7 +35,7 @@ export const appointmentOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all appointments', description: 'Retrieve many appointments',
action: 'Get many appointments', action: 'Get many appointments',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all contacts', description: 'Retrieve many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const dealOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all deals', description: 'Retrieve many deals',
action: 'Get many deals', action: 'Get many deals',
}, },
{ {

View file

@ -31,7 +31,7 @@ export const salesActivityOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all sales activities', description: 'Retrieve many sales activities',
action: 'Get many sales activities', action: 'Get many sales activities',
}, },
// { // {

View file

@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Retrieve all tasks', description: 'Retrieve many tasks',
action: 'Get many tasks', action: 'Get many tasks',
}, },
{ {

View file

@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts', description: 'Get many contacts',
action: 'Get many contacts', action: 'Get many contacts',
}, },
{ {

View file

@ -22,7 +22,7 @@ export const postOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all posts', description: 'Get many posts',
action: 'Get many posts', action: 'Get many posts',
}, },
], ],
@ -61,7 +61,7 @@ export const postOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all posts', description: 'Get many posts',
action: 'Get many posts', action: 'Get many posts',
}, },
{ {

View file

@ -328,7 +328,7 @@ export class Github implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all repository releases', description: 'Get many repository releases',
action: 'Get many releases', action: 'Get many releases',
}, },
{ {
@ -367,7 +367,7 @@ export class Github implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all reviews for a pull request', description: 'Get many reviews for a pull request',
action: 'Get many reviews', action: 'Get many reviews',
}, },
{ {

View file

@ -215,7 +215,7 @@ export class Gitlab implements INodeType {
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all releases', description: 'Get many releases',
action: 'Get many releases', action: 'Get many releases',
}, },
{ {

View file

@ -21,7 +21,7 @@ export const campaignOperations: INodeProperties[] = [
{ {
name: 'Get Many', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all the campaigns linked to the specified account', description: 'Get many campaigns linked to the specified account',
routing: { routing: {
request: { request: {
method: 'POST', method: 'POST',

Some files were not shown because too many files have changed in this diff Show more