UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

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