UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

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

33 lines (32 loc) 958 B
import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow"; import { ResourceHandlerBase } from "./ResourceHandlerBase"; import { IResourceHandlerOptions } from "./ResourceHandlerFactory"; export declare class ChatResourceHandler extends ResourceHandlerBase { private resourceEndpoints; constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions); process(): Promise<INodeExecutionData[]>; /** * Handle send message operation */ private handleSendMessage; /** * Handle get messages operation */ private handleGetMessages; /** * Handle get chat operation */ private handleGetChat; /** * Handle get chats operation */ private handleGetChats; /** * Handle create chat operation */ private handleCreateChat; /** * Handle update chat operation */ private handleUpdateChat; }