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,21 +20,25 @@ export const customFieldOperations: INodeProperties[] = [
name: 'Create',
value: 'create',
description: 'Create a field',
action: 'Create a custom field',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a field',
action: 'Delete a custom field',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all fields',
action: 'Get all custom fields',
},
{
name: 'Update',
value: 'update',
description: 'Update a field',
action: 'Update a custom field',
},
],
default: 'update',

View File

@@ -20,16 +20,19 @@ export const formOperations: INodeProperties[] = [
name: 'Add Subscriber',
value: 'addSubscriber',
description: 'Add a subscriber',
action: 'Add a subscriber',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all forms',
action: 'Get all forms',
},
{
name: 'Get Subscriptions',
value: 'getSubscriptions',
description: 'List subscriptions to a form including subscriber data',
action: 'Get all subscriptions',
},
],
default: 'addSubscriber',

View File

@@ -20,16 +20,19 @@ export const sequenceOperations: INodeProperties[] = [
name: 'Add Subscriber',
value: 'addSubscriber',
description: 'Add a subscriber',
action: 'Add a subscriber',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all sequences',
action: 'Get all sequences',
},
{
name: 'Get Subscriptions',
value: 'getSubscriptions',
description: 'Get all subscriptions to a sequence including subscriber data',
action: 'Get all subscriptions to a sequence',
},
],
default: 'addSubscriber',

View File

@@ -20,11 +20,13 @@ export const tagOperations: INodeProperties[] = [
name: 'Create',
value: 'create',
description: 'Create a tag',
action: 'Create a tag',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all tags',
action: 'Get all tags',
},
],
default: 'create',

View File

@@ -20,16 +20,19 @@ export const tagSubscriberOperations: INodeProperties[] = [
name: 'Add',
value: 'add',
description: 'Add a tag to a subscriber',
action: 'Add a tag to a subscriber',
},
{
name: 'Get All',
value: 'getAll',
description: 'List subscriptions to a tag including subscriber data',
action: 'Get all tag subscriptions',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a tag from a subscriber',
action: 'Delete a tag from a subscriber',
},
],
default: 'create',