/* * 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 NotFoundResponseDetail = string | { [k: string]: any }; /** * The specified resource was not found */ export type NotFoundResponseData = { /** * 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; }; /** * The specified resource was not found */ export class NotFoundResponse 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$: NotFoundResponseData; constructor( err: NotFoundResponseData, 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 = "NotFoundResponse"; } } /** @internal */ export const NotFoundResponseDetail$inboundSchema: z.ZodType< NotFoundResponseDetail, z.ZodTypeDef, unknown > = smartUnion([types.string(), z.record(z.any())]); export function notFoundResponseDetailFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => NotFoundResponseDetail$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NotFoundResponseDetail' from JSON`, ); } /** @internal */ export const NotFoundResponse$inboundSchema: z.ZodType< NotFoundResponse, 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 NotFoundResponse(remapped, { request: v.request$, response: v.response$, body: v.body$, }); });