initial commit
This commit is contained in:
38
packages/db/shared/schemas/objects/BackupDestinationOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
38
packages/db/shared/schemas/objects/BackupDestinationOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const BackupDestinationOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.BackupDestinationOrderByWithAggregationInput>;
|
||||
export declare const BackupDestinationOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
path: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
isActive: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationCountOrderByAggregateInput, z.ZodTypeDef, Prisma.BackupDestinationCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.BackupDestinationAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.BackupDestinationMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationMinOrderByAggregateInput, z.ZodTypeDef, Prisma.BackupDestinationMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationSumOrderByAggregateInput, z.ZodTypeDef, Prisma.BackupDestinationSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
path?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
isActive?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.BackupDestinationCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.BackupDestinationMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.BackupDestinationMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.BackupDestinationAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.BackupDestinationSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
path?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
isActive?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.BackupDestinationCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.BackupDestinationMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.BackupDestinationMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.BackupDestinationAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.BackupDestinationSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=BackupDestinationOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user