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 attachmentOperations: INodeProperties[] = [
name: 'Upload',
value: 'upload',
description: 'Upload an attachment to a specific table record',
action: 'Upload an attachment',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an attachment',
action: 'Delete an attachment',
},
{
name: 'Get',
value: 'get',
description: 'Get an attachment',
action: 'Get an attachment',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all attachments on a table',
action: 'Get all attachments',
},
],
default: 'upload',

View File

@@ -19,6 +19,7 @@ export const businessServiceOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all business services',
},
],
default: 'getAll',

View File

@@ -19,6 +19,7 @@ export const configurationItemsOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all configuration items',
},
],
default: 'getAll',

View File

@@ -19,6 +19,7 @@ export const departmentOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all departments',
},
],
default: 'getAll',

View File

@@ -19,6 +19,7 @@ export const dictionaryOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all dictionaries',
},
],
default: 'getAll',

View File

@@ -19,22 +19,27 @@ export const incidentOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create an incident',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete an incident',
},
{
name: 'Get',
value: 'get',
action: 'Get an incident',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all incidents',
},
{
name: 'Update',
value: 'update',
action: 'Update an incident',
},
],
default: 'get',

View File

@@ -19,22 +19,27 @@ export const tableRecordOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a table record',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a table record',
},
{
name: 'Get',
value: 'get',
action: 'Get a table record',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all table records',
},
{
name: 'Update',
value: 'update',
action: 'Update a table record',
},
],
default: 'get',

View File

@@ -19,22 +19,27 @@ export const userOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a user',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a user',
},
{
name: 'Get',
value: 'get',
action: 'Get a user',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all users',
},
{
name: 'Update',
value: 'update',
action: 'Update a user',
},
],
default: 'get',

View File

@@ -19,6 +19,7 @@ export const userGroupOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all user groups',
},
],
default: 'getAll',

View File

@@ -19,6 +19,7 @@ export const userRoleOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all user roles',
},
],
default: 'getAll',