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,45 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const AppointmentProcedureCreateInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureCreateInput>;
export declare const AppointmentProcedureCreateInputObjectZodSchema: z.ZodObject<{
procedureCode: z.ZodString;
procedureLabel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
fee: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>>;
category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
toothNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
toothSurface: z.ZodNullable<z.ZodOptional<z.ZodString>>;
oralCavityArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
source: z.ZodOptional<z.ZodEnum<["COMBO", "MANUAL"]>>;
comboKey: z.ZodNullable<z.ZodOptional<z.ZodString>>;
createdAt: z.ZodOptional<z.ZodDate>;
appointment: z.ZodLazy<z.ZodType<Prisma.AppointmentCreateNestedOneWithoutProceduresInput, z.ZodTypeDef, Prisma.AppointmentCreateNestedOneWithoutProceduresInput>>;
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutProceduresInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutProceduresInput>>;
}, "strict", z.ZodTypeAny, {
patient: Prisma.PatientCreateNestedOneWithoutProceduresInput;
procedureCode: string;
appointment: Prisma.AppointmentCreateNestedOneWithoutProceduresInput;
createdAt?: Date | undefined;
procedureLabel?: string | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | null | undefined;
category?: string | null | undefined;
toothNumber?: string | null | undefined;
toothSurface?: string | null | undefined;
oralCavityArea?: string | null | undefined;
source?: "COMBO" | "MANUAL" | undefined;
comboKey?: string | null | undefined;
}, {
patient: Prisma.PatientCreateNestedOneWithoutProceduresInput;
procedureCode: string;
appointment: Prisma.AppointmentCreateNestedOneWithoutProceduresInput;
createdAt?: Date | undefined;
procedureLabel?: string | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | null | undefined;
category?: string | null | undefined;
toothNumber?: string | null | undefined;
toothSurface?: string | null | undefined;
oralCavityArea?: string | null | undefined;
source?: "COMBO" | "MANUAL" | undefined;
comboKey?: string | null | undefined;
}>;
//# sourceMappingURL=AppointmentProcedureCreateInput.schema.d.ts.map