mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +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:
@@ -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: {
|
||||
|
||||
@@ -13,6 +13,7 @@ export const exchangeRateOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
action: 'Get an exchange rate',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -13,6 +13,7 @@ export const recipientOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
action: 'Get all recipients',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
||||
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user