/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: deb4b531fae1 */ import * as z from "zod/v4"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { ERR, OK, Result } from "../types/fp.js"; /** * Utility function that executes some code which may throw a ZodError. It * intercepts this error and converts it to an SDKValidationError so as to not * leak Zod implementation details to user code. */ export function parse( rawValue: Inp, fn: (value: Inp) => Out, errorMessage: string, ): Out { try { return fn(rawValue); } catch (err) { if (err instanceof z.ZodError) { throw new SDKValidationError(errorMessage, err, rawValue); } throw err; } } /** * Utility function that executes some code which may result in a ZodError. It * intercepts this error and converts it to an SDKValidationError so as to not * leak Zod implementation details to user code. */ export function safeParse( rawValue: Inp, fn: (value: Inp) => Out, errorMessage: string, ): Result { try { return OK(fn(rawValue)); } catch (err) { return ERR(new SDKValidationError(errorMessage, err, rawValue)); } } export function collectExtraKeys< Shape extends z.ZodRawShape, Catchall extends z.ZodType, K extends string, Optional extends boolean, >( obj: z.ZodObject>, extrasKey: K, optional: Optional, ): z.ZodPipe< z.ZodObject>, z.ZodTransform< & z.output> & (Optional extends false ? { [k in K]: Record>; } : { [k in K]?: Record> | undefined; }), z.output>> > > { return obj.transform((val: any) => { const extras: Record> = {}; const { shape } = obj; for (const [key] of Object.entries(val)) { if (key in shape) { continue; } const v = val[key]; if (typeof v === "undefined") { continue; } extras[key] = v; delete val[key]; } if (optional && Object.keys(extras).length === 0) { return val; } return { ...val, [extrasKey]: extras }; }); }