Add Humantic AI node (#1177)

*  Add Humantic AI node

*  Improvements

Improvements to #1165

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
This commit is contained in:
Ricardo Espinoza
2020-11-18 17:58:41 -05:00
committed by GitHub
parent b0863e55b1
commit 09547e9153
6 changed files with 507 additions and 0 deletions

View File

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