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,41 +20,49 @@ export const coinOperations: INodeProperties[] = [
name: 'Candlestick',
value: 'candlestick',
description: 'Get a candlestick open-high-low-close chart for the selected currency',
action: 'Get a candlestick for a coin',
},
{
name: 'Get',
value: 'get',
description: 'Get current data for a coin',
action: 'Get a coin',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all coins',
action: 'Get all coins',
},
{
name: 'History',
value: 'history',
description: 'Get historical data (name, price, market, stats) at a given date for a coin',
action: 'Get history for a coin',
},
{
name: 'Market',
value: 'market',
description: 'Get prices and market related data for all trading pairs that match the selected currency',
action: 'Get market prices for a coin',
},
{
name: 'Market Chart',
value: 'marketChart',
description: 'Get historical market data include price, market cap, and 24h volume (granularity auto)',
action: 'Get market chart for a coin',
},
{
name: 'Price',
value: 'price',
description: 'Get the current price of any cryptocurrencies in any other supported currencies that you need',
action: 'Get the price for a coin',
},
{
name: 'Ticker',
value: 'ticker',
description: 'Get coin tickers',
action: 'Get the ticker for a coin',
},
],
default: 'getAll',