import type { WebitelCasesStatus } from '@webitel/api-services/gen/models'; import { z } from 'zod'; import type { ZodShape } from '../types'; export const caseStatusSchema = z.object>({ name: z.string().min(1), description: z.string().optional(), });