initial commit
This commit is contained in:
32
packages/db/shared/schemas/objects/UserOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
32
packages/db/shared/schemas/objects/UserOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const UserOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.UserOrderByWithAggregationInput>;
|
||||
export declare const UserOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
username: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
password: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserCountOrderByAggregateInput, z.ZodTypeDef, Prisma.UserCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.UserAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.UserMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserMinOrderByAggregateInput, z.ZodTypeDef, Prisma.UserMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserSumOrderByAggregateInput, z.ZodTypeDef, Prisma.UserSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: "asc" | "desc" | undefined;
|
||||
username?: "asc" | "desc" | undefined;
|
||||
password?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.UserCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.UserMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.UserMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.UserAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.UserSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
id?: "asc" | "desc" | undefined;
|
||||
username?: "asc" | "desc" | undefined;
|
||||
password?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.UserCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.UserMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.UserMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.UserAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.UserSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=UserOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user