Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/NotificationMinOrderByAggregateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

26 lines
1.2 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const NotificationMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMinOrderByAggregateInput>;
export declare const NotificationMinOrderByAggregateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
type: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
message: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
read: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
}, "strict", z.ZodTypeAny, {
message?: "asc" | "desc" | undefined;
type?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
read?: "asc" | "desc" | undefined;
}, {
message?: "asc" | "desc" | undefined;
type?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
read?: "asc" | "desc" | undefined;
}>;
//# sourceMappingURL=NotificationMinOrderByAggregateInput.schema.d.ts.map