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

@@ -82,31 +82,37 @@ export class AwsSes implements INodeType {
name: 'Create',
value: 'create',
description: 'Create a new custom verification email template',
action: 'Create a custom verification email',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an existing custom verification email template',
action: 'Delete a custom verification email',
},
{
name: 'Get',
value: 'get',
description: 'Get the custom email verification template',
action: 'Get a custom verification email',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all the existing custom verification email templates for your account',
action: 'Get all custom verifications',
},
{
name: 'Send',
value: 'send',
description: 'Add an email address to the list of identities',
action: 'Send a custom verification email',
},
{
name: 'Update',
value: 'update',
description: 'Update an existing custom verification email template',
action: 'Update a custom verification email',
},
],
default: 'create',
@@ -418,10 +424,12 @@ export class AwsSes implements INodeType {
{
name: 'Send',
value: 'send',
action: 'Send an email',
},
{
name: 'Send Template',
value: 'sendTemplate',
action: 'Send an email based on a template',
},
],
default: 'send',
@@ -722,26 +730,31 @@ export class AwsSes implements INodeType {
name: 'Create',
value: 'create',
description: 'Create a template',
action: 'Create a template',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a template',
action: 'Delete a template',
},
{
name: 'Get',
value: 'get',
description: 'Get a template',
action: 'Get a template',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all templates',
action: 'Get all templates',
},
{
name: 'Update',
value: 'update',
description: 'Update a template',
action: 'Update a template',
},
],
default: 'create',