import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * A collection of codes that generally means the end user got something wrong in making the request */ export type BadRequestErrorData = { message?: string | undefined; additionalProperties: { [k: string]: any; }; }; /** * A collection of codes that generally means the end user got something wrong in making the request */ export declare class BadRequestError extends OutpostError { additionalProperties: { [k: string]: any; }; /** The original data that was passed to this error instance. */ data$: BadRequestErrorData; constructor(err: BadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const BadRequestError$inboundSchema: z.ZodType; /** @internal */ export type BadRequestError$Outbound = { message?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const BadRequestError$outboundSchema: z.ZodType; //# sourceMappingURL=badrequesterror.d.ts.map