Files
calendar/packages/platform/constants/api.ts
T
MorganandGitHub f5876ae6d6 chore: rename platform /me endpoints (#14249)
* chore: rename platform me endpoints

* fixup! chore: rename platform me endpoints
2024-03-28 12:28:32 +00:00

52 lines
1.5 KiB
TypeScript

export const BASE_URL = "http://localhost:5555";
export const API_VERSION = "v2";
export const V2_ENDPOINTS = {
me: "ee/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;