@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
13 lines (12 loc) • 1.03 kB
TypeScript
export declare const CalendarGroups: {
search: (locationId: CalendarGroupDTO, authToken: string) => Promise<any> | null;
create: (options: CalendarGroupCreateDTO, authToken: string) => Promise<any> | null;
update: (groupId: CalendarGroupDTO, options: CalendarGroupUpdateDTO, authToken: string) => Promise<any> | null;
delete: (groupId: CalendarGroupDTO, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/_global").SuccessDeleteDTO> | null;
disable: (groupId: CalendarGroupDTO, options: {
isActive: boolean;
}, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | {
success: true;
}> | null;
validateSlug: (options: CalendarValidateGroupSlugPostBodyDTO, authToken: string) => Promise<any> | null;
};