initial commit
This commit is contained in:
97
packages/db/shared/schemas/findFirstAppointment.schema.d.ts
vendored
Normal file
97
packages/db/shared/schemas/findFirstAppointment.schema.d.ts
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const AppointmentFindFirstSelectSchema: z.ZodType<Prisma.AppointmentSelect>;
|
||||
export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
userId: z.ZodOptional<z.ZodBoolean>;
|
||||
staffId: z.ZodOptional<z.ZodBoolean>;
|
||||
title: z.ZodOptional<z.ZodBoolean>;
|
||||
date: z.ZodOptional<z.ZodBoolean>;
|
||||
startTime: z.ZodOptional<z.ZodBoolean>;
|
||||
endTime: z.ZodOptional<z.ZodBoolean>;
|
||||
type: z.ZodOptional<z.ZodBoolean>;
|
||||
notes: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureCodeNotes: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
eligibilityStatus: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
procedures: z.ZodOptional<z.ZodBoolean>;
|
||||
claims: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
endTime?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
endTime?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}>;
|
||||
export declare const AppointmentFindFirstSchema: z.ZodType<Prisma.AppointmentFindFirstArgs>;
|
||||
export declare const AppointmentFindFirstZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.AppointmentOrderByWithRelationInput, z.ZodTypeDef, Prisma.AppointmentOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.AppointmentOrderByWithRelationInput, z.ZodTypeDef, Prisma.AppointmentOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.AppointmentWhereInput, z.ZodTypeDef, Prisma.AppointmentWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "userId", "staffId", "title", "date", "startTime", "endTime", "type", "notes", "procedureCodeNotes", "status", "createdAt", "eligibilityStatus"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "userId", "staffId", "title", "date", "startTime", "endTime", "type", "notes", "procedureCodeNotes", "status", "createdAt", "eligibilityStatus"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.AppointmentWhereInput | undefined;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.AppointmentOrderByWithRelationInput | Prisma.AppointmentOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentWhereInput | undefined;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.AppointmentOrderByWithRelationInput | Prisma.AppointmentOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstAppointment.schema.d.ts.map
|
||||
Reference in New Issue
Block a user