Files
DentalManagementMHAprilgg/packages/db/shared/schemas/enums/CommunicationStatus.schema.ts
2026-04-04 22:13:55 -04:00

5 lines
229 B
TypeScript

import * as z from 'zod';
export const CommunicationStatusSchema = z.enum(['queued', 'sent', 'delivered', 'failed', 'completed', 'busy', 'no_answer'])
export type CommunicationStatus = z.infer<typeof CommunicationStatusSchema>;