refactor(nodes-base): Apply lint rule node-param-option-name-wrong-for-get-many (#4051)

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Substitute rule

* 👕 Apply lintfix for `node-param-option-name-wrong-for-get-many`

* 👕 Restore lint exceptions
This commit is contained in:
Iván Ovejero 2022-09-07 16:51:14 +02:00 committed by GitHub
parent b020811ac1
commit ca8c2d6577
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
456 changed files with 2043 additions and 2187 deletions

View file

@ -459,7 +459,7 @@ module.exports = {
'n8n-nodes-base/node-param-option-description-identical-to-name': 'error', 'n8n-nodes-base/node-param-option-description-identical-to-name': 'error',
'n8n-nodes-base/node-param-option-name-containing-star': 'error', 'n8n-nodes-base/node-param-option-name-containing-star': 'error',
'n8n-nodes-base/node-param-option-name-duplicate': 'error', 'n8n-nodes-base/node-param-option-name-duplicate': 'error',
'n8n-nodes-base/node-param-option-name-wrong-for-get-all': 'error', 'n8n-nodes-base/node-param-option-name-wrong-for-get-many': 'error',
'n8n-nodes-base/node-param-option-name-wrong-for-upsert': 'error', 'n8n-nodes-base/node-param-option-name-wrong-for-upsert': 'error',
'n8n-nodes-base/node-param-option-value-duplicate': 'error', 'n8n-nodes-base/node-param-option-value-duplicate': 'error',
'n8n-nodes-base/node-param-options-type-unsorted-items': 'error', 'n8n-nodes-base/node-param-options-type-unsorted-items': 'error',

3173
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -25,7 +25,7 @@ export const attendanceOperations: INodeProperties[] = [
action: 'Get an attendance', action: 'Get an attendance',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all attendances', action: 'Get all attendances',
}, },

View file

@ -25,7 +25,7 @@ export const eventOperations: INodeProperties[] = [
action: 'Get an event', action: 'Get an event',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all events', action: 'Get all events',
}, },

View file

@ -25,7 +25,7 @@ export const personOperations: INodeProperties[] = [
action: 'Get a person', action: 'Get a person',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all people', action: 'Get all people',
}, },

View file

@ -25,7 +25,7 @@ export const petitionOperations: INodeProperties[] = [
action: 'Get a petition', action: 'Get a petition',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all petitions', action: 'Get all petitions',
}, },

View file

@ -25,7 +25,7 @@ export const signatureOperations: INodeProperties[] = [
action: 'Get a signature', action: 'Get a signature',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all signatures', action: 'Get all signatures',
}, },

View file

@ -25,7 +25,7 @@ export const tagOperations: INodeProperties[] = [
action: 'Get a tag', action: 'Get a tag',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all tags', action: 'Get all tags',
}, },

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -143,7 +143,7 @@ export class Asana implements INodeType {
action: 'Create a subtask', action: 'Create a subtask',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all substasks', description: 'Get all substasks',
action: 'Get all subtasks', action: 'Get all subtasks',
@ -391,7 +391,7 @@ export class Asana implements INodeType {
action: 'Get a task', action: 'Get a task',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tasks', description: 'Get all tasks',
action: 'Get all tasks', action: 'Get all tasks',
@ -1270,7 +1270,7 @@ export class Asana implements INodeType {
action: 'Get a user', action: 'Get a user',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all users', description: 'Get all users',
action: 'Get all users', action: 'Get all users',
@ -1355,7 +1355,7 @@ export class Asana implements INodeType {
action: 'Get a project', action: 'Get a project',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all projects', description: 'Get all projects',
action: 'Get all projects', action: 'Get all projects',

View file

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

View file

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

View file

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

View file

@ -25,7 +25,7 @@ export const contactListOperations: INodeProperties[] = [
action: 'Check if a contact list exists', action: 'Check if a contact list exists',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all contacts on list', description: 'Get all contacts on list',
action: 'Get all contact lists', action: 'Get all contact lists',

View file

@ -19,7 +19,7 @@ export const listOperations: INodeProperties[] = [
action: 'Create a list', action: 'Create a list',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all lists', description: 'Get all lists',
action: 'Get all lists', action: 'Get all lists',

View file

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

View file

@ -25,7 +25,7 @@ export const bucketOperations: INodeProperties[] = [
action: 'Delete a bucket', action: 'Delete a bucket',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all buckets', description: 'Get all buckets',
action: 'Get all buckets', action: 'Get all buckets',

View file

@ -31,7 +31,7 @@ export const fileOperations: INodeProperties[] = [
action: 'Download a file', action: 'Download a file',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all files', description: 'Get all files',
action: 'Get all files', action: 'Get all files',

View file

@ -25,7 +25,7 @@ export const folderOperations: INodeProperties[] = [
action: 'Delete a folder', action: 'Delete a folder',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all folders', description: 'Get all folders',
action: 'Get all folders', action: 'Get all folders',

View file

@ -90,7 +90,7 @@ export class AwsSes implements INodeType {
action: 'Get a custom verification email', action: 'Get a custom verification email',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: description:
'Get all the existing custom verification email templates for your account', 'Get all the existing custom verification email templates for your account',
@ -647,7 +647,7 @@ export class AwsSes implements INodeType {
action: 'Get a template', action: 'Get a template',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all templates', description: 'Get all templates',
action: 'Get all templates', action: 'Get all templates',

View file

@ -63,7 +63,7 @@ export class AwsTranscribe implements INodeType {
action: 'Get a transcription job', action: 'Get a transcription job',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all transcription jobs', description: 'Get all transcription jobs',
action: 'Get all transcription jobs', action: 'Get all transcription jobs',

View file

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

View file

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

View file

@ -33,7 +33,7 @@ export const descriptions: INodeProperties[] = [
action: 'Download a file', action: 'Download a file',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all company files', description: 'Get all company files',
action: 'Get all files', action: 'Get all files',

View file

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

View file

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

View file

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

View file

@ -19,7 +19,7 @@ export const collectionOperations: INodeProperties[] = [
action: 'Get a collection', action: 'Get a collection',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all collections', action: 'Get all collections',
}, },

View file

@ -9,7 +9,7 @@ export const eventOperations: INodeProperties[] = [
default: 'get', default: 'get',
options: [ options: [
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all events', action: 'Get all events',
}, },

View file

@ -24,7 +24,7 @@ export const groupOperations: INodeProperties[] = [
action: 'Get a group', action: 'Get a group',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all groups', action: 'Get all groups',
}, },

View file

@ -23,16 +23,16 @@ export const memberOperations: INodeProperties[] = [
value: 'get', value: 'get',
action: 'Get a member', action: 'Get a member',
}, },
{
name: 'Get All',
value: 'getAll',
action: 'Get all members',
},
{ {
name: 'Get Groups', name: 'Get Groups',
value: 'getGroups', value: 'getGroups',
action: 'Get groups for a member', action: 'Get groups for a member',
}, },
{
name: 'Get Many',
value: 'getAll',
action: 'Get all members',
},
{ {
name: 'Update', name: 'Update',
value: 'update', value: 'update',

View file

@ -24,7 +24,7 @@ export const objectOperations: INodeProperties[] = [
action: 'Get an object', action: 'Get an object',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all objects', action: 'Get all objects',
}, },

View file

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

View file

@ -28,7 +28,7 @@ export const meetingOperations: INodeProperties[] = [
action: 'Get a meeting', action: 'Get a meeting',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all meetings', action: 'Get all meetings',
}, },

View file

@ -18,7 +18,7 @@ export const meetingTranscriptOperations: INodeProperties[] = [
action: 'Download a meeting transcript', action: 'Download a meeting transcript',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all meeting transcripts', action: 'Get all meeting transcripts',
}, },

View file

@ -34,7 +34,7 @@ export const messageOperations: INodeProperties[] = [
action: 'Get a message', action: 'Get a message',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all messages', action: 'Get all messages',
}, },

View file

@ -25,7 +25,7 @@ export const commentOperations: INodeProperties[] = [
action: 'Delete a comment', action: 'Delete a comment',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all comments', description: 'Get all comments',
action: 'Get all comments', action: 'Get all comments',

View file

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

View file

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

View file

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

View file

@ -25,7 +25,7 @@ export const spaceTagOperations: INodeProperties[] = [
action: 'Delete a space tag', action: 'Delete a space tag',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all space tags', description: 'Get all space tags',
action: 'Get all space tags', action: 'Get all space tags',

View file

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

View file

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

View file

@ -19,7 +19,7 @@ export const timeEntryTagOperations: INodeProperties[] = [
action: 'Add a time entry tag', action: 'Add a time entry tag',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all time entry tags', description: 'Get all time entry tags',
action: 'Get all time entry tags', action: 'Get all time entry tags',

View file

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

View file

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

View file

@ -25,7 +25,7 @@ export const tagOperations: INodeProperties[] = [
action: 'Delete a tag', action: 'Delete a tag',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tags', description: 'Get all tags',
action: 'Get all tags', action: 'Get all tags',

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -24,18 +24,18 @@ export const viewOperations: INodeProperties[] = [
description: 'Get a view', description: 'Get a view',
action: 'Get a view', action: 'Get a view',
}, },
{
name: 'Get All',
value: 'getAll',
description: 'Get all views',
action: 'Get all views',
},
{ {
name: 'Get Columns', name: 'Get Columns',
value: 'getAllViewColumns', value: 'getAllViewColumns',
description: 'Get all views columns', description: 'Get all views columns',
action: 'Get all view columns', action: 'Get all view columns',
}, },
{
name: 'Get Many',
value: 'getAll',
description: 'Get all views',
action: 'Get all views',
},
{ {
name: 'Get Rows', name: 'Get Rows',
value: 'getAllViewRows', value: 'getAllViewRows',

View file

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

View file

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

View file

@ -22,7 +22,7 @@ export const operations: INodeProperties[] = [
value: 'get', value: 'get',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
}, },
], ],

View file

@ -22,7 +22,7 @@ export const operations: INodeProperties[] = [
value: 'get', value: 'get',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
}, },
], ],

View file

@ -18,7 +18,7 @@ export const operations: INodeProperties[] = [
}, },
options: [ options: [
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
}, },
], ],

View file

@ -25,7 +25,7 @@ export const customFieldOperations: INodeProperties[] = [
action: 'Delete a custom field', action: 'Delete a custom field',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all fields', description: 'Get all fields',
action: 'Get all custom fields', action: 'Get all custom fields',

View file

@ -19,7 +19,7 @@ export const formOperations: INodeProperties[] = [
action: 'Add a subscriber', action: 'Add a subscriber',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all forms', description: 'Get all forms',
action: 'Get all forms', action: 'Get all forms',

View file

@ -19,7 +19,7 @@ export const sequenceOperations: INodeProperties[] = [
action: 'Add a subscriber', action: 'Add a subscriber',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all sequences', description: 'Get all sequences',
action: 'Get all sequences', action: 'Get all sequences',

View file

@ -19,7 +19,7 @@ export const tagOperations: INodeProperties[] = [
action: 'Create a tag', action: 'Create a tag',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all tags', description: 'Get all tags',
action: 'Get all tags', action: 'Get all tags',

View file

@ -19,7 +19,7 @@ export const tagSubscriberOperations: INodeProperties[] = [
action: 'Add a tag to a subscriber', action: 'Add a tag to a subscriber',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'List subscriptions to a tag including subscriber data', description: 'List subscriptions to a tag including subscriber data',
action: 'Get all tag subscriptions', action: 'Get all tag subscriptions',

View file

@ -32,7 +32,7 @@ export const companyOperations: INodeProperties[] = [
action: 'Get a company', action: 'Get a company',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all companies', action: 'Get all companies',
}, },

View file

@ -13,7 +13,7 @@ export const customerSourceOperations: INodeProperties[] = [
}, },
options: [ options: [
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all customer sources', action: 'Get all customer sources',
}, },

View file

@ -34,7 +34,7 @@ export const leadOperations: INodeProperties[] = [
action: 'Get a lead', action: 'Get a lead',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all leads', action: 'Get all leads',
}, },

View file

@ -28,7 +28,7 @@ export const opportunityOperations: INodeProperties[] = [
action: 'Get an opportunity', action: 'Get an opportunity',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all opportunities', action: 'Get all opportunities',
}, },

View file

@ -34,7 +34,7 @@ export const personOperations: INodeProperties[] = [
action: 'Get a person', action: 'Get a person',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all people', action: 'Get all people',
}, },

View file

@ -28,7 +28,7 @@ export const projectOperations: INodeProperties[] = [
action: 'Get a project', action: 'Get a project',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all projects', action: 'Get all projects',
}, },

View file

@ -28,7 +28,7 @@ export const taskOperations: INodeProperties[] = [
action: 'Get a task', action: 'Get a task',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all tasks', action: 'Get all tasks',
}, },

View file

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

View file

@ -18,7 +18,7 @@ export const campaignOperations: INodeProperties[] = [
action: 'Get a campaign', action: 'Get a campaign',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all campaigns', action: 'Get all campaigns',
}, },

View file

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

View file

@ -21,7 +21,7 @@ export const categoryOperations: INodeProperties[] = [
action: 'Create a category', action: 'Create a category',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all categories', description: 'Get all categories',
action: 'Get all categories', action: 'Get all categories',

View file

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

View file

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

View file

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

View file

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

View file

@ -71,7 +71,7 @@ export class Egoi implements INodeType {
action: 'Get a member', action: 'Get a member',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
description: 'Get all members', description: 'Get all members',
action: 'Get all members', action: 'Get all members',

View file

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

View file

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

View file

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

View file

@ -30,7 +30,7 @@ export const indexOperations: INodeProperties[] = [
action: 'Get an index', action: 'Get an index',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all indices', action: 'Get all indices',
}, },

View file

@ -29,7 +29,7 @@ export const campaignOperations: INodeProperties[] = [
action: 'Get a campaign', action: 'Get a campaign',
}, },
{ {
name: 'Get All', name: 'Get Many',
value: 'getAll', value: 'getAll',
action: 'Get all campaigns', action: 'Get all campaigns',
}, },

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