import * as z from 'zod'; export const AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'notes', 'procedureCodeNotes', 'status', 'createdAt', 'eligibilityStatus']) export type AppointmentScalarFieldEnum = z.infer;