@gotohuman/n8n-nodes-gotohuman
Version:
n8n node to request human reviews in AI workflows with gotoHuman
15 lines (14 loc) • 750 B
TypeScript
import { INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodeListSearchResult, ResourceMapperFields, IWebhookFunctions, IWebhookResponseData, IExecuteFunctions } from 'n8n-workflow';
export declare class GotoHuman implements INodeType {
description: INodeTypeDescription;
methods: {
listSearch: {
searchReviewTemplates(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
};
resourceMapping: {
getMappingFields(this: ILoadOptionsFunctions): Promise<ResourceMapperFields>;
};
};
execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
webhook: (this: IWebhookFunctions) => Promise<IWebhookResponseData>;
}