50 lines
2.3 KiB
TypeScript
50 lines
2.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentCountOrderByAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentCountOrderByAggregateInput>;
|
|
export declare const AppointmentCountOrderByAggregateInputObjectZodSchema: 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=AppointmentCountOrderByAggregateInput.schema.d.ts.map
|