@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
7 lines (6 loc) • 620 B
TypeScript
import { BadRequestDTO, UnauthorizedDTO, UnprocessableDTO } from "../../../types/_global";
import type { CalendarGetCreateUpdateNoteSuccessfulResponseDto, CalendarEventDTO, CalendarGetNoteSchemaDTO } from "../../../types/calendars";
import { ContactNotesDTO } from "../../../types/contacts";
type ResponseTypes = CalendarGetCreateUpdateNoteSuccessfulResponseDto | BadRequestDTO | UnauthorizedDTO | UnprocessableDTO;
declare const update: (appointmentId: CalendarEventDTO["id"], noteId: CalendarGetNoteSchemaDTO["id"], options: ContactNotesDTO, authToken: string) => Promise<ResponseTypes> | null;
export default update;