mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
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:
@@ -20,6 +20,7 @@ export const cameraProxyOperations: INodeProperties[] = [
|
||||
name: 'Get Screenshot',
|
||||
value: 'getScreenshot',
|
||||
description: 'Get the camera screenshot',
|
||||
action: 'Get a screenshot',
|
||||
},
|
||||
],
|
||||
default: 'getScreenshot',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -20,6 +20,7 @@ export const templateOperations: INodeProperties[] = [
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a template',
|
||||
action: 'Create a template',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
Reference in New Issue
Block a user