Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.d.ts
2026-04-04 22:13:55 -04:00

42 lines
2.7 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const AppointmentProcedureCreateWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureCreateWithoutAppointmentInput>;
export declare const AppointmentProcedureCreateWithoutAppointmentInputObjectZodSchema: 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>;
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutProceduresInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutProceduresInput>>;
}, "strict", z.ZodTypeAny, {
patient: Prisma.PatientCreateNestedOneWithoutProceduresInput;
procedureCode: string;
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;
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=AppointmentProcedureCreateWithoutAppointmentInput.schema.d.ts.map