Add Marketstack node (#2033)

* Add Marketstack Node

* Add optional HTTPS support

*  Refactor Marketstack node

* 🔥 Remove logging

*  Small improvement

* 🐛 Fix issue validating error condition

Co-authored-by: Ed Linklater <github@ed.geek.nz>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
Iván Ovejero
2021-08-01 13:49:24 +02:00
committed by GitHub
parent f900bfe897
commit 0d640fab87
10 changed files with 647 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
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>',
},
];