UNPKG

n8n-nodes-callov

Version:

n8n node for Callov API - Complete Management System with AI Agent Support

14 lines (13 loc) 761 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions, ISupplyDataFunctions, SupplyData } from 'n8n-workflow'; export declare class Callov implements INodeType { methods: { loadOptions: { getClients(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getTeamMembers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getServices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; description: INodeTypeDescription; supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }