UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

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

37 lines (36 loc) 877 B
import { INodeExecutionData } from "n8n-workflow"; import { ResourceHandlerBase } from "./ResourceHandlerBase"; /** * Handler for Status resource operations in Bitrix24 */ export declare class StatusResourceHandler extends ResourceHandlerBase { private resourceEndpoints; /** * Process all operations related to Status */ process(): Promise<INodeExecutionData[]>; /** * Handles the creation of a new status */ private handleCreate; /** * Handles updating a status */ private handleUpdate; /** * Handles the deletion of a status */ private handleDelete; /** * Handles retrieving a single status */ private handleGet; /** * Handles retrieving all statuses */ private handleGetAll; /** * Handles getting status fields */ private handleGetFields; }