* init bookings endpoint * abstracting functions * e2e tests for bookings * hooks for bookings endpoint * bookings respository fixtures * typings for booking input * fixup * abstract booking info code and use it as handler * import handlers for bookings endpoint * add cancel booking input * add handleCancelBooking handler in platform libraries * cancel booking endpoint * abstract call into its own separate fn * cancel booking hook * e2e test for cancel booking endpoint * fix import * export getBookings function * move getAllUserBookings into lib * add bookings folder to package exports * use getAllUserBookings from lib * fix import path * fix: hooks, endpoint and example for cancel / reschedule / list / booking success page * fix: unit test mock classNames import from lib * fix: unit test mock classNames import from lib --------- Co-authored-by: Morgan Vernay <morgan@cal.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com>
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
export const BASE_URL = "http://localhost:5555";
|
|
export const API_VERSION = "v2";
|
|
export const V2_ENDPOINTS = {
|
|
me: "me",
|
|
availability: "schedules",
|
|
eventTypes: "event-types",
|
|
bookings: "ee/bookings",
|
|
};
|
|
|
|
export const SUCCESS_STATUS = "success";
|
|
export const ERROR_STATUS = "error";
|
|
// Client Errors (4xx)
|
|
export const BAD_REQUEST = "BAD_REQUEST";
|
|
export const UNAUTHORIZED = "UNAUTHORIZED";
|
|
export const FORBIDDEN = "FORBIDDEN";
|
|
export const NOT_FOUND = "NOT_FOUND";
|
|
export const METHOD_NOT_ALLOWED = "METHOD_NOT_ALLOWED";
|
|
export const UNPROCESSABLE_ENTITY = "UNPROCESSABLE_ENTITY";
|
|
export const ACCESS_TOKEN_EXPIRED = "ACCESS_TOKEN_IS_EXPIRED";
|
|
export const INVALID_ACCESS_TOKEN = "Invalid Access Token.";
|
|
|
|
// Server Errors (5xx)
|
|
export const INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR";
|
|
|
|
// Custom Errors
|
|
export const INVALID_PARAMETER = "INVALID_PARAMETER";
|
|
export const MISSING_PARAMETER = "MISSING_PARAMETER";
|
|
export const INVALID_API_KEY = "INVALID_API_KEY";
|
|
export const RESOURCE_NOT_FOUND = "RESOURCE_NOT_FOUND";
|
|
export const DUPLICATE_RESOURCE = "DUPLICATE_RESOURCE";
|
|
|
|
export const API_ERROR_CODES = [
|
|
BAD_REQUEST,
|
|
UNAUTHORIZED,
|
|
FORBIDDEN,
|
|
NOT_FOUND,
|
|
METHOD_NOT_ALLOWED,
|
|
UNPROCESSABLE_ENTITY,
|
|
INTERNAL_SERVER_ERROR,
|
|
INVALID_PARAMETER,
|
|
MISSING_PARAMETER,
|
|
INVALID_API_KEY,
|
|
RESOURCE_NOT_FOUND,
|
|
DUPLICATE_RESOURCE,
|
|
] as const;
|
|
|
|
// Request headers
|
|
export const X_CAL_SECRET_KEY = "x-cal-secret-key";
|
|
|
|
// HTTP status codes
|
|
export const HTTP_CODE_TOKEN_EXPIRED = 498;
|