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:
Iván Ovejero
2022-09-08 17:10:13 +02:00
committed by GitHub
parent 74304db4e2
commit d4f858db92
446 changed files with 622 additions and 638 deletions

View File

@@ -47,7 +47,7 @@ export const accountOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all accounts',
action: 'Get all accounts',
action: 'Get many accounts',
},
{
name: 'Get Summary',

View File

@@ -34,7 +34,7 @@ export const attachmentOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all attachments',
action: 'Get all attachments',
action: 'Get many attachments',
},
{
name: 'Get Summary',

View File

@@ -40,7 +40,7 @@ export const caseOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all cases',
action: 'Get all cases',
action: 'Get many cases',
},
{
name: 'Get Summary',

View File

@@ -53,7 +53,7 @@ export const contactOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all contacts',
action: 'Get all contacts',
action: 'Get many contacts',
},
{
name: 'Get Summary',

View File

@@ -40,7 +40,7 @@ export const customObjectOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all custom object records',
action: 'Get all custom objects',
action: 'Get many custom objects',
},
{
name: 'Update',

View File

@@ -16,7 +16,7 @@ export const flowOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all flows',
action: 'Get all flows',
action: 'Get many flows',
},
{
name: 'Invoke',

View File

@@ -52,7 +52,7 @@ export const leadOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all leads',
action: 'Get all leads',
action: 'Get many leads',
},
{
name: 'Get Summary',

View File

@@ -47,7 +47,7 @@ export const opportunityOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all opportunities',
action: 'Get all opportunities',
action: 'Get many opportunities',
},
{
name: 'Get Summary',

View File

@@ -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: 'Get Summary',

View File

@@ -22,7 +22,7 @@ export const userOperations: INodeProperties[] = [
name: 'Get Many',
value: 'getAll',
description: 'Get all users',
action: 'Get all users',
action: 'Get many users',
},
],
default: 'get',