initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import * as z from 'zod';
|
||||
export const AppointmentProcedureUpsertResultSchema = 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()
|
||||
});
|
||||
Reference in New Issue
Block a user