Files
kan/packages/api/src/schemas/list.ts
2026-04-18 21:29:35 +01:00

14 lines
517 B
TypeScript

import { z } from "zod";
// ─── list.create ─────────────────────────────────────────────
export const listCreateResponseSchema = z.object({
publicId: z.string(),
name: z.string(),
});
// ─── list.update / list.reorder ──────────────────────────────
export const listUpdateResponseSchema = z.object({
publicId: z.string(),
name: z.string(),
});