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

@@ -14,16 +14,19 @@ export const accountOperations: INodeProperties[] = [
name: 'Get Balances',
value: 'getBalances',
description: 'Retrieve balances for all account currencies of this user',
action: 'Get balances',
},
{
name: 'Get Currencies',
value: 'getCurrencies',
description: 'Retrieve currencies in the borderless account of this user',
action: 'Get currencies',
},
{
name: 'Get Statement',
value: 'getStatement',
description: 'Retrieve the statement for the borderless account of this user',
action: 'Get a statement',
},
],
displayOptions: {

View File

@@ -13,6 +13,7 @@ export const exchangeRateOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
action: 'Get an exchange rate',
},
],
displayOptions: {

View File

@@ -13,10 +13,12 @@ export const profileOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
action: 'Get a profile',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all profiles',
},
],
displayOptions: {

View File

@@ -13,10 +13,12 @@ export const quoteOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a quote',
},
{
name: 'Get',
value: 'get',
action: 'Get a quote',
},
],
displayOptions: {

View File

@@ -13,6 +13,7 @@ export const recipientOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
action: 'Get all recipients',
},
],
displayOptions: {

View File

@@ -13,22 +13,27 @@ export const transferOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a transfer',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a transfer',
},
{
name: 'Execute',
value: 'execute',
action: 'Execute a transfer',
},
{
name: 'Get',
value: 'get',
action: 'Get a transfer',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all transfers',
},
],
displayOptions: {