refactor: Add action to all operations on all nodes (#3655)

* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
This commit is contained in:
Iván Ovejero
2022-07-10 22:50:51 +02:00
committed by GitHub
parent d5d4dd3845
commit 6f95121fac
648 changed files with 2651 additions and 3 deletions

View File

@@ -20,6 +20,7 @@ export const cameraProxyOperations: INodeProperties[] = [
name: 'Get Screenshot',
value: 'getScreenshot',
description: 'Get the camera screenshot',
action: 'Get a screenshot',
},
],
default: 'getScreenshot',

View File

@@ -20,11 +20,13 @@ export const configOperations: INodeProperties[] = [
name: 'Get',
value: 'get',
description: 'Get the configuration',
action: 'Get the config',
},
{
name: 'Check Configuration',
value: 'check',
description: 'Check the configuration',
action: 'Check the config',
},
],
default: 'get',

View File

@@ -20,11 +20,13 @@ export const eventOperations: INodeProperties[] = [
name: 'Create',
value: 'create',
description: 'Create an event',
action: 'Create an event',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all events',
action: 'Get all events',
},
],
default: 'getAll',

View File

@@ -20,6 +20,7 @@ export const historyOperations: INodeProperties[] = [
name: 'Get All',
value: 'getAll',
description: 'Get all state changes',
action: 'Get all state changes',
},
],
default: 'getAll',

View File

@@ -20,11 +20,13 @@ export const logOperations: INodeProperties[] = [
name: 'Get Error Logs',
value: 'getErroLogs',
description: 'Get a log for a specific entity',
action: 'Get a log for an entity',
},
{
name: 'Get Logbook Entries',
value: 'getLogbookEntries',
description: 'Get all logs',
action: 'Get all logs for an entity',
},
],
default: 'getErroLogs',

View File

@@ -20,11 +20,13 @@ export const serviceOperations: INodeProperties[] = [
name: 'Call',
value: 'call',
description: 'Call a service within a specific domain',
action: 'Call a service',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all services',
action: 'Get all services',
},
],
default: 'getAll',

View File

@@ -20,16 +20,19 @@ export const stateOperations: INodeProperties[] = [
name: 'Create or Update',
value: 'upsert',
description: 'Create a new record, or update the current one if it already exists (upsert)',
action: 'Create or update a state',
},
{
name: 'Get',
value: 'get',
description: 'Get a state for a specific entity',
action: 'Get a state',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all states',
action: 'Get all states',
},
],
default: 'get',

View File

@@ -20,6 +20,7 @@ export const templateOperations: INodeProperties[] = [
name: 'Create',
value: 'create',
description: 'Create a template',
action: 'Create a template',
},
],
default: 'create',