mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ 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:
18
packages/nodes-base/credentials/HumanticAiApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/HumanticAiApi.credentials.ts
Normal 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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user