@tuanltntu/n8n-nodes-bitrix24
Version:
Comprehensive n8n community node for Bitrix24 API integration with CRM, Tasks, Chat, Telephony, and more
16 lines (15 loc) • 645 B
TypeScript
import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow";
import { ResourceHandlerBase } from "./ResourceHandlerBase";
export declare class ChatboxResourceHandler extends ResourceHandlerBase {
private resourceEndpoints;
constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[]);
process(): Promise<INodeExecutionData[]>;
private processChatOperation;
private processNotificationOperation;
private handleSendMessage;
private handleUpdateMessage;
private handleDeleteMessage;
private handleCreateChat;
private handleAddUsersToChat;
private handleSendNotification;
}