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

74 lines
7.3 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PatientScalarWhereInputObjectSchema: z.ZodType<Prisma.PatientScalarWhereInput>;
export declare const PatientScalarWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientScalarWhereInput, z.ZodTypeDef, Prisma.PatientScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientScalarWhereInput, z.ZodTypeDef, Prisma.PatientScalarWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientScalarWhereInput, z.ZodTypeDef, Prisma.PatientScalarWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientScalarWhereInput, z.ZodTypeDef, Prisma.PatientScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientScalarWhereInput, z.ZodTypeDef, Prisma.PatientScalarWhereInput>>, "many">]>>;
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
firstName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
lastName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
dateOfBirth: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
gender: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
phone: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
email: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
address: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
city: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
zipCode: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
insuranceProvider: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
insuranceId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
groupNumber: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
policyHolder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
allergies: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
medicalConditions: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
status: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumPatientStatusFilter<never>, z.ZodTypeDef, Prisma.EnumPatientStatusFilter<never>>>, z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>]>>;
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
}, "strict", z.ZodTypeAny, {
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFilter<never> | undefined;
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.PatientScalarWhereInput | Prisma.PatientScalarWhereInput[] | undefined;
OR?: Prisma.PatientScalarWhereInput[] | undefined;
NOT?: Prisma.PatientScalarWhereInput | Prisma.PatientScalarWhereInput[] | undefined;
email?: string | Prisma.StringNullableFilter<never> | null | undefined;
phone?: string | Prisma.StringFilter<never> | undefined;
dateOfBirth?: Date | Prisma.DateTimeFilter<never> | undefined;
insuranceProvider?: string | Prisma.StringNullableFilter<never> | null | undefined;
firstName?: string | Prisma.StringFilter<never> | undefined;
lastName?: string | Prisma.StringFilter<never> | undefined;
gender?: string | Prisma.StringFilter<never> | undefined;
address?: string | Prisma.StringNullableFilter<never> | null | undefined;
city?: string | Prisma.StringNullableFilter<never> | null | undefined;
zipCode?: string | Prisma.StringNullableFilter<never> | null | undefined;
insuranceId?: string | Prisma.StringNullableFilter<never> | null | undefined;
groupNumber?: string | Prisma.StringNullableFilter<never> | null | undefined;
policyHolder?: string | Prisma.StringNullableFilter<never> | null | undefined;
allergies?: string | Prisma.StringNullableFilter<never> | null | undefined;
medicalConditions?: string | Prisma.StringNullableFilter<never> | null | undefined;
}, {
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFilter<never> | undefined;
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.PatientScalarWhereInput | Prisma.PatientScalarWhereInput[] | undefined;
OR?: Prisma.PatientScalarWhereInput[] | undefined;
NOT?: Prisma.PatientScalarWhereInput | Prisma.PatientScalarWhereInput[] | undefined;
email?: string | Prisma.StringNullableFilter<never> | null | undefined;
phone?: string | Prisma.StringFilter<never> | undefined;
dateOfBirth?: Date | Prisma.DateTimeFilter<never> | undefined;
insuranceProvider?: string | Prisma.StringNullableFilter<never> | null | undefined;
firstName?: string | Prisma.StringFilter<never> | undefined;
lastName?: string | Prisma.StringFilter<never> | undefined;
gender?: string | Prisma.StringFilter<never> | undefined;
address?: string | Prisma.StringNullableFilter<never> | null | undefined;
city?: string | Prisma.StringNullableFilter<never> | null | undefined;
zipCode?: string | Prisma.StringNullableFilter<never> | null | undefined;
insuranceId?: string | Prisma.StringNullableFilter<never> | null | undefined;
groupNumber?: string | Prisma.StringNullableFilter<never> | null | undefined;
policyHolder?: string | Prisma.StringNullableFilter<never> | null | undefined;
allergies?: string | Prisma.StringNullableFilter<never> | null | undefined;
medicalConditions?: string | Prisma.StringNullableFilter<never> | null | undefined;
}>;
//# sourceMappingURL=PatientScalarWhereInput.schema.d.ts.map