@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
14 lines (13 loc) • 781 B
TypeScript
export declare const CalendarBlocks: {
search: (options: {
locationId: string;
startTime: string;
endTime: string;
calendarId?: string;
groupId?: string;
userId?: string;
}, authToken: string) => Promise<any> | null;
create: (options: CalendarBlockSlotCreateSchemaDTO, authToken: string) => Promise<any> | null;
update: (eventId: CalendarEventDTO, options: CalendarBlockSlotEditSchemaDTO, authToken: string) => Promise<any> | null;
delete: (eventId: CalendarEventDTO, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/_global").SuccededDeleteDTO> | null;
};