initial commit
This commit is contained in:
38
packages/db/shared/schemas/objects/PdfGroupWhereInput.schema.d.ts
vendored
Normal file
38
packages/db/shared/schemas/objects/PdfGroupWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PdfGroupWhereInputObjectSchema: z.ZodType<Prisma.PdfGroupWhereInput>;
|
||||
export declare const PdfGroupWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>, "many">]>>;
|
||||
id: 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]>>;
|
||||
titleKey: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumPdfTitleKeyFilter<never>, z.ZodTypeDef, Prisma.EnumPdfTitleKeyFilter<never>>>, z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>]>>;
|
||||
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
||||
patientId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
||||
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>>]>>;
|
||||
pdfs: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfFileListRelationFilter, z.ZodTypeDef, Prisma.PdfFileListRelationFilter>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.PdfGroupWhereInput | Prisma.PdfGroupWhereInput[] | undefined;
|
||||
OR?: Prisma.PdfGroupWhereInput[] | undefined;
|
||||
NOT?: Prisma.PdfGroupWhereInput | Prisma.PdfGroupWhereInput[] | undefined;
|
||||
title?: string | Prisma.StringFilter<never> | undefined;
|
||||
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | Prisma.EnumPdfTitleKeyFilter<never> | undefined;
|
||||
pdfs?: Prisma.PdfFileListRelationFilter | undefined;
|
||||
patientId?: number | Prisma.IntFilter<never> | undefined;
|
||||
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
|
||||
}, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.PdfGroupWhereInput | Prisma.PdfGroupWhereInput[] | undefined;
|
||||
OR?: Prisma.PdfGroupWhereInput[] | undefined;
|
||||
NOT?: Prisma.PdfGroupWhereInput | Prisma.PdfGroupWhereInput[] | undefined;
|
||||
title?: string | Prisma.StringFilter<never> | undefined;
|
||||
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | Prisma.EnumPdfTitleKeyFilter<never> | undefined;
|
||||
pdfs?: Prisma.PdfFileListRelationFilter | undefined;
|
||||
patientId?: number | Prisma.IntFilter<never> | undefined;
|
||||
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PdfGroupWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user