20 lines
998 B
TypeScript
20 lines
998 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentProcedureAvgOrderByAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureAvgOrderByAggregateInput>;
|
|
export declare const AppointmentProcedureAvgOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
appointmentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
fee: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: "asc" | "desc" | undefined;
|
|
patientId?: "asc" | "desc" | undefined;
|
|
fee?: "asc" | "desc" | undefined;
|
|
appointmentId?: "asc" | "desc" | undefined;
|
|
}, {
|
|
id?: "asc" | "desc" | undefined;
|
|
patientId?: "asc" | "desc" | undefined;
|
|
fee?: "asc" | "desc" | undefined;
|
|
appointmentId?: "asc" | "desc" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentProcedureAvgOrderByAggregateInput.schema.d.ts.map
|