n8n/packages/nodes-base/credentials/HumanticAiApi.credentials.ts
Ricardo Espinoza 09547e9153
Add Humantic AI node (#1177)
*  Add Humantic AI node

*  Improvements

Improvements to #1165

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
2020-11-18 23:58:41 +01:00

19 lines
353 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class HumanticAiApi implements ICredentialType {
name = 'humanticAiApi';
displayName = 'Humantic AI API';
documentationUrl = 'humanticAi';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}