42 lines
2.7 KiB
TypeScript
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 AppointmentProcedureCreateWithoutPatientInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureCreateWithoutPatientInput>;
|
|
export declare const AppointmentProcedureCreateWithoutPatientInputObjectZodSchema: 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>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
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;
|
|
}, {
|
|
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=AppointmentProcedureCreateWithoutPatientInput.schema.d.ts.map
|