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

63 lines
7.2 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const AppointmentProcedureWhereInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureWhereInput>;
export declare const AppointmentProcedureWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereInput>>, "many">]>>;
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
appointmentId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
patientId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
procedureCode: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
procedureLabel: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
fee: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DecimalNullableFilter<never>, z.ZodTypeDef, Prisma.DecimalNullableFilter<never>>>, 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.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
toothNumber: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
toothSurface: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
oralCavityArea: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
source: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumProcedureSourceFilter<never>, z.ZodTypeDef, Prisma.EnumProcedureSourceFilter<never>>>, z.ZodEnum<["COMBO", "MANUAL"]>]>>;
comboKey: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
appointment: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentScalarRelationFilter, z.ZodTypeDef, Prisma.AppointmentScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>]>>;
patient: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientScalarRelationFilter, z.ZodTypeDef, Prisma.PatientScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.PatientWhereInput, z.ZodTypeDef, Prisma.PatientWhereInput>>]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.AppointmentProcedureWhereInput | Prisma.AppointmentProcedureWhereInput[] | undefined;
OR?: Prisma.AppointmentProcedureWhereInput[] | undefined;
NOT?: Prisma.AppointmentProcedureWhereInput | Prisma.AppointmentProcedureWhereInput[] | undefined;
patientId?: number | Prisma.IntFilter<never> | undefined;
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
procedureCode?: string | Prisma.StringFilter<never> | undefined;
procedureLabel?: string | Prisma.StringNullableFilter<never> | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalNullableFilter<never> | null | undefined;
category?: string | Prisma.StringNullableFilter<never> | null | undefined;
toothNumber?: string | Prisma.StringNullableFilter<never> | null | undefined;
toothSurface?: string | Prisma.StringNullableFilter<never> | null | undefined;
oralCavityArea?: string | Prisma.StringNullableFilter<never> | null | undefined;
source?: "COMBO" | "MANUAL" | Prisma.EnumProcedureSourceFilter<never> | undefined;
comboKey?: string | Prisma.StringNullableFilter<never> | null | undefined;
appointmentId?: number | Prisma.IntFilter<never> | undefined;
appointment?: Prisma.AppointmentWhereInput | Prisma.AppointmentScalarRelationFilter | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.AppointmentProcedureWhereInput | Prisma.AppointmentProcedureWhereInput[] | undefined;
OR?: Prisma.AppointmentProcedureWhereInput[] | undefined;
NOT?: Prisma.AppointmentProcedureWhereInput | Prisma.AppointmentProcedureWhereInput[] | undefined;
patientId?: number | Prisma.IntFilter<never> | undefined;
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
procedureCode?: string | Prisma.StringFilter<never> | undefined;
procedureLabel?: string | Prisma.StringNullableFilter<never> | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalNullableFilter<never> | null | undefined;
category?: string | Prisma.StringNullableFilter<never> | null | undefined;
toothNumber?: string | Prisma.StringNullableFilter<never> | null | undefined;
toothSurface?: string | Prisma.StringNullableFilter<never> | null | undefined;
oralCavityArea?: string | Prisma.StringNullableFilter<never> | null | undefined;
source?: "COMBO" | "MANUAL" | Prisma.EnumProcedureSourceFilter<never> | undefined;
comboKey?: string | Prisma.StringNullableFilter<never> | null | undefined;
appointmentId?: number | Prisma.IntFilter<never> | undefined;
appointment?: Prisma.AppointmentWhereInput | Prisma.AppointmentScalarRelationFilter | undefined;
}>;
//# sourceMappingURL=AppointmentProcedureWhereInput.schema.d.ts.map