UNPKG

@kaia-team/n8n-nodes-kaia

Version:

n8n node to interact with Kaia API for signal capture and security gating

19 lines (18 loc) 468 B
import { ICredentialType, INodeProperties } from 'n8n-workflow'; export declare class KaiaApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; test: { request: { baseURL: string; url: string; method: "POST"; body: { entity_id: string; relation: string; }; }; }; }