initial commit
This commit is contained in:
81
packages/db/shared/schemas/objects/AppointmentInclude.schema.d.ts
vendored
Normal file
81
packages/db/shared/schemas/objects/AppointmentInclude.schema.d.ts
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentIncludeObjectSchema: z.ZodType<Prisma.AppointmentInclude>;
|
||||
export declare const AppointmentIncludeObjectZodSchema: z.ZodObject<{
|
||||
patient: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
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;
|
||||
}>>]>>;
|
||||
staff: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.StaffSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.StaffSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.StaffSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
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>>>]>>;
|
||||
_count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
select?: Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
select?: Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
user?: boolean | {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
patient?: boolean | {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
staff?: boolean | {
|
||||
include?: Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.StaffSelect<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;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}, {
|
||||
user?: boolean | {
|
||||
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
patient?: boolean | {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
staff?: boolean | {
|
||||
include?: Prisma.StaffInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.StaffSelect<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;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.AppointmentCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentInclude.schema.d.ts.map
|
||||
Reference in New Issue
Block a user