@gotohuman/n8n-nodes-gotohuman
Version:
n8n node to request human reviews in AI workflows with gotoHuman
18 lines (17 loc) • 991 B
TypeScript
import { IHookFunctions, ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
export declare const BASE_URL = "https://api.gotohuman.com";
export declare function getTriggerOn(hook: IHookFunctions): string;
export declare function isAgentWebhookTrigger(hook: IHookFunctions): boolean;
export declare function getWebhookFormId(hook: IHookFunctions): string;
export declare function getWebhookAgentId(hook: IHookFunctions): string;
export declare function fetchN8nFormsListSearch(this: ILoadOptionsFunctions, filter?: string, query?: {
onlyTriggerForms?: boolean;
}): Promise<INodeListSearchResult>;
export declare function fetchN8nAgentsListSearch(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
export declare const gotoHumanWebhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};