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,83 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const AppointmentProcedureSelectObjectSchema: z.ZodType<Prisma.AppointmentProcedureSelect>;
export declare const AppointmentProcedureSelectObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
appointmentId: z.ZodOptional<z.ZodBoolean>;
patientId: z.ZodOptional<z.ZodBoolean>;
procedureCode: z.ZodOptional<z.ZodBoolean>;
procedureLabel: z.ZodOptional<z.ZodBoolean>;
fee: z.ZodOptional<z.ZodBoolean>;
category: z.ZodOptional<z.ZodBoolean>;
toothNumber: z.ZodOptional<z.ZodBoolean>;
toothSurface: z.ZodOptional<z.ZodBoolean>;
oralCavityArea: z.ZodOptional<z.ZodBoolean>;
source: z.ZodOptional<z.ZodBoolean>;
comboKey: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
}, "strict", z.ZodTypeAny, {
include?: Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}, {
include?: Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}>>]>>;
patient: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
}, "strict", z.ZodTypeAny, {
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}, {
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}>>]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | {
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
category?: boolean | undefined;
toothNumber?: boolean | undefined;
toothSurface?: boolean | undefined;
oralCavityArea?: boolean | undefined;
source?: boolean | undefined;
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | {
include?: Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | {
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
category?: boolean | undefined;
toothNumber?: boolean | undefined;
toothSurface?: boolean | undefined;
oralCavityArea?: boolean | undefined;
source?: boolean | undefined;
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | {
include?: Prisma.AppointmentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.AppointmentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
}>;
//# sourceMappingURL=AppointmentProcedureSelect.schema.d.ts.map