UNPKG

@devma/qloo

Version:

TypeScript SDK for the Qloo Insights API - Generate taste-based insights and recommendations

29 lines 969 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { QlooError } from "./qlooerror.js"; import { formatZodError } from "./sdkvalidationerror.js"; export class ResponseValidationError extends QlooError { constructor(message, extra) { super(message, extra); this.name = "ResponseValidationError"; this.cause = extra.cause; this.rawValue = extra.rawValue; this.rawMessage = extra.rawMessage; } /** * Return a pretty-formatted error message if the underlying validation error * is a ZodError or some other recognized error type, otherwise return the * default error message. */ pretty() { if (this.cause instanceof z.ZodError) { return `${this.rawMessage}\n${formatZodError(this.cause)}`; } else { return this.toString(); } } } //# sourceMappingURL=responsevalidationerror.js.map