mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user