5 lines
229 B
TypeScript
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>; |