import { z } from 'zod'; export const ctiNameSchema = z.object({ name: z.string().min(1).max(100), }); export const createTypeSchema = z.object({ name: z.string().min(1).max(100), categoryId: z.string().min(1), }); export const createItemSchema = z.object({ name: z.string().min(1).max(100), typeId: z.string().min(1), }); export type CtiNameInput = z.infer; export type CreateTypeInput = z.infer; export type CreateItemInput = z.infer;