mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0d640fab87
* 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>
26 lines
523 B
TypeScript
26 lines
523 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MarketstackApi implements ICredentialType {
|
|
name = 'marketstackApi';
|
|
displayName = 'Marketstack API';
|
|
documentationUrl = 'marketstack';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Use HTTPS',
|
|
name: 'useHttps',
|
|
type: 'boolean' as NodePropertyTypes,
|
|
default: false,
|
|
description: 'Use HTTPS (paid plans only).',
|
|
},
|
|
];
|
|
}
|