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:
@@ -18,11 +18,13 @@ export const controlOperations: INodeProperties[] = [
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a control',
|
||||
action: 'Get a control',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all controls',
|
||||
action: 'Get all controls',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -18,11 +18,13 @@ export const formulaOperations: INodeProperties[] = [
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a formula',
|
||||
action: 'Get a formula',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all formulas',
|
||||
action: 'Get all formulas',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
@@ -18,35 +18,42 @@ export const tableOperations: INodeProperties[] = [
|
||||
name: 'Create Row',
|
||||
value: 'createRow',
|
||||
description: 'Create/Insert a row',
|
||||
action: 'Create a row',
|
||||
},
|
||||
{
|
||||
name: 'Delete Row',
|
||||
value: 'deleteRow',
|
||||
description: 'Delete one or multiple rows',
|
||||
action: 'Delete a row',
|
||||
},
|
||||
{
|
||||
name: 'Get All Columns',
|
||||
value: 'getAllColumns',
|
||||
action: 'Get all columns',
|
||||
},
|
||||
{
|
||||
name: 'Get All Rows',
|
||||
value: 'getAllRows',
|
||||
description: 'Get all the rows',
|
||||
action: 'Get all rows',
|
||||
},
|
||||
{
|
||||
name: 'Get Column',
|
||||
value: 'getColumn',
|
||||
description: 'Get a column',
|
||||
action: 'Get a column',
|
||||
},
|
||||
{
|
||||
name: 'Get Row',
|
||||
value: 'getRow',
|
||||
description: 'Get a row',
|
||||
action: 'Get a row',
|
||||
},
|
||||
{
|
||||
name: 'Push Button',
|
||||
value: 'pushButton',
|
||||
description: 'Pushes a button',
|
||||
action: 'Push a button',
|
||||
},
|
||||
],
|
||||
default: 'createRow',
|
||||
|
||||
@@ -18,35 +18,42 @@ export const viewOperations: INodeProperties[] = [
|
||||
name: 'Delete Row',
|
||||
value: 'deleteViewRow',
|
||||
description: 'Delete view row',
|
||||
action: 'Delete a view row',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a view',
|
||||
action: 'Get a view',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all views',
|
||||
action: 'Get all views',
|
||||
},
|
||||
{
|
||||
name: 'Get Columns',
|
||||
value: 'getAllViewColumns',
|
||||
description: 'Get all views columns',
|
||||
action: 'Get all view columns',
|
||||
},
|
||||
{
|
||||
name: 'Get Rows',
|
||||
value: 'getAllViewRows',
|
||||
description: 'Get all views rows',
|
||||
action: 'Get a view row',
|
||||
},
|
||||
{
|
||||
name: 'Push Button',
|
||||
value: 'pushViewButton',
|
||||
description: 'Push view button',
|
||||
action: 'Push a view button',
|
||||
},
|
||||
{
|
||||
name: 'Update Row',
|
||||
value: 'updateViewRow',
|
||||
action: 'Update a view row',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
Reference in New Issue
Block a user