UNPKG

n8n-nodes-highlevelv2

Version:

n8n community node for HighLevel v2 API integration - comprehensive CRM, marketing automation, and business management platform

49 lines (48 loc) 1.1 kB
export declare const mockBusinessResponse: { business: { id: string; name: string; address: string; city: string; state: string; postalCode: string; country: string; phone: string; email: string; website: string; description: string; locationId: string; createdAt: string; updatedAt: string; }; success: boolean; }; export declare const mockBusinessListResponse: { businesses: { id: string; name: string; address: string; city: string; state: string; postalCode: string; country: string; phone: string; email: string; website: string; description: string; locationId: string; createdAt: string; updatedAt: string; }[]; meta: { total: number; count: number; limit: number; offset: number; }; success: boolean; }; export declare const mockBusinessDeleteResponse: { success: boolean; message: string; };