mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
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:
parent
9f92a4d681
commit
3a9c7acb04
|
@ -147,6 +147,7 @@ module.exports = {
|
|||
'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-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-without-no-data-expression': 'error',
|
||||
'n8n-nodes-base/node-param-option-description-identical-to-name': 'error',
|
||||
|
|
|
@ -35,7 +35,7 @@ export const accountOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all accounts',
|
||||
description: 'Get data of many accounts',
|
||||
action: 'Get many accounts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const connectionOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all connections',
|
||||
description: 'Get data of many connections',
|
||||
action: 'Get many connections',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all contact',
|
||||
description: 'Get data of many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -43,7 +43,7 @@ export const dealOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all deals',
|
||||
description: 'Get data of many deals',
|
||||
action: 'Get many deals',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const ecomCustomerOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all E-commerce Customer',
|
||||
description: 'Get data of many E-commerce Customers',
|
||||
action: 'Get many e-commerce customers',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ export const ecomOrderOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all orders',
|
||||
description: 'Get data of many orders',
|
||||
action: 'Get many e-commerce orders',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ export const ecomOrderProductsOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all order products',
|
||||
description: 'Get data of many order products',
|
||||
action: 'Get many ecommerce orders',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ export const listOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
description: 'Get many lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -35,7 +35,7 @@ export const tagOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all tags',
|
||||
description: 'Get data of many tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const listOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
description: 'Get many lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const listEntryOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all list entries',
|
||||
description: 'Get many list entries',
|
||||
action: 'Get many list entries',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const organizationOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all organizations',
|
||||
description: 'Get many organizations',
|
||||
action: 'Get many organizations',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const personOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all persons',
|
||||
description: 'Get many persons',
|
||||
action: 'Get many people',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const companyOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all companies',
|
||||
description: 'Get many companies',
|
||||
action: 'Get many companies',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
description: 'Get many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const dealOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all deals',
|
||||
description: 'Get many deals',
|
||||
action: 'Get many deals',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -145,7 +145,7 @@ export class Asana implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all substasks',
|
||||
description: 'Get many substasks',
|
||||
action: 'Get many subtasks',
|
||||
},
|
||||
],
|
||||
|
@ -393,7 +393,7 @@ export class Asana implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
description: 'Get many tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
|
@ -1272,7 +1272,7 @@ export class Asana implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
description: 'Get many users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
|
@ -1357,7 +1357,7 @@ export class Asana implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all projects',
|
||||
description: 'Get many projects',
|
||||
action: 'Get many projects',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
description: 'Get many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const listOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
description: 'Get many lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
description: 'Get many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -27,7 +27,7 @@ export const contactListOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts on list',
|
||||
description: 'Get many contacts from a list',
|
||||
action: 'Get many contact lists',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const listOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
description: 'Get many lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const itemOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all items',
|
||||
description: 'Get many items',
|
||||
action: 'Get many items',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -27,7 +27,7 @@ export const bucketOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all buckets',
|
||||
description: 'Get many buckets',
|
||||
action: 'Get many buckets',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const fileOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all files',
|
||||
description: 'Get many files',
|
||||
action: 'Get many files',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const folderOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all folders',
|
||||
description: 'Get many folders',
|
||||
action: 'Get many folders',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -93,7 +93,7 @@ export class AwsSes implements INodeType {
|
|||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
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',
|
||||
},
|
||||
{
|
||||
|
@ -649,7 +649,7 @@ export class AwsSes implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all templates',
|
||||
description: 'Get many templates',
|
||||
action: 'Get many templates',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -65,7 +65,7 @@ export class AwsTranscribe implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all transcription jobs',
|
||||
description: 'Get many transcription jobs',
|
||||
action: 'Get many transcription jobs',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -34,7 +34,7 @@ export const descriptions: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all employees',
|
||||
description: 'Get many employees',
|
||||
action: 'Get many employees',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const descriptions: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all employee document',
|
||||
description: 'Get many employee documents',
|
||||
action: 'Get many employee documents',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const descriptions: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all company files',
|
||||
description: 'Get many company files',
|
||||
action: 'Get many files',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const templateOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all templates',
|
||||
description: 'Get many templates',
|
||||
action: 'Get many templates',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -93,7 +93,7 @@ export class Baserow implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all rows',
|
||||
description: 'Retrieve many rows',
|
||||
action: 'Get many rows',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -78,7 +78,7 @@ export class Beeminder implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all datapoints for a goal',
|
||||
description: 'Get many datapoints for a goal',
|
||||
action: 'Get many datapoints for a goal',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const pipelineOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all pipelines',
|
||||
description: 'Get many pipelines',
|
||||
action: 'Get many pipelines',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const commentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all comments',
|
||||
description: 'Get many comments',
|
||||
action: 'Get many comments',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const folderOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all folders',
|
||||
description: 'Get many folders',
|
||||
action: 'Get many folders',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const goalOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all goals',
|
||||
description: 'Get many goals',
|
||||
action: 'Get many goals',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -39,7 +39,7 @@ export const listOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
description: 'Get many lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const spaceTagOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all space tags',
|
||||
description: 'Get many space tags',
|
||||
action: 'Get many space tags',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
description: 'Get many tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const timeEntryOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all time entries',
|
||||
description: 'Get many time entries',
|
||||
action: 'Get many time entries',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const timeEntryTagOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all time entry tags',
|
||||
description: 'Get many time entry tags',
|
||||
action: 'Get many time entry tags',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const clientOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all clients',
|
||||
description: 'Get many clients',
|
||||
action: 'Get many clients',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const projectOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all projects',
|
||||
description: 'Get many projects',
|
||||
action: 'Get many projects',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const tagOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tags',
|
||||
description: 'Get many tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
description: 'Get many tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ export const userOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
description: 'Get many users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -15,7 +15,7 @@ export const workspaceOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all workspaces',
|
||||
description: 'Get many workspaces',
|
||||
action: 'Get many workspaces',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -22,7 +22,7 @@ export const collectionOperations: INodeProperties[] = [
|
|||
// 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',
|
||||
description: 'Get many collection entries',
|
||||
action: 'Get many collection entries',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const controlOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all controls',
|
||||
description: 'Get many controls',
|
||||
action: 'Get many controls',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -21,7 +21,7 @@ export const formulaOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all formulas',
|
||||
description: 'Get many formulas',
|
||||
action: 'Get many formulas',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const viewOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all views',
|
||||
description: 'Get many views',
|
||||
action: 'Get many views',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const coinOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all coins',
|
||||
description: 'Get many coins',
|
||||
action: 'Get many coins',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ export const eventOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all events',
|
||||
description: 'Get many events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -27,7 +27,7 @@ export const customFieldOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all fields',
|
||||
description: 'Get many fields',
|
||||
action: 'Get many custom fields',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const formOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all forms',
|
||||
description: 'Get many forms',
|
||||
action: 'Get many forms',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const sequenceOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all sequences',
|
||||
description: 'Get many sequences',
|
||||
action: 'Get many sequences',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const tagOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tags',
|
||||
description: 'Get many tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -21,7 +21,7 @@ export const eventOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all events',
|
||||
description: 'Get many events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -23,7 +23,7 @@ export const categoryOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all categories',
|
||||
description: 'Get many categories',
|
||||
action: 'Get many categories',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ export const groupOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all groups',
|
||||
description: 'Get many groups',
|
||||
action: 'Get many groups',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ export const postOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all posts',
|
||||
description: 'Get many posts',
|
||||
action: 'Get many posts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ export const userOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
description: 'Get many users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const documentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all documents',
|
||||
description: 'Retrieve many documents',
|
||||
action: 'Get many documents',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -73,7 +73,7 @@ export class Egoi implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all members',
|
||||
description: 'Get many members',
|
||||
action: 'Get many members',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ export const caseCommentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all case comments',
|
||||
description: 'Retrieve many case comments',
|
||||
action: 'Get many case comments',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const caseOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all cases',
|
||||
description: 'Retrieve many cases',
|
||||
action: 'Get many cases',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const documentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all documents',
|
||||
description: 'Get many documents',
|
||||
action: 'Get many documents',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const taskOpeations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all the tasks',
|
||||
description: 'Get many tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
description: 'Get many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -144,7 +144,7 @@ export class Freshdesk implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tickets',
|
||||
description: 'Get many tickets',
|
||||
action: 'Get many tickets',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const agentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all agents',
|
||||
description: 'Retrieve many agents',
|
||||
action: 'Get many agents',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const agentGroupOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all agent groups',
|
||||
description: 'Retrieve many agent groups',
|
||||
action: 'Get many agent groups',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const agentRoleOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all agent roles',
|
||||
description: 'Retrieve many agent roles',
|
||||
action: 'Get many agent roles',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -33,7 +33,7 @@ export const announcementOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all announcements',
|
||||
description: 'Retrieve many announcements',
|
||||
action: 'Get many announcements',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const assetOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all assets',
|
||||
description: 'Retrieve many assets',
|
||||
action: 'Get many assets',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const assetTypeOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all asset types',
|
||||
description: 'Retrieve many asset types',
|
||||
action: 'Get many asset types',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const changeOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all changes',
|
||||
description: 'Retrieve many changes',
|
||||
action: 'Get many changes',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const departmentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all departments',
|
||||
description: 'Retrieve many departments',
|
||||
action: 'Get many departments',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const locationOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all locations',
|
||||
description: 'Retrieve many locations',
|
||||
action: 'Get many locations',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const problemOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all problems',
|
||||
description: 'Retrieve many problems',
|
||||
action: 'Get many problems',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const productOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all products',
|
||||
description: 'Retrieve many products',
|
||||
action: 'Get many products',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const releaseOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all releases',
|
||||
description: 'Retrieve many releases',
|
||||
action: 'Get many releases',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -34,7 +34,7 @@ export const requesterOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all requesters',
|
||||
description: 'Retrieve many requesters',
|
||||
action: 'Get many requesters',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const requesterGroupOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all requester groups',
|
||||
description: 'Retrieve many requester groups',
|
||||
action: 'Get many requester groups',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const softwareOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all software applications',
|
||||
description: 'Retrieve many software applications',
|
||||
action: 'Get many software applications',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const ticketOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all tickets',
|
||||
description: 'Retrieve many tickets',
|
||||
action: 'Get many tickets',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const accountOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all accounts',
|
||||
description: 'Retrieve many accounts',
|
||||
action: 'Get many accounts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -35,7 +35,7 @@ export const appointmentOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all appointments',
|
||||
description: 'Retrieve many appointments',
|
||||
action: 'Get many appointments',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all contacts',
|
||||
description: 'Retrieve many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const dealOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all deals',
|
||||
description: 'Retrieve many deals',
|
||||
action: 'Get many deals',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@ export const salesActivityOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all sales activities',
|
||||
description: 'Retrieve many sales activities',
|
||||
action: 'Get many sales activities',
|
||||
},
|
||||
// {
|
||||
|
|
|
@ -33,7 +33,7 @@ export const taskOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all tasks',
|
||||
description: 'Retrieve many tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ export const contactOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
description: 'Get many contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ export const postOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all posts',
|
||||
description: 'Get many posts',
|
||||
action: 'Get many posts',
|
||||
},
|
||||
],
|
||||
|
@ -61,7 +61,7 @@ export const postOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all posts',
|
||||
description: 'Get many posts',
|
||||
action: 'Get many posts',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -328,7 +328,7 @@ export class Github implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all repository releases',
|
||||
description: 'Get many repository releases',
|
||||
action: 'Get many releases',
|
||||
},
|
||||
{
|
||||
|
@ -367,7 +367,7 @@ export class Github implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all reviews for a pull request',
|
||||
description: 'Get many reviews for a pull request',
|
||||
action: 'Get many reviews',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -215,7 +215,7 @@ export class Gitlab implements INodeType {
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all releases',
|
||||
description: 'Get many releases',
|
||||
action: 'Get many releases',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const campaignOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all the campaigns linked to the specified account',
|
||||
description: 'Get many campaigns linked to the specified account',
|
||||
routing: {
|
||||
request: {
|
||||
method: 'POST',
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue