mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
47 lines
690 B
TypeScript
47 lines
690 B
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const tickerOperations: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
},
|
||
|
],
|
||
|
default: 'get',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'ticker',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const tickerFields: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Ticker',
|
||
|
name: 'symbol',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'ticker',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
default: '',
|
||
|
description: 'Stock symbol (ticker) to retrieve, e.g. <code>AAPL</code>',
|
||
|
},
|
||
|
];
|