n8n/packages/nodes-base/nodes/CoinGecko/CoinDescription.ts

779 lines
13 KiB
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
export const coinOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
refactor: Apply more nodelinting rules (#3324) * :pencil2: Alphabetize lint rules * :fire: Remove duplicates * :zap: Update `lintfix` script * :shirt: Apply `node-param-operation-without-no-data-expression` (#3329) * :shirt: Apply `node-param-operation-without-no-data-expression` * :shirt: Add exceptions * :shirt: Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-value-duplicate` (#3331) * :shirt: Apply `node-param-description-miscased-json` (#3337) * :shirt: Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * :pencil2: Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-description-wrong-for-simplify` (#3334) * :zap: fix * :zap: exceptions * :zap: changed rule ignoring from file to line * :shirt: Apply `node-param-resource-without-no-data-expression` (#3339) * :shirt: Apply `node-param-display-name-untrimmed` (#3341) * :shirt: Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-resource-with-plural-option` (#3342) * :shirt: Apply `node-param-description-wrong-for-upsert` (#3333) * :zap: fix * :zap: replaced record with contact in description * :zap: fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-description-identical-to-name` (#3343) * :shirt: Apply `node-param-option-name-containing-star` (#3347) * :shirt: Apply `node-param-display-name-wrong-for-update-fields` (#3348) * :shirt: Apply `node-param-option-name-wrong-for-get-all` (#3345) * :zap: fix * :zap: exceptions * :shirt: Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * :shirt: Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :zap: Alphabetize lint rules * :zap: Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
2022-05-20 14:47:24 -07:00
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 ID',
name: 'coinId',
required: true,
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCoins',
},
displayOptions: {
show: {
operation: [
'get',
],
resource: [
'coin',
],
},
},
default: '',
placeholder: 'bitcoin',
},
2020-10-06 01:19:28 -07:00
{
displayName: 'Base Currency',
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.',
},
{
displayName: 'Base Currency',
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.',
},
{
displayName: 'Coin ID',
name: 'coinId',
required: true,
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCoins',
},
displayOptions: {
show: {
operation: [
'ticker',
'history',
],
resource: [
'coin',
],
},
},
default: '',
placeholder: 'bitcoin',
},
{
2020-10-06 01:19:28 -07:00
displayName: 'Base Currencies',
name: 'baseCurrencies',
required: true,
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getCoins',
},
displayOptions: {
show: {
operation: [
'price',
],
resource: [
'coin',
],
searchBy: [
2020-10-22 06:46:03 -07:00
'coinId',
],
},
},
default: [],
placeholder: 'bitcoin',
2020-10-06 01:19:28 -07:00
description: 'The first currency in the pair. For BTC:ETH this is BTC.',
},
{
displayName: 'Platform ID',
name: 'platformId',
required: true,
displayOptions: {
show: {
operation: [
'get',
'marketChart',
'price',
],
resource: [
'coin',
],
searchBy: [
2020-10-22 06:46:03 -07:00
'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: [
2020-10-22 06:46:03 -07:00
'contractAddress',
],
},
},
description: 'Token\'s contract address',
},
{
displayName: 'Contract addresses',
name: 'contractAddresses',
required: true,
type: 'string',
default: '',
displayOptions: {
show: {
operation: [
'price',
],
resource: [
'coin',
],
searchBy: [
2020-10-22 06:46:03 -07:00
'contractAddress',
],
},
},
description: 'The contract address of tokens, comma-separated',
},
{
displayName: 'Base Currency',
name: 'baseCurrency',
required: true,
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCoins',
},
displayOptions: {
show: {
operation: [
'marketChart',
],
resource: [
'coin',
],
searchBy: [
2020-10-22 06:46:03 -07:00
'coinId',
],
},
hide: {
searchBy: [
'contractAddress',
],
},
},
default: '',
description: 'The first currency in the pair. For BTC:ETH this is BTC.',
},
{
displayName: 'Quote Currency',
name: 'quoteCurrency',
required: true,
type: 'options',
typeOptions: {
loadOptionsMethod: 'getCurrencies',
},
displayOptions: {
show: {
operation: [
'candlestick',
2020-10-06 01:19:28 -07:00
'marketChart',
],
resource: [
'coin',
],
},
},
default: '',
description: 'The second currency in the pair. For BTC:ETH this is ETH.',
},
{
2020-10-06 01:19:28 -07:00
displayName: 'Quote Currencies',
name: 'quoteCurrencies',
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getCurrencies',
},
required: true,
displayOptions: {
show: {
operation: [
'price',
],
resource: [
'coin',
],
},
},
default: [],
2020-10-06 01:19:28 -07:00
description: 'The second currency in the pair. For BTC:ETH this is ETH.',
},
{
2020-10-06 01:19:28 -07:00
displayName: 'Range (days)',
name: 'days',
required: true,
type: 'options',
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: 'Market Cap Desc',
value: 'market_cap_desc',
},
{
name: 'Gecko Desc',
value: 'gecko_desc',
},
{
name: 'Gecko Asc',
value: 'gecko_asc',
},
{
name: 'Market Cap Asc',
value: 'market_cap_asc',
},
{
name: 'Volume Asc',
value: 'volume_asc',
},
{
name: 'Volume Desc',
value: 'volume_desc',
},
{
refactor: Apply more nodelinting rules (#3324) * :pencil2: Alphabetize lint rules * :fire: Remove duplicates * :zap: Update `lintfix` script * :shirt: Apply `node-param-operation-without-no-data-expression` (#3329) * :shirt: Apply `node-param-operation-without-no-data-expression` * :shirt: Add exceptions * :shirt: Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-value-duplicate` (#3331) * :shirt: Apply `node-param-description-miscased-json` (#3337) * :shirt: Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * :pencil2: Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-description-wrong-for-simplify` (#3334) * :zap: fix * :zap: exceptions * :zap: changed rule ignoring from file to line * :shirt: Apply `node-param-resource-without-no-data-expression` (#3339) * :shirt: Apply `node-param-display-name-untrimmed` (#3341) * :shirt: Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-resource-with-plural-option` (#3342) * :shirt: Apply `node-param-description-wrong-for-upsert` (#3333) * :zap: fix * :zap: replaced record with contact in description * :zap: fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-description-identical-to-name` (#3343) * :shirt: Apply `node-param-option-name-containing-star` (#3347) * :shirt: Apply `node-param-display-name-wrong-for-update-fields` (#3348) * :shirt: Apply `node-param-option-name-wrong-for-get-all` (#3345) * :zap: fix * :zap: exceptions * :shirt: Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * :shirt: Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :zap: Alphabetize lint rules * :zap: Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
2022-05-20 14:47:24 -07:00
name: 'ID Asc',
value: 'id_asc',
},
{
refactor: Apply more nodelinting rules (#3324) * :pencil2: Alphabetize lint rules * :fire: Remove duplicates * :zap: Update `lintfix` script * :shirt: Apply `node-param-operation-without-no-data-expression` (#3329) * :shirt: Apply `node-param-operation-without-no-data-expression` * :shirt: Add exceptions * :shirt: Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-value-duplicate` (#3331) * :shirt: Apply `node-param-description-miscased-json` (#3337) * :shirt: Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * :pencil2: Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-description-wrong-for-simplify` (#3334) * :zap: fix * :zap: exceptions * :zap: changed rule ignoring from file to line * :shirt: Apply `node-param-resource-without-no-data-expression` (#3339) * :shirt: Apply `node-param-display-name-untrimmed` (#3341) * :shirt: Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-resource-with-plural-option` (#3342) * :shirt: Apply `node-param-description-wrong-for-upsert` (#3333) * :zap: fix * :zap: replaced record with contact in description * :zap: fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :shirt: Apply `node-param-option-description-identical-to-name` (#3343) * :shirt: Apply `node-param-option-name-containing-star` (#3347) * :shirt: Apply `node-param-display-name-wrong-for-update-fields` (#3348) * :shirt: Apply `node-param-option-name-wrong-for-get-all` (#3345) * :zap: fix * :zap: exceptions * :shirt: Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * :shirt: Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * :zap: Alphabetize lint rules * :zap: Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
2022-05-20 14:47:24 -07:00
name: 'ID Desc',
value: 'id_desc',
2020-10-22 06:46:03 -07:00
},
],
default: '',
description: 'Sort results by field',
},
{
displayName: 'Sparkline',
name: 'sparkline',
type: 'boolean',
default: false,
description: 'Include sparkline 7 days data',
},
{
displayName: 'Price Change Percentage',
name: 'price_change_percentage',
type: 'multiOptions',
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 IDs',
name: 'exchange_ids',
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getExchanges',
},
default: [],
description: 'Filter results by exchange IDs',
},
{
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: 'Set to false 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: 'Include community data',
},
{
displayName: 'Developer data',
name: 'developer_data',
type: 'boolean',
default: false,
description: 'Include developer data',
},
{
displayName: 'Localization',
name: 'localization',
type: 'boolean',
default: false,
description: 'Include all localized languages in response',
},
{
displayName: 'Market data',
name: 'market_data',
type: 'boolean',
default: false,
description: 'Include market data',
},
{
displayName: 'Sparkline',
name: 'sparkline',
type: 'boolean',
default: false,
2020-10-22 06:46:03 -07:00
description: 'Include sparkline 7 days data (eg. true, false).',
},
{
displayName: 'Tickers',
name: 'tickers',
type: 'boolean',
default: false,
description: 'Include tickers data',
},
],
},
];