/** * Generated by @skyleague/therefore * Do not manually touch this */ // biome-ignore-all lint: this file is generated /* eslint-disable */ import { z } from 'zod/v4' export const CreateTodoRequest = z.object({ title: z.string(), }) export type CreateTodoRequest = z.infer export const CreateTodoResponse = z.object({ completed: z.boolean(), id: z.string(), title: z.string(), }) export type CreateTodoResponse = z.infer export const ListTodosResponse = z .object({ completed: z.boolean(), id: z.string(), title: z.string(), }) .array() export type ListTodosResponse = z.infer