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-name-containing-star': '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-value-duplicate': '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',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
action: 'Get all attendances',
},

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -76,7 +76,7 @@ export class Beeminder implements INodeType {
action: 'Delete a datapoint',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: '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',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
action: 'Get all collections',
},

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -31,7 +31,7 @@ export const timeEntryOperations: INodeProperties[] = [
action: 'Get a time entry',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: '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',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: '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',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: 'Get all clients',
action: 'Get all clients',

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

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