/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { workoutSchema } from "./workoutSchema.ts";
import { z } from "zod";
export const updatedWorkoutSchema = z.object({
"type": z.string().describe("Indicates the type of the event (updated)"),
"workout": z.lazy(() => workoutSchema)
})