/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as types from "../../types/primitives.js"; import { smartUnion } from "../../types/smartUnion.js"; import { ApideckError } from "./apideckerror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; /** * Contains parameter or domain specific information related to the error and why it occurred. */ export type UnprocessableResponseDetail = string | { [k: string]: any }; /** * Unprocessable */ export type UnprocessableResponseData = { /** * HTTP status code */ statusCode?: number | undefined; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) */ error?: string | undefined; /** * The type of error returned */ typeName?: string | undefined; /** * A human-readable message providing more details about the error. */ message?: string | undefined; /** * Contains parameter or domain specific information related to the error and why it occurred. */ detail?: string | { [k: string]: any } | undefined; /** * Link to documentation of error type */ ref?: string | undefined; }; /** * Unprocessable */ export class UnprocessableResponse extends ApideckError { /** * HTTP status code */ statusCode?: number | undefined; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) */ error?: string | undefined; /** * The type of error returned */ typeName?: string | undefined; /** * Contains parameter or domain specific information related to the error and why it occurred. */ detail?: string | { [k: string]: any } | undefined; /** * Link to documentation of error type */ ref?: string | undefined; /** The original data that was passed to this error instance. */ data$: UnprocessableResponseData; constructor( err: UnprocessableResponseData, httpMeta: { response: Response; request: Request; body: string }, ) { const message = err.message || `API error occurred: ${JSON.stringify(err)}`; super(message, httpMeta); this.data$ = err; if (err.statusCode != null) this.statusCode = err.statusCode; if (err.error != null) this.error = err.error; if (err.typeName != null) this.typeName = err.typeName; if (err.detail != null) this.detail = err.detail; if (err.ref != null) this.ref = err.ref; this.name = "UnprocessableResponse"; } } /** @internal */ export const UnprocessableResponseDetail$inboundSchema: z.ZodType< UnprocessableResponseDetail, z.ZodTypeDef, unknown > = smartUnion([types.string(), z.record(z.any())]); export function unprocessableResponseDetailFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => UnprocessableResponseDetail$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UnprocessableResponseDetail' from JSON`, ); } /** @internal */ export const UnprocessableResponse$inboundSchema: z.ZodType< UnprocessableResponse, z.ZodTypeDef, unknown > = z.object({ status_code: types.optional(types.number()), error: types.optional(types.string()), type_name: types.optional(types.string()), message: types.optional(types.string()), detail: types.optional(smartUnion([types.string(), z.record(z.any())])), ref: types.optional(types.string()), request$: z.instanceof(Request), response$: z.instanceof(Response), body$: z.string(), }) .transform((v) => { const remapped = remap$(v, { "status_code": "statusCode", "type_name": "typeName", }); return new UnprocessableResponse(remapped, { request: v.request$, response: v.response$, body: v.body$, }); });