UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

Comprehensive n8n community node for Bitrix24 API integration with CRM, Tasks, Chat, Telephony, and more

15 lines (14 loc) 583 B
import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow"; import { ResourceHandlerBase } from "./ResourceHandlerBase"; import { IResourceHandlerOptions } from "./ResourceHandlerFactory"; /** * Handler for Direct API * Allows direct calls to any Bitrix24 API endpoint */ export declare class DirectApiResourceHandler extends ResourceHandlerBase { constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions); /** * Process the direct API call */ process(): Promise<INodeExecutionData[]>; }