mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
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:
parent
b020811ac1
commit
ca8c2d6577
|
@ -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
3173
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -22,7 +22,7 @@ export const operations: INodeProperties[] = [
|
||||||
value: 'get',
|
value: 'get',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get Many',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -22,7 +22,7 @@ export const operations: INodeProperties[] = [
|
||||||
value: 'get',
|
value: 'get',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get Many',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -18,7 +18,7 @@ export const operations: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get Many',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
Loading…
Reference in a new issue