57 lines
6.5 KiB
TypeScript
57 lines
6.5 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const AppointmentProcedureScalarWhereInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureScalarWhereInput>;
|
|
export declare const AppointmentProcedureScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureScalarWhereInput, z.ZodTypeDef, Prisma.AppointmentProcedureScalarWhereInput>>, "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]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.AppointmentProcedureScalarWhereInput | Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
OR?: Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.AppointmentProcedureScalarWhereInput | Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
patientId?: number | Prisma.IntFilter<never> | 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;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.AppointmentProcedureScalarWhereInput | Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
OR?: Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.AppointmentProcedureScalarWhereInput | Prisma.AppointmentProcedureScalarWhereInput[] | undefined;
|
|
patientId?: number | Prisma.IntFilter<never> | 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;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentProcedureScalarWhereInput.schema.d.ts.map
|