41 lines
2.6 KiB
TypeScript
41 lines
2.6 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const NotificationOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.NotificationOrderByWithAggregationInput>;
|
|
export declare const NotificationOrderByWithAggregationInputObjectZodSchema: 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"]>>;
|
|
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationCountOrderByAggregateInput, z.ZodTypeDef, Prisma.NotificationCountOrderByAggregateInput>>>;
|
|
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.NotificationAvgOrderByAggregateInput>>>;
|
|
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.NotificationMaxOrderByAggregateInput>>>;
|
|
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationMinOrderByAggregateInput, z.ZodTypeDef, Prisma.NotificationMinOrderByAggregateInput>>>;
|
|
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationSumOrderByAggregateInput, z.ZodTypeDef, Prisma.NotificationSumOrderByAggregateInput>>>;
|
|
}, "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;
|
|
_count?: Prisma.NotificationCountOrderByAggregateInput | undefined;
|
|
_min?: Prisma.NotificationMinOrderByAggregateInput | undefined;
|
|
_max?: Prisma.NotificationMaxOrderByAggregateInput | undefined;
|
|
_avg?: Prisma.NotificationAvgOrderByAggregateInput | undefined;
|
|
_sum?: Prisma.NotificationSumOrderByAggregateInput | 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;
|
|
_count?: Prisma.NotificationCountOrderByAggregateInput | undefined;
|
|
_min?: Prisma.NotificationMinOrderByAggregateInput | undefined;
|
|
_max?: Prisma.NotificationMaxOrderByAggregateInput | undefined;
|
|
_avg?: Prisma.NotificationAvgOrderByAggregateInput | undefined;
|
|
_sum?: Prisma.NotificationSumOrderByAggregateInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=NotificationOrderByWithAggregationInput.schema.d.ts.map
|