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,46 +20,55 @@ export const boardItemOperations: INodeProperties[] = [
name: 'Add Update',
value: 'addUpdate',
description: 'Add an update to an item',
action: 'Add an update to an item',
},
{
name: 'Change Column Value',
value: 'changeColumnValue',
description: 'Change a column value for a board item',
action: 'Change a column value for a board item',
},
{
name: 'Change Multiple Column Values',
value: 'changeMultipleColumnValues',
description: 'Change multiple column values for a board item',
action: 'Change multiple column values for a board item',
},
{
name: 'Create',
value: 'create',
description: 'Create an item in a board\'s group',
action: 'Create an item in a board\'s group',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an item',
action: 'Delete an item',
},
{
name: 'Get',
value: 'get',
description: 'Get an item',
action: 'Get an item',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all items',
action: 'Get all items',
},
{
name: 'Get By Column Value',
value: 'getByColumnValue',
description: 'Get items by column value',
action: 'Get items item by column value',
},
{
name: 'Move',
value: 'move',
description: 'Move item to group',
action: 'Move an item to a group',
},
],
default: 'create',