83 lines
5.1 KiB
TypeScript
83 lines
5.1 KiB
TypeScript
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
|