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:
Iván Ovejero
2022-09-07 16:51:14 +02:00
committed by GitHub
parent b020811ac1
commit ca8c2d6577
456 changed files with 2043 additions and 2187 deletions

View File

@@ -190,7 +190,7 @@ export class TheHive implements INodeType {
description: 'Execute a responder on selected observable',
},
{
name: 'Get All',
name: 'Get Many',
value: 'getAll',
description: 'Get all observables of a specific case',
},
@@ -253,7 +253,7 @@ export class TheHive implements INodeType {
value: 'executeResponder',
description: 'Execute a responder on the specified task',
},
{ name: 'Get All', value: 'getAll', description: 'Get all asks of a specific case' },
{ name: 'Get Many', value: 'getAll', description: 'Get all asks of a specific case' },
{ name: 'Get', value: 'get', description: 'Get a single task' },
{ name: 'Search', value: 'search', description: 'Search tasks' },
{ name: 'Update', value: 'update', description: 'Update a task' },
@@ -274,7 +274,7 @@ export class TheHive implements INodeType {
description: 'Execute a responder on the specified alert',
},
{ name: 'Get', value: 'get', description: 'Get an alert' },
{ name: 'Get All', value: 'getAll', description: 'Get all alerts' },
{ name: 'Get Many', value: 'getAll', description: 'Get all alerts' },
{ name: 'Mark as Read', value: 'markAsRead', description: 'Mark the alert as read' },
{
name: 'Mark as Unread',
@@ -300,7 +300,7 @@ export class TheHive implements INodeType {
value: 'executeResponder',
description: 'Execute a responder on the specified case',
},
{ name: 'Get All', value: 'getAll', description: 'Get all cases' },
{ name: 'Get Many', value: 'getAll', description: 'Get all cases' },
{ name: 'Get', value: 'get', description: 'Get a single case' },
{ name: 'Update', value: 'update', description: 'Update a case' },
];