UNPKG

orb-billing

Version:

The official TypeScript library for the Orb API

266 lines 10.2 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { castToError } from "./core.mjs"; export class OrbError extends Error { } export class APIError extends OrbError { constructor(status, error, message, headers) { super(`${APIError.makeMessage(status, error, message)}`); this.status = status; this.headers = headers; this.error = error; } static makeMessage(status, error, message) { const msg = error?.message ? typeof error.message === 'string' ? error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) : message; if (status && msg) { return `${status} ${msg}`; } if (status) { return `${status} status code (no body)`; } if (msg) { return msg; } return '(no status code or body)'; } static generate(status, errorResponse, message, headers) { if (!status || !headers) { return new APIConnectionError({ message, cause: castToError(errorResponse) }); } const error = errorResponse; const type = error?.['type']; if (type === 'https://docs.withorb.com/reference/error-responses#400-constraint-violation' && status === 400) { return new ConstraintViolation(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#400-duplicate-resource-creation' && status === 400) { return new DuplicateResourceCreation(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#404-feature-not-available' && status === 400) { return new FeatureNotAvailable(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#400-request-validation-errors' && status === 400) { return new RequestValidationError(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#401-authentication-error' && status === 401) { return new OrbAuthenticationError(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#404-resource-not-found' && status === 404) { return new ResourceNotFound(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#404-url-not-found' && status === 404) { return new URLNotFound(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#409-resource-conflict' && status === 409) { return new ResourceConflict(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#413-request-too-large' && status === 413) { return new RequestTooLarge(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#413-resource-too-large' && status === 413) { return new ResourceTooLarge(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#429-too-many-requests' && status === 429) { return new TooManyRequests(status, error, message, headers); } if (type === 'https://docs.withorb.com/reference/error-responses#500-internal-server-error' && status === 500) { return new OrbInternalServerError(status, error, message, headers); } if (status === 400) { return new BadRequestError(status, error, message, headers); } if (status === 401) { return new AuthenticationError(status, error, message, headers); } if (status === 403) { return new PermissionDeniedError(status, error, message, headers); } if (status === 404) { return new NotFoundError(status, error, message, headers); } if (status === 409) { return new ConflictError(status, error, message, headers); } if (status === 422) { return new UnprocessableEntityError(status, error, message, headers); } if (status === 429) { return new RateLimitError(status, error, message, headers); } if (status >= 500) { return new InternalServerError(status, error, message, headers); } return new APIError(status, error, message, headers); } } export class APIUserAbortError extends APIError { constructor({ message } = {}) { super(undefined, undefined, message || 'Request was aborted.', undefined); } } export class APIConnectionError extends APIError { constructor({ message, cause }) { super(undefined, undefined, message || 'Connection error.', undefined); // in some environments the 'cause' property is already declared // @ts-ignore if (cause) this.cause = cause; } } export class APIConnectionTimeoutError extends APIConnectionError { constructor({ message } = {}) { super({ message: message ?? 'Request timed out.' }); } } export class BadRequestError extends APIError { } export class AuthenticationError extends APIError { } export class PermissionDeniedError extends APIError { } export class NotFoundError extends APIError { } export class ConflictError extends APIError { } export class UnprocessableEntityError extends APIError { } export class RateLimitError extends APIError { } export class InternalServerError extends APIError { } export class ConstraintViolation extends BadRequestError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class DuplicateResourceCreation extends BadRequestError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class FeatureNotAvailable extends BadRequestError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class RequestValidationError extends BadRequestError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.validation_errors = data?.['validation_errors'] ?? []; this.detail = data?.['detail']; this.title = data?.['title']; } } export class OrbAuthenticationError extends AuthenticationError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class ResourceNotFound extends NotFoundError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.title = data?.['title']; this.type = data?.['type']; this.detail = data?.['detail']; } } export class URLNotFound extends NotFoundError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class ResourceConflict extends ConflictError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class RequestTooLarge extends APIError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class ResourceTooLarge extends APIError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class TooManyRequests extends RateLimitError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } export class OrbInternalServerError extends InternalServerError { constructor(status, error, message, headers) { const data = error; super(status, error, message, headers); this.status = data?.['status']; this.type = data?.['type']; this.detail = data?.['detail']; this.title = data?.['title']; } } //# sourceMappingURL=error.mjs.map