18 lines
584 B
TypeScript
18 lines
584 B
TypeScript
import * as z from 'zod';
|
|
export const AppointmentProcedureFindFirstResultSchema = z.nullable(z.object({
|
|
id: z.number().int(),
|
|
appointmentId: z.number().int(),
|
|
patientId: z.number().int(),
|
|
procedureCode: z.string(),
|
|
procedureLabel: z.string().optional(),
|
|
fee: z.number().optional(),
|
|
category: z.string().optional(),
|
|
toothNumber: z.string().optional(),
|
|
toothSurface: z.string().optional(),
|
|
oralCavityArea: z.string().optional(),
|
|
source: z.unknown(),
|
|
comboKey: z.string().optional(),
|
|
createdAt: z.date(),
|
|
appointment: z.unknown(),
|
|
patient: z.unknown()
|
|
})); |