/** * Interface of the server (auto-generated code) */ import { z as zod } from "zod"; export const ZodObjectId = zod.string().length(24, "Invalid ObjectId length").regex(/^[a-fA-F0-9]{24}$/, "Invalid ObjectId format"); export type ObjectId = zod.infer;