UNPKG

@cllbk/ghl

Version:

A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.

26 lines (24 loc) 547 B
import { customFields } from "./customFields"; import { customValues } from "./customValues"; // import { snippets } from "./snippets"; import { tags } from "./tags"; import { tasks } from "./tasks"; import { timezones } from "./timezones"; import get from "./get"; import search from "./search"; import create from "./create"; import update from "./update"; import del from "./delete"; export const locations = { get, search, create, update, delete: del, customFields, customValues, // snippets, tags, tasks, timezones, };