UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

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

22 lines (21 loc) 722 B
import { IExecuteFunctions, INodeExecutionData } from "n8n-workflow"; import { ResourceHandlerBase } from "./ResourceHandlerBase"; import { IResourceHandlerOptions } from "./ResourceHandlerFactory"; /** * Handles test connection operations for Bitrix24 */ export declare class TestConnectionResourceHandler extends ResourceHandlerBase { constructor(executeFunctions: IExecuteFunctions, returnData: INodeExecutionData[], options?: IResourceHandlerOptions); /** * Process test connection operations */ process(): Promise<INodeExecutionData[]>; /** * Test OAuth2 connection */ private handleTestOAuth2; /** * Test webhook connection */ private handleTestWebhook; }