initial commit
This commit is contained in:
117
packages/db/shared/schemas/objects/PatientSelect.schema.d.ts
vendored
Normal file
117
packages/db/shared/schemas/objects/PatientSelect.schema.d.ts
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PatientSelectObjectSchema: z.ZodType<Prisma.PatientSelect>;
|
||||
export declare const PatientSelectObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
firstName: z.ZodOptional<z.ZodBoolean>;
|
||||
lastName: z.ZodOptional<z.ZodBoolean>;
|
||||
dateOfBirth: z.ZodOptional<z.ZodBoolean>;
|
||||
gender: z.ZodOptional<z.ZodBoolean>;
|
||||
phone: z.ZodOptional<z.ZodBoolean>;
|
||||
email: z.ZodOptional<z.ZodBoolean>;
|
||||
address: z.ZodOptional<z.ZodBoolean>;
|
||||
city: z.ZodOptional<z.ZodBoolean>;
|
||||
zipCode: z.ZodOptional<z.ZodBoolean>;
|
||||
insuranceProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
insuranceId: z.ZodOptional<z.ZodBoolean>;
|
||||
groupNumber: z.ZodOptional<z.ZodBoolean>;
|
||||
policyHolder: z.ZodOptional<z.ZodBoolean>;
|
||||
allergies: z.ZodOptional<z.ZodBoolean>;
|
||||
medicalConditions: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
userId: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
appointments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
procedures: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentProcedureFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
claims: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
groups: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.PdfGroupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfGroupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
payment: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
communications: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
documents: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.PatientDocumentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientDocumentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
_count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
select?: Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
select?: Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
procedures?: boolean | Prisma.AppointmentProcedureFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
claims?: boolean | Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
appointments?: boolean | Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
payment?: boolean | Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
dateOfBirth?: boolean | undefined;
|
||||
insuranceProvider?: boolean | undefined;
|
||||
firstName?: boolean | undefined;
|
||||
lastName?: boolean | undefined;
|
||||
gender?: boolean | undefined;
|
||||
address?: boolean | undefined;
|
||||
city?: boolean | undefined;
|
||||
zipCode?: boolean | undefined;
|
||||
insuranceId?: boolean | undefined;
|
||||
groupNumber?: boolean | undefined;
|
||||
policyHolder?: boolean | undefined;
|
||||
allergies?: boolean | undefined;
|
||||
medicalConditions?: boolean | undefined;
|
||||
groups?: boolean | Prisma.PdfGroupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
documents?: boolean | Prisma.PatientDocumentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
communications?: boolean | Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
procedures?: boolean | Prisma.AppointmentProcedureFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
claims?: boolean | Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
appointments?: boolean | Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
payment?: boolean | Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
dateOfBirth?: boolean | undefined;
|
||||
insuranceProvider?: boolean | undefined;
|
||||
firstName?: boolean | undefined;
|
||||
lastName?: boolean | undefined;
|
||||
gender?: boolean | undefined;
|
||||
address?: boolean | undefined;
|
||||
city?: boolean | undefined;
|
||||
zipCode?: boolean | undefined;
|
||||
insuranceId?: boolean | undefined;
|
||||
groupNumber?: boolean | undefined;
|
||||
policyHolder?: boolean | undefined;
|
||||
allergies?: boolean | undefined;
|
||||
medicalConditions?: boolean | undefined;
|
||||
groups?: boolean | Prisma.PdfGroupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
documents?: boolean | Prisma.PatientDocumentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
communications?: boolean | Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.PatientCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PatientSelect.schema.d.ts.map
|
||||
Reference in New Issue
Block a user