import * as z from 'zod'; export const CommunicationDirectionSchema = z.enum(['outbound', 'inbound']) export type CommunicationDirection = z.infer;