UNPKG

@cllbk/ghl

Version:

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

32 lines (30 loc) 683 B
import { campaigns } from "../campaigns"; import { appointments } from "./appointments"; import { followers } from "./followers"; import { notes } from "./notes"; import { tags } from "./tags"; import { tasks } from "./tasks"; import { workflows } from "./workflows"; import get from "./get"; import search from "./search"; import findDuplicates from "./findDuplicates"; import create from "./create"; import update from "./update"; import upsert from "./upsert"; import del from "./delete"; export const contacts = { get, search, findDuplicates, create, update, upsert, delete: del, tasks, appointments, tags, notes, campaigns, workflows, followers, };