/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 930655ad1e62 */ import * as z from "zod/v4"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateDefinition = { /** * Name of the update */ name: string; /** * Description of the update */ description?: string | null | undefined; /** * Input JSON schema of the update's model */ inputSchema: { [k: string]: any }; /** * Output JSON schema of the update's model */ outputSchema?: { [k: string]: any } | null | undefined; }; /** @internal */ export const UpdateDefinition$inboundSchema: z.ZodType< UpdateDefinition, unknown > = z.object({ name: z.string(), description: z.nullable(z.string()).optional(), input_schema: z.record(z.string(), z.any()), output_schema: z.nullable(z.record(z.string(), z.any())).optional(), }).transform((v) => { return remap$(v, { "input_schema": "inputSchema", "output_schema": "outputSchema", }); }); export function updateDefinitionFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => UpdateDefinition$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UpdateDefinition' from JSON`, ); }