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