Closed salehi-hassan closed 1 year ago
Hey mswjs/data team,
I'm wondering if you have any plan to bring zod validation into table :) Something like this.
const PostSchema = { dto: z.object({ id: z.string().uuid().describe('primaryKey'), title: z.string(), body: z.string().optional().nullable() }) } const PostTable = generateTable(PostSchema.dto)
Hey mswjs/data team,
I'm wondering if you have any plan to bring zod validation into table :) Something like this.