UNPKG

n8n-nodes-highlevelv2

Version:

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

47 lines (46 loc) 1.07 kB
export declare const appointmentNotesOperationsMockData: { create: { note: { id: string; body: string; contactId: string; userId: string; appointmentId: string; createdAt: string; updatedAt: string; }; }; update: { note: { id: string; body: string; contactId: string; userId: string; appointmentId: string; createdAt: string; updatedAt: string; }; }; getAll: { notes: { id: string; body: string; contactId: string; userId: string; appointmentId: string; createdAt: string; updatedAt: string; }[]; meta: { total: number; currentPage: number; nextPage: null; prevPage: null; limit: number; }; }; delete: { success: boolean; message: string; }; };