* chore: remove /ee from apiv2 urls * fixup! chore: remove /ee from apiv2 urls * chore: remove /ee from apiv2 urls * fixup! chore: remove /ee from apiv2 urls * fixup! fixup! chore: remove /ee from apiv2 urls * fixup! fixup! fixup! chore: remove /ee from apiv2 urls
53 lines
1.5 KiB
TypeScript
53 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: "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";
|
|
export const X_CAL_CLIENT_ID = "x-cal-client-id";
|
|
|
|
// HTTP status codes
|
|
export const HTTP_CODE_TOKEN_EXPIRED = 498;
|