n8n/packages/nodes-base/credentials/CortexApi.credentials.ts
2020-12-12 08:30:25 +01:00

28 lines
552 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class CortexApi implements ICredentialType {
name = 'cortexApi';
displayName = 'Cortex API';
documentationUrl = 'cortex';
properties = [
{
displayName: 'API Key',
name: 'cortexApiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Cortex Instance',
name: 'host',
type: 'string' as NodePropertyTypes,
description: 'The URL of the Cortex instance',
default: '',
placeholder: 'https://localhost:9001',
},
];
}