@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
16 lines (14 loc) • 305 B
text/typescript
import search from "./search";
import create from "./create";
import update from "./update";
import del from "./delete";
import disable from "./disable";
import validateSlug from "./validateSlug";
export const CalendarGroups = {
search,
create,
update,
delete: del,
disable,
validateSlug,
};