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

@@ -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',

View File

@@ -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',

View File

@@ -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',

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: 'Update',

View File

@@ -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',

View File

@@ -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',