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

11 lines
548 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { SortOrderSchema } from '../enums/SortOrder.schema'
const makeSchema = () => z.object({
id: SortOrderSchema.optional(),
userId: SortOrderSchema.optional()
}).strict();
export const NotificationSumOrderByAggregateInputObjectSchema: z.ZodType<Prisma.NotificationSumOrderByAggregateInput> = makeSchema() as unknown as z.ZodType<Prisma.NotificationSumOrderByAggregateInput>;
export const NotificationSumOrderByAggregateInputObjectZodSchema = makeSchema();