mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
refactor(nodes-base): Apply lint rule node-param-operation-option-action-wrong-for-get-many (#4055)
* 👕 Apply `node-param-operation-option-action-wrong-for-get-many` * 🔥 Remove `package-lock.json` * 📦 Re-add `package-lock.json` * ⚡ master update Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -27,7 +27,7 @@ export const attendanceOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all attendances',
|
||||
action: 'Get many attendances',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -27,7 +27,7 @@ export const eventOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -27,7 +27,7 @@ export const personOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all people',
|
||||
action: 'Get many people',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -27,7 +27,7 @@ export const petitionOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all petitions',
|
||||
action: 'Get many petitions',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -27,7 +27,7 @@ export const signatureOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all signatures',
|
||||
action: 'Get many signatures',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -27,7 +27,7 @@ export const tagOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const accountOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all accounts',
|
||||
action: 'Get all accounts',
|
||||
action: 'Get many accounts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const connectionOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all connections',
|
||||
action: 'Get all connections',
|
||||
action: 'Get many connections',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const contactOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all contact',
|
||||
action: 'Get all contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -44,7 +44,7 @@ export const dealOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all deals',
|
||||
action: 'Get all deals',
|
||||
action: 'Get many deals',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const ecomCustomerOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all E-commerce Customer',
|
||||
action: 'Get all e-commerce customers',
|
||||
action: 'Get many e-commerce customers',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -38,7 +38,7 @@ export const ecomOrderOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all orders',
|
||||
action: 'Get all e-commerce orders',
|
||||
action: 'Get many e-commerce orders',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -18,7 +18,7 @@ export const ecomOrderProductsOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all order products',
|
||||
action: 'Get all ecommerce orders',
|
||||
action: 'Get many ecommerce orders',
|
||||
},
|
||||
{
|
||||
name: 'Get by Product ID',
|
||||
|
||||
@@ -18,7 +18,7 @@ export const listOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
action: 'Get all lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const tagOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all tags',
|
||||
action: 'Get all tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const listOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
action: 'Get all lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const listEntryOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all list entries',
|
||||
action: 'Get all list entries',
|
||||
action: 'Get many list entries',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const organizationOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all organizations',
|
||||
action: 'Get all organizations',
|
||||
action: 'Get many organizations',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const personOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all persons',
|
||||
action: 'Get all people',
|
||||
action: 'Get many people',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const companyOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all companies',
|
||||
action: 'Get all companies',
|
||||
action: 'Get many companies',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
action: 'Get all contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const dealOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all deals',
|
||||
action: 'Get all deals',
|
||||
action: 'Get many deals',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -146,7 +146,7 @@ export class Asana implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all substasks',
|
||||
action: 'Get all subtasks',
|
||||
action: 'Get many subtasks',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
@@ -394,7 +394,7 @@ export class Asana implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
action: 'Get all tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
name: 'Move',
|
||||
@@ -1273,7 +1273,7 @@ export class Asana implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
action: 'Get all users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
@@ -1358,7 +1358,7 @@ export class Asana implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all projects',
|
||||
action: 'Get all projects',
|
||||
action: 'Get many projects',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const contactOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
action: 'Get all contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const listOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
action: 'Get all lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -35,7 +35,7 @@ export const contactOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
action: 'Get all contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
],
|
||||
default: 'upsert',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const contactListOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts on list',
|
||||
action: 'Get all contact lists',
|
||||
action: 'Get many contact lists',
|
||||
},
|
||||
{
|
||||
name: 'Remove',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const listOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
action: 'Get all lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const itemOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all items',
|
||||
action: 'Get all items',
|
||||
action: 'Get many items',
|
||||
},
|
||||
],
|
||||
default: 'upsert',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const bucketOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all buckets',
|
||||
action: 'Get all buckets',
|
||||
action: 'Get many buckets',
|
||||
},
|
||||
{
|
||||
name: 'Search',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const fileOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all files',
|
||||
action: 'Get all files',
|
||||
action: 'Get many files',
|
||||
},
|
||||
{
|
||||
name: 'Upload',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const folderOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all folders',
|
||||
action: 'Get all folders',
|
||||
action: 'Get many folders',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -94,7 +94,7 @@ export class AwsSes implements INodeType {
|
||||
value: 'getAll',
|
||||
description:
|
||||
'Get all the existing custom verification email templates for your account',
|
||||
action: 'Get all custom verifications',
|
||||
action: 'Get many custom verifications',
|
||||
},
|
||||
{
|
||||
name: 'Send',
|
||||
@@ -650,7 +650,7 @@ export class AwsSes implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all templates',
|
||||
action: 'Get all templates',
|
||||
action: 'Get many templates',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -66,7 +66,7 @@ export class AwsTranscribe implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all transcription jobs',
|
||||
action: 'Get all transcription jobs',
|
||||
action: 'Get many transcription jobs',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -35,7 +35,7 @@ export const descriptions: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all employees',
|
||||
action: 'Get all employees',
|
||||
action: 'Get many employees',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const descriptions: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all employee document',
|
||||
action: 'Get all employee documents',
|
||||
action: 'Get many employee documents',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const descriptions: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all company files',
|
||||
action: 'Get all files',
|
||||
action: 'Get many files',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const templateOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all templates',
|
||||
action: 'Get all templates',
|
||||
action: 'Get many templates',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -94,7 +94,7 @@ export class Baserow implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all rows',
|
||||
action: 'Get all rows',
|
||||
action: 'Get many rows',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -79,7 +79,7 @@ export class Beeminder implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all datapoints for a goal',
|
||||
action: 'Get all datapoints for a goal',
|
||||
action: 'Get many datapoints for a goal',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -21,7 +21,7 @@ export const collectionOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all collections',
|
||||
action: 'Get many collections',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -11,7 +11,7 @@ export const eventOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
||||
@@ -26,7 +26,7 @@ export const groupOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all groups',
|
||||
action: 'Get many groups',
|
||||
},
|
||||
{
|
||||
name: 'Get Members',
|
||||
|
||||
@@ -31,7 +31,7 @@ export const memberOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all members',
|
||||
action: 'Get many members',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -26,7 +26,7 @@ export const objectOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all objects',
|
||||
action: 'Get many objects',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const pipelineOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all pipelines',
|
||||
action: 'Get all pipelines',
|
||||
action: 'Get many pipelines',
|
||||
},
|
||||
{
|
||||
name: 'Trigger',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const meetingOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all meetings',
|
||||
action: 'Get many meetings',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -20,7 +20,7 @@ export const meetingTranscriptOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all meeting transcripts',
|
||||
action: 'Get many meeting transcripts',
|
||||
},
|
||||
],
|
||||
default: 'download',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const messageOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all messages',
|
||||
action: 'Get many messages',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const commentOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all comments',
|
||||
action: 'Get all comments',
|
||||
action: 'Get many comments',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const folderOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all folders',
|
||||
action: 'Get all folders',
|
||||
action: 'Get many folders',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const goalOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all goals',
|
||||
action: 'Get all goals',
|
||||
action: 'Get many goals',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -40,7 +40,7 @@ export const listOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all lists',
|
||||
action: 'Get all lists',
|
||||
action: 'Get many lists',
|
||||
},
|
||||
{
|
||||
name: 'Member',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const spaceTagOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all space tags',
|
||||
action: 'Get all space tags',
|
||||
action: 'Get many space tags',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const taskOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
action: 'Get all tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
name: 'Member',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const timeEntryOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all time entries',
|
||||
action: 'Get all time entries',
|
||||
action: 'Get many time entries',
|
||||
},
|
||||
{
|
||||
name: 'Start',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const timeEntryTagOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all time entry tags',
|
||||
action: 'Get all time entry tags',
|
||||
action: 'Get many time entry tags',
|
||||
},
|
||||
{
|
||||
name: 'Remove',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const clientOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all clients',
|
||||
action: 'Get all clients',
|
||||
action: 'Get many clients',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const projectOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all projects',
|
||||
action: 'Get all projects',
|
||||
action: 'Get many projects',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const tagOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tags',
|
||||
action: 'Get all tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const taskOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tasks',
|
||||
action: 'Get all tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -16,7 +16,7 @@ export const userOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
action: 'Get all users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -16,7 +16,7 @@ export const workspaceOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all workspaces',
|
||||
action: 'Get all workspaces',
|
||||
action: 'Get many workspaces',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -23,7 +23,7 @@ export const collectionOperations: INodeProperties[] = [
|
||||
name: 'Get Many Entries',
|
||||
value: 'getAll',
|
||||
description: 'Get all collection entries',
|
||||
action: 'Get all collection entries',
|
||||
action: 'Get many collection entries',
|
||||
},
|
||||
{
|
||||
name: 'Update an Entry',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const controlOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all controls',
|
||||
action: 'Get all controls',
|
||||
action: 'Get many controls',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const formulaOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all formulas',
|
||||
action: 'Get all formulas',
|
||||
action: 'Get many formulas',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const viewOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all views',
|
||||
action: 'Get all views',
|
||||
action: 'Get many views',
|
||||
},
|
||||
{
|
||||
name: 'Get Rows',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const coinOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all coins',
|
||||
action: 'Get all coins',
|
||||
action: 'Get many coins',
|
||||
},
|
||||
{
|
||||
name: 'History',
|
||||
|
||||
@@ -16,7 +16,7 @@ export const eventOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all events',
|
||||
action: 'Get all events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const customFieldOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all fields',
|
||||
action: 'Get all custom fields',
|
||||
action: 'Get many custom fields',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const formOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all forms',
|
||||
action: 'Get all forms',
|
||||
action: 'Get many forms',
|
||||
},
|
||||
{
|
||||
name: 'Get Subscriptions',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const sequenceOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all sequences',
|
||||
action: 'Get all sequences',
|
||||
action: 'Get many sequences',
|
||||
},
|
||||
{
|
||||
name: 'Get Subscriptions',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const tagOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tags',
|
||||
action: 'Get all tags',
|
||||
action: 'Get many tags',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const tagSubscriberOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'List subscriptions to a tag including subscriber data',
|
||||
action: 'Get all tag subscriptions',
|
||||
action: 'Get many tag subscriptions',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const companyOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all companies',
|
||||
action: 'Get many companies',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -15,7 +15,7 @@ export const customerSourceOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all customer sources',
|
||||
action: 'Get many customer sources',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const leadOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all leads',
|
||||
action: 'Get many leads',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const opportunityOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all opportunities',
|
||||
action: 'Get many opportunities',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const personOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all people',
|
||||
action: 'Get many people',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const projectOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all projects',
|
||||
action: 'Get many projects',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const taskOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -15,7 +15,7 @@ export const userOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
@@ -20,7 +20,7 @@ export const campaignOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all campaigns',
|
||||
action: 'Get many campaigns',
|
||||
},
|
||||
{
|
||||
name: 'Get Metrics',
|
||||
|
||||
@@ -22,7 +22,7 @@ export const eventOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all events',
|
||||
action: 'Get all events',
|
||||
action: 'Get many events',
|
||||
},
|
||||
{
|
||||
name: 'Register',
|
||||
|
||||
@@ -24,7 +24,7 @@ export const categoryOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all categories',
|
||||
action: 'Get all categories',
|
||||
action: 'Get many categories',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const groupOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all groups',
|
||||
action: 'Get all groups',
|
||||
action: 'Get many groups',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const postOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all posts',
|
||||
action: 'Get all posts',
|
||||
action: 'Get many posts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -30,7 +30,7 @@ export const userOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all users',
|
||||
action: 'Get all users',
|
||||
action: 'Get many users',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const documentOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all documents',
|
||||
action: 'Get all documents',
|
||||
action: 'Get many documents',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -74,7 +74,7 @@ export class Egoi implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all members',
|
||||
action: 'Get all members',
|
||||
action: 'Get many members',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -28,7 +28,7 @@ export const caseCommentOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all case comments',
|
||||
action: 'Get all case comments',
|
||||
action: 'Get many case comments',
|
||||
},
|
||||
{
|
||||
name: 'Remove',
|
||||
|
||||
@@ -34,7 +34,7 @@ export const caseOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all cases',
|
||||
action: 'Get all cases',
|
||||
action: 'Get many cases',
|
||||
},
|
||||
{
|
||||
name: 'Get Status',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const documentOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all documents',
|
||||
action: 'Get all documents',
|
||||
action: 'Get many documents',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -32,7 +32,7 @@ export const indexOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all indices',
|
||||
action: 'Get many indices',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -31,7 +31,7 @@ export const campaignOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all campaigns',
|
||||
action: 'Get many campaigns',
|
||||
},
|
||||
{
|
||||
name: 'Pause',
|
||||
|
||||
@@ -16,7 +16,7 @@ export const contactListOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get all contact lists',
|
||||
action: 'Get many contact lists',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
||||
@@ -34,7 +34,7 @@ export const taskOpeations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all the tasks',
|
||||
action: 'Get all tasks',
|
||||
action: 'Get many tasks',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
@@ -35,7 +35,7 @@ export const contactOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all contacts',
|
||||
action: 'Get all contacts',
|
||||
action: 'Get many contacts',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -145,7 +145,7 @@ export class Freshdesk implements INodeType {
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all tickets',
|
||||
action: 'Get all tickets',
|
||||
action: 'Get many tickets',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -36,7 +36,7 @@ export const agentOperations: INodeProperties[] = [
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Retrieve all agents',
|
||||
action: 'Get all agents',
|
||||
action: 'Get many agents',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user