mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user