2020-12-02 02:24:25 -08:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
export class CortexApi implements ICredentialType {
|
|
|
|
name = 'cortexApi';
|
|
|
|
displayName = 'Cortex API';
|
2020-12-11 23:30:25 -08:00
|
|
|
documentationUrl = 'cortex';
|
2020-12-02 02:24:25 -08:00
|
|
|
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: '',
|
2020-12-02 02:54:10 -08:00
|
|
|
placeholder: 'https://localhost:9001',
|
2020-12-02 02:24:25 -08:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|