@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
12 lines (11 loc) • 1.51 kB
TypeScript
export declare const orders: {
get: (orderId: string, options: import("../../../types/payments").PaymentsOrderFullfillmentsGetOptions, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsOrderGetResponseDTO> | null;
list: (options: import("../../../types/payments").PaymentsOrderFullfillmentsSearchOptions, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsOrderListResponseDTO> | null;
fullfillments: {
list: (orderId: string, options: {
altId: string;
altType: string;
}, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsFullfillmentListResponseDTO> | null;
create: (orderId: string, options: import("../../../types/payments").PaymentsFullfillmentCreateDTO, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsFullfillmentListResponseDTO> | null;
};
};