mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 15:14:05 -08:00
88dea330b9
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
783 lines
14 KiB
TypeScript
783 lines
14 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const coinOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Candlestick',
|
|
value: 'candlestick',
|
|
description: 'Get a candlestick open-high-low-close chart for the selected currency',
|
|
},
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get current data for a coin',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all coins',
|
|
},
|
|
{
|
|
name: 'History',
|
|
value: 'history',
|
|
description: 'Get historical data (name, price, market, stats) at a given date for a coin',
|
|
},
|
|
{
|
|
name: 'Market',
|
|
value: 'market',
|
|
description: 'Get prices and market related data for all trading pairs that match the selected currency',
|
|
},
|
|
{
|
|
name: 'Market Chart',
|
|
value: 'marketChart',
|
|
description: 'Get historical market data include price, market cap, and 24h volume (granularity auto)',
|
|
},
|
|
{
|
|
name: 'Price',
|
|
value: 'price',
|
|
description: 'Get the current price of any cryptocurrencies in any other supported currencies that you need',
|
|
},
|
|
{
|
|
name: 'Ticker',
|
|
value: 'ticker',
|
|
description: 'Get coin tickers',
|
|
},
|
|
],
|
|
default: 'getAll',
|
|
},
|
|
];
|
|
|
|
export const coinFields: INodeProperties[] = [
|
|
{
|
|
displayName: 'Search By',
|
|
name: 'searchBy',
|
|
required: true,
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Coin ID',
|
|
value: 'coinId',
|
|
},
|
|
{
|
|
name: 'Contract Address',
|
|
value: 'contractAddress',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
'marketChart',
|
|
'price',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: 'coinId',
|
|
description: 'Search by coin ID or contract address',
|
|
},
|
|
{
|
|
displayName: 'Coin Name or ID',
|
|
name: 'coinId',
|
|
required: true,
|
|
type: 'options',
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCoins',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'bitcoin',
|
|
},
|
|
{
|
|
displayName: 'Base Currency Name or ID',
|
|
name: 'baseCurrency',
|
|
required: true,
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCoins',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
|
|
operation: [
|
|
'candlestick',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Base Currency Name or ID',
|
|
name: 'baseCurrency',
|
|
required: true,
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCurrencies',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
|
|
operation: [
|
|
'market',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Coin Name or ID',
|
|
name: 'coinId',
|
|
required: true,
|
|
type: 'options',
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCoins',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'ticker',
|
|
'history',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'bitcoin',
|
|
},
|
|
{
|
|
displayName: 'Base Currencies Name or ID',
|
|
name: 'baseCurrencies',
|
|
required: true,
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCoins',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'price',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
searchBy: [
|
|
'coinId',
|
|
],
|
|
},
|
|
},
|
|
default: [],
|
|
placeholder: 'bitcoin',
|
|
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Platform ID',
|
|
name: 'platformId',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
'marketChart',
|
|
'price',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
searchBy: [
|
|
'contractAddress',
|
|
],
|
|
},
|
|
},
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Ethereum',
|
|
value: 'ethereum',
|
|
},
|
|
],
|
|
default: 'ethereum',
|
|
description: 'The ID of the platform issuing tokens',
|
|
},
|
|
{
|
|
displayName: 'Contract Address',
|
|
name: 'contractAddress',
|
|
required: true,
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
'marketChart',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
searchBy: [
|
|
'contractAddress',
|
|
],
|
|
},
|
|
},
|
|
description: 'Token\'s contract address',
|
|
},
|
|
{
|
|
displayName: 'Contract Addresses',
|
|
name: 'contractAddresses',
|
|
required: true,
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'price',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
searchBy: [
|
|
'contractAddress',
|
|
],
|
|
},
|
|
},
|
|
description: 'The contract address of tokens, comma-separated',
|
|
},
|
|
{
|
|
displayName: 'Base Currency Name or ID',
|
|
name: 'baseCurrency',
|
|
required: true,
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCoins',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'marketChart',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
searchBy: [
|
|
'coinId',
|
|
],
|
|
},
|
|
hide: {
|
|
searchBy: [
|
|
'contractAddress',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The first currency in the pair. For BTC:ETH this is BTC. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Quote Currency Name or ID',
|
|
name: 'quoteCurrency',
|
|
required: true,
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCurrencies',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'candlestick',
|
|
'marketChart',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The second currency in the pair. For BTC:ETH this is ETH. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Quote Currencies Name or ID',
|
|
name: 'quoteCurrencies',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCurrencies',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'price',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: [],
|
|
description: 'The second currency in the pair. For BTC:ETH this is ETH. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Range (Days)',
|
|
name: 'days',
|
|
required: true,
|
|
type: 'options',
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
|
options: [
|
|
{
|
|
name: '1',
|
|
value: '1',
|
|
},
|
|
{
|
|
name: '7',
|
|
value: '7',
|
|
},
|
|
{
|
|
name: '14',
|
|
value: '14',
|
|
},
|
|
{
|
|
name: '30',
|
|
value: '30',
|
|
},
|
|
{
|
|
name: '90',
|
|
value: '90',
|
|
},
|
|
{
|
|
name: '180',
|
|
value: '180',
|
|
},
|
|
{
|
|
name: '365',
|
|
value: '365',
|
|
},
|
|
{
|
|
name: 'Max',
|
|
value: 'max',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'marketChart',
|
|
'candlestick',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Return data for this many days in the past from now',
|
|
},
|
|
{
|
|
displayName: 'Date',
|
|
name: 'date',
|
|
required: true,
|
|
type: 'dateTime',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'history',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The date of data snapshot',
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
'market',
|
|
'ticker',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
'market',
|
|
'ticker',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 100,
|
|
description: 'Max number of results to return',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'coin',
|
|
],
|
|
operation: [
|
|
'market',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Coin IDs',
|
|
name: 'ids',
|
|
type: 'string',
|
|
placeholder: 'bitcoin',
|
|
default: '',
|
|
description: 'Filter results by comma-separated list of coin ID',
|
|
},
|
|
{
|
|
displayName: 'Category',
|
|
name: 'category',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Decentralized Finance Defi',
|
|
value: 'decentralized_finance_defi',
|
|
},
|
|
],
|
|
default: 'decentralized_finance_defi',
|
|
description: 'Filter by coin category',
|
|
},
|
|
{
|
|
displayName: 'Order',
|
|
name: 'order',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Gecko Asc',
|
|
value: 'gecko_asc',
|
|
},
|
|
{
|
|
name: 'Gecko Desc',
|
|
value: 'gecko_desc',
|
|
},
|
|
{
|
|
name: 'ID Asc',
|
|
value: 'id_asc',
|
|
},
|
|
{
|
|
name: 'ID Desc',
|
|
value: 'id_desc',
|
|
},
|
|
{
|
|
name: 'Market Cap Asc',
|
|
value: 'market_cap_asc',
|
|
},
|
|
{
|
|
name: 'Market Cap Desc',
|
|
value: 'market_cap_desc',
|
|
},
|
|
{
|
|
name: 'Volume Asc',
|
|
value: 'volume_asc',
|
|
},
|
|
{
|
|
name: 'Volume Desc',
|
|
value: 'volume_desc',
|
|
},
|
|
],
|
|
default: '',
|
|
description: 'Sort results by field',
|
|
},
|
|
{
|
|
displayName: 'Sparkline',
|
|
name: 'sparkline',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include sparkline 7 days data',
|
|
},
|
|
{
|
|
displayName: 'Price Change Percentage',
|
|
name: 'price_change_percentage',
|
|
type: 'multiOptions',
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-multi-options-type-unsorted-items
|
|
options: [
|
|
{
|
|
name: '1h',
|
|
value: '1h',
|
|
},
|
|
{
|
|
name: '24h',
|
|
value: '24h',
|
|
},
|
|
{
|
|
name: '7d',
|
|
value: '7d',
|
|
},
|
|
{
|
|
name: '14d',
|
|
value: '14d',
|
|
},
|
|
{
|
|
name: '30d',
|
|
value: '30d',
|
|
},
|
|
{
|
|
name: '200d',
|
|
value: '200d',
|
|
},
|
|
{
|
|
name: '1y',
|
|
value: '1y',
|
|
},
|
|
],
|
|
default: [],
|
|
description: 'Include price change percentage for specified times',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'coin',
|
|
],
|
|
operation: [
|
|
'price',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Include 24hr Change',
|
|
name: 'include_24hr_change',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
{
|
|
displayName: 'Include 24hr Vol',
|
|
name: 'include_24hr_vol',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
{
|
|
displayName: 'Include Last Updated At',
|
|
name: 'include_last_updated_at',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
{
|
|
displayName: 'Include Market Cap',
|
|
name: 'include_market_cap',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'coin',
|
|
],
|
|
operation: [
|
|
'ticker',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Exchange Names or IDs',
|
|
name: 'exchange_ids',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getExchanges',
|
|
},
|
|
default: [],
|
|
description: 'Filter results by exchange IDs. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Include Exchange Logo',
|
|
name: 'include_exchange_logo',
|
|
type: 'boolean',
|
|
default: false,
|
|
},
|
|
{
|
|
displayName: 'Order',
|
|
name: 'order',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Trust Score Desc',
|
|
value: 'trust_score_desc',
|
|
},
|
|
{
|
|
name: 'Trust Score Asc',
|
|
value: 'trust_score_asc',
|
|
},
|
|
{
|
|
name: 'Volume Desc',
|
|
value: 'volume_desc',
|
|
},
|
|
],
|
|
default: 'trust_score_desc',
|
|
description: 'Sorts results by the selected rule',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'coin',
|
|
],
|
|
operation: [
|
|
'history',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Localization',
|
|
name: 'localization',
|
|
type: 'boolean',
|
|
default: true,
|
|
description: 'Whether to exclude localized languages in response',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'get',
|
|
],
|
|
resource: [
|
|
'coin',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Community Data',
|
|
name: 'community_data',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include community data',
|
|
},
|
|
{
|
|
displayName: 'Developer Data',
|
|
name: 'developer_data',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include developer data',
|
|
},
|
|
{
|
|
displayName: 'Localization',
|
|
name: 'localization',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include all localized languages in response',
|
|
},
|
|
{
|
|
displayName: 'Market Data',
|
|
name: 'market_data',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include market data',
|
|
},
|
|
{
|
|
displayName: 'Sparkline',
|
|
name: 'sparkline',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include sparkline 7 days data (eg. true, false).',
|
|
},
|
|
{
|
|
displayName: 'Tickers',
|
|
name: 'tickers',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include tickers data',
|
|
},
|
|
],
|
|
},
|
|
];
|