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

57 lines
7.5 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>;
export declare const AppointmentProcedureScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereWithAggregatesInput>>, "many">]>>;
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
appointmentId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
patientId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
procedureCode: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
procedureLabel: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
fee: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DecimalNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DecimalNullableWithAggregatesFilter<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.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
toothNumber: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
toothSurface: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
oralCavityArea: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
source: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumProcedureSourceWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.EnumProcedureSourceWithAggregatesFilter<never>>>, z.ZodEnum<["COMBO", "MANUAL"]>]>>;
comboKey: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
AND?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput | Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
OR?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
NOT?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput | Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
patientId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
procedureCode?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
procedureLabel?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalNullableWithAggregatesFilter<never> | null | undefined;
category?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
toothNumber?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
toothSurface?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
oralCavityArea?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
source?: "COMBO" | "MANUAL" | Prisma.EnumProcedureSourceWithAggregatesFilter<never> | undefined;
comboKey?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
appointmentId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
}, {
createdAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
AND?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput | Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
OR?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
NOT?: Prisma.AppointmentProcedureScalarWhereWithAggregatesInput | Prisma.AppointmentProcedureScalarWhereWithAggregatesInput[] | undefined;
patientId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
procedureCode?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
procedureLabel?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
fee?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalNullableWithAggregatesFilter<never> | null | undefined;
category?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
toothNumber?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
toothSurface?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
oralCavityArea?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
source?: "COMBO" | "MANUAL" | Prisma.EnumProcedureSourceWithAggregatesFilter<never> | undefined;
comboKey?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
appointmentId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
}>;
//# sourceMappingURL=AppointmentProcedureScalarWhereWithAggregatesInput.schema.d.ts.map