/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { smartUnion } from "../../types/smartUnion.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SystemEvent, SystemEvent$inboundSchema } from "./systemevent.js"; import { UserEvent, UserEvent$inboundSchema } from "./userevent.js"; export type Event = UserEvent | SystemEvent; /** @internal */ export const Event$inboundSchema: z.ZodMiniType = smartUnion([ UserEvent$inboundSchema, SystemEvent$inboundSchema, ]); export function eventFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => Event$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Event' from JSON`, ); }