n8n-nodes-highlevelv2
Version:
n8n community node for HighLevel v2 API integration - comprehensive CRM, marketing automation, and business management platform
55 lines (54 loc) • 1.3 kB
TypeScript
export declare const mockAppointmentResponse: {
appointment: {
id: string;
calendarId: string;
contactId: string;
locationId: string;
title: string;
appointmentStatus: string;
assignedUserId: string;
address: string;
notes: string;
startTime: string;
endTime: string;
dateCreated: string;
dateUpdated: string;
};
};
export declare const mockBlockedSlotResponse: {
blockedSlot: {
id: string;
calendarId: string;
userId: string;
locationId: string;
title: string;
startTime: string;
endTime: string;
dateCreated: string;
dateUpdated: string;
};
};
export declare const mockBlockedSlotsListResponse: {
blockedSlots: {
id: string;
calendarId: string;
userId: string;
locationId: string;
title: string;
startTime: string;
endTime: string;
dateCreated: string;
dateUpdated: string;
}[];
meta: {
total: number;
count: number;
currentPage: number;
nextPageUrl: null;
prevPageUrl: null;
};
};
export declare const mockDeleteEventResponse: {
success: boolean;
message: string;
};