initial commit
This commit is contained in:
50
packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.d.ts
vendored
Normal file
50
packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentMaxOrderByAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentMaxOrderByAggregateInput>;
|
||||
export declare const AppointmentMaxOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
staffId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
title: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
date: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
startTime: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
endTime: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
type: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
notes: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
procedureCodeNotes: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
status: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
eligibilityStatus: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type?: "asc" | "desc" | undefined;
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
date?: "asc" | "desc" | undefined;
|
||||
title?: "asc" | "desc" | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
startTime?: "asc" | "desc" | undefined;
|
||||
endTime?: "asc" | "desc" | undefined;
|
||||
notes?: "asc" | "desc" | undefined;
|
||||
procedureCodeNotes?: "asc" | "desc" | undefined;
|
||||
eligibilityStatus?: "asc" | "desc" | undefined;
|
||||
staffId?: "asc" | "desc" | undefined;
|
||||
}, {
|
||||
type?: "asc" | "desc" | undefined;
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
date?: "asc" | "desc" | undefined;
|
||||
title?: "asc" | "desc" | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
startTime?: "asc" | "desc" | undefined;
|
||||
endTime?: "asc" | "desc" | undefined;
|
||||
notes?: "asc" | "desc" | undefined;
|
||||
procedureCodeNotes?: "asc" | "desc" | undefined;
|
||||
eligibilityStatus?: "asc" | "desc" | undefined;
|
||||
staffId?: "asc" | "desc" | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentMaxOrderByAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user