45 lines
2.6 KiB
TypeScript
45 lines
2.6 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const AppointmentProcedureCreateManyPatientInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureCreateManyPatientInput>;
|
|
export declare const AppointmentProcedureCreateManyPatientInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
appointmentId: z.ZodNumber;
|
|
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>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
procedureCode: string;
|
|
appointmentId: number;
|
|
createdAt?: Date | undefined;
|
|
id?: number | 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;
|
|
appointmentId: number;
|
|
createdAt?: Date | undefined;
|
|
id?: number | 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=AppointmentProcedureCreateManyPatientInput.schema.d.ts.map
|