UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

8 lines 697 B
import type { IDataObject, IExecuteFunctions, IHookFunctions, IHttpRequestMethods, ILoadOptionsFunctions } from 'n8n-workflow'; export declare function flowApiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, body?: any, qs?: IDataObject, uri?: string, option?: IDataObject): Promise<any>; /** * Make an API request to paginated flow endpoint * and return all results */ export declare function FlowApiRequestAllItems(this: IHookFunctions | IExecuteFunctions, propertyName: string, method: IHttpRequestMethods, resource: string, body?: any, query?: IDataObject): Promise<any>; //# sourceMappingURL=GenericFunctions.d.ts.map