initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
import * as z from 'zod';
export declare const AppointmentProcedureCreateResultSchema: z.ZodObject<{
id: z.ZodNumber;
appointmentId: z.ZodNumber;
patientId: z.ZodNumber;
procedureCode: z.ZodString;
procedureLabel: z.ZodOptional<z.ZodString>;
fee: z.ZodOptional<z.ZodNumber>;
category: z.ZodOptional<z.ZodString>;
toothNumber: z.ZodOptional<z.ZodString>;
toothSurface: z.ZodOptional<z.ZodString>;
oralCavityArea: z.ZodOptional<z.ZodString>;
source: z.ZodUnknown;
comboKey: z.ZodOptional<z.ZodString>;
createdAt: z.ZodDate;
appointment: z.ZodUnknown;
patient: z.ZodUnknown;
}, "strip", z.ZodTypeAny, {
createdAt: Date;
id: number;
patientId: number;
procedureCode: string;
appointmentId: number;
patient?: unknown;
procedureLabel?: string | undefined;
fee?: number | undefined;
category?: string | undefined;
toothNumber?: string | undefined;
toothSurface?: string | undefined;
oralCavityArea?: string | undefined;
source?: unknown;
comboKey?: string | undefined;
appointment?: unknown;
}, {
createdAt: Date;
id: number;
patientId: number;
procedureCode: string;
appointmentId: number;
patient?: unknown;
procedureLabel?: string | undefined;
fee?: number | undefined;
category?: string | undefined;
toothNumber?: string | undefined;
toothSurface?: string | undefined;
oralCavityArea?: string | undefined;
source?: unknown;
comboKey?: string | undefined;
appointment?: unknown;
}>;
//# sourceMappingURL=AppointmentProcedureCreateResult.schema.d.ts.map