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

74 lines
7.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const AppointmentWhereInputObjectSchema: z.ZodType<Prisma.AppointmentWhereInput>;
export declare const AppointmentWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>, "many">]>>;
id: 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]>>;
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
staffId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
title: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
date: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
startTime: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
endTime: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
type: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
notes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
procedureCodeNotes: 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.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
eligibilityStatus: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumPatientStatusFilter<never>, z.ZodTypeDef, Prisma.EnumPatientStatusFilter<never>>>, z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>]>>;
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>>]>>;
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarRelationFilter, z.ZodTypeDef, Prisma.UserScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
staff: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffNullableScalarRelationFilter, z.ZodTypeDef, Prisma.StaffNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>]>>;
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureListRelationFilter, z.ZodTypeDef, Prisma.AppointmentProcedureListRelationFilter>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimListRelationFilter, z.ZodTypeDef, Prisma.ClaimListRelationFilter>>>;
}, "strict", z.ZodTypeAny, {
type?: string | Prisma.StringFilter<never> | undefined;
status?: string | Prisma.StringFilter<never> | undefined;
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.AppointmentWhereInput | Prisma.AppointmentWhereInput[] | undefined;
OR?: Prisma.AppointmentWhereInput[] | undefined;
NOT?: Prisma.AppointmentWhereInput | Prisma.AppointmentWhereInput[] | undefined;
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
date?: Date | Prisma.DateTimeFilter<never> | undefined;
title?: string | Prisma.StringFilter<never> | undefined;
patientId?: number | Prisma.IntFilter<never> | undefined;
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
startTime?: string | Prisma.StringFilter<never> | undefined;
endTime?: string | Prisma.StringFilter<never> | undefined;
notes?: string | Prisma.StringNullableFilter<never> | null | undefined;
procedureCodeNotes?: string | Prisma.StringNullableFilter<never> | null | undefined;
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFilter<never> | undefined;
staff?: Prisma.StaffNullableScalarRelationFilter | Prisma.StaffWhereInput | undefined;
procedures?: Prisma.AppointmentProcedureListRelationFilter | undefined;
staffId?: number | Prisma.IntFilter<never> | undefined;
claims?: Prisma.ClaimListRelationFilter | undefined;
}, {
type?: string | Prisma.StringFilter<never> | undefined;
status?: string | Prisma.StringFilter<never> | undefined;
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.AppointmentWhereInput | Prisma.AppointmentWhereInput[] | undefined;
OR?: Prisma.AppointmentWhereInput[] | undefined;
NOT?: Prisma.AppointmentWhereInput | Prisma.AppointmentWhereInput[] | undefined;
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
date?: Date | Prisma.DateTimeFilter<never> | undefined;
title?: string | Prisma.StringFilter<never> | undefined;
patientId?: number | Prisma.IntFilter<never> | undefined;
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
startTime?: string | Prisma.StringFilter<never> | undefined;
endTime?: string | Prisma.StringFilter<never> | undefined;
notes?: string | Prisma.StringNullableFilter<never> | null | undefined;
procedureCodeNotes?: string | Prisma.StringNullableFilter<never> | null | undefined;
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFilter<never> | undefined;
staff?: Prisma.StaffNullableScalarRelationFilter | Prisma.StaffWhereInput | undefined;
procedures?: Prisma.AppointmentProcedureListRelationFilter | undefined;
staffId?: number | Prisma.IntFilter<never> | undefined;
claims?: Prisma.ClaimListRelationFilter | undefined;
}>;
//# sourceMappingURL=AppointmentWhereInput.schema.d.ts.map