UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

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

19 lines (18 loc) 653 B
import { IExecuteFunctions, INodeExecutionData, IDataObject } from "n8n-workflow"; import { ResourceHandlerBase } from "./ResourceHandlerBase"; /** * Interface to define handler options */ export interface IResourceHandlerOptions extends IDataObject { forceWebhook?: boolean; debug?: boolean; } /** * Factory to create the appropriate resource handler */ export declare class ResourceHandlerFactory { /** * Create a handler for the requested resource */ static createHandler(resource: string, executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions): ResourceHandlerBase; }