initial commit
This commit is contained in:
32
packages/db/shared/schemas/objects/DatabaseBackupOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
32
packages/db/shared/schemas/objects/DatabaseBackupOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const DatabaseBackupOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.DatabaseBackupOrderByWithAggregationInput>;
|
||||
export declare const DatabaseBackupOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupCountOrderByAggregateInput, z.ZodTypeDef, Prisma.DatabaseBackupCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.DatabaseBackupAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.DatabaseBackupMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupMinOrderByAggregateInput, z.ZodTypeDef, Prisma.DatabaseBackupMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupSumOrderByAggregateInput, z.ZodTypeDef, Prisma.DatabaseBackupSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.DatabaseBackupCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.DatabaseBackupMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.DatabaseBackupMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.DatabaseBackupAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.DatabaseBackupSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.DatabaseBackupCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.DatabaseBackupMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.DatabaseBackupMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.DatabaseBackupAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.DatabaseBackupSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=DatabaseBackupOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user