/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 069e54dccc2c */ 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 FileChunk = { type?: "file" | undefined; fileId: string; }; /** @internal */ export const FileChunk$inboundSchema: z.ZodType = z.object({ type: z.literal("file").default("file"), file_id: z.string(), }).transform((v) => { return remap$(v, { "file_id": "fileId", }); }); /** @internal */ export type FileChunk$Outbound = { type: "file"; file_id: string; }; /** @internal */ export const FileChunk$outboundSchema: z.ZodType< FileChunk$Outbound, FileChunk > = z.object({ type: z.literal("file").default("file" as const), fileId: z.string(), }).transform((v) => { return remap$(v, { fileId: "file_id", }); }); export function fileChunkToJSON(fileChunk: FileChunk): string { return JSON.stringify(FileChunk$outboundSchema.parse(fileChunk)); } export function fileChunkFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => FileChunk$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'FileChunk' from JSON`, ); }