UNPKG

@cllbk/ghl

Version:

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

13 lines (12 loc) 543 B
import { BadRequestDTO, UnauthorizedDTO, UnprocessableDTO } from "../../types/_global"; import type { SnapshotsStatusResponseDTO } from "../../types/snapshots"; type SearchParams = { companyId: string; from: string; lastDoc: string; limit: string; to: string; }; type ResponseTypes = SnapshotsStatusResponseDTO | BadRequestDTO | UnauthorizedDTO | UnprocessableDTO; declare const getPushByDates: (snapshotId: string, options: SearchParams, authToken: string) => Promise<ResponseTypes> | null; export default getPushByDates;