initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { SortOrderSchema } from '../enums/SortOrder.schema';
import { BackupDestinationCountOrderByAggregateInputObjectSchema as BackupDestinationCountOrderByAggregateInputObjectSchema } from './BackupDestinationCountOrderByAggregateInput.schema';
import { BackupDestinationAvgOrderByAggregateInputObjectSchema as BackupDestinationAvgOrderByAggregateInputObjectSchema } from './BackupDestinationAvgOrderByAggregateInput.schema';
import { BackupDestinationMaxOrderByAggregateInputObjectSchema as BackupDestinationMaxOrderByAggregateInputObjectSchema } from './BackupDestinationMaxOrderByAggregateInput.schema';
import { BackupDestinationMinOrderByAggregateInputObjectSchema as BackupDestinationMinOrderByAggregateInputObjectSchema } from './BackupDestinationMinOrderByAggregateInput.schema';
import { BackupDestinationSumOrderByAggregateInputObjectSchema as BackupDestinationSumOrderByAggregateInputObjectSchema } from './BackupDestinationSumOrderByAggregateInput.schema'
const makeSchema = () => z.object({
id: SortOrderSchema.optional(),
userId: SortOrderSchema.optional(),
path: SortOrderSchema.optional(),
isActive: SortOrderSchema.optional(),
createdAt: SortOrderSchema.optional(),
_count: z.lazy(() => BackupDestinationCountOrderByAggregateInputObjectSchema).optional(),
_avg: z.lazy(() => BackupDestinationAvgOrderByAggregateInputObjectSchema).optional(),
_max: z.lazy(() => BackupDestinationMaxOrderByAggregateInputObjectSchema).optional(),
_min: z.lazy(() => BackupDestinationMinOrderByAggregateInputObjectSchema).optional(),
_sum: z.lazy(() => BackupDestinationSumOrderByAggregateInputObjectSchema).optional()
}).strict();
export const BackupDestinationOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.BackupDestinationOrderByWithAggregationInput> = makeSchema() as unknown as z.ZodType<Prisma.BackupDestinationOrderByWithAggregationInput>;
export const BackupDestinationOrderByWithAggregationInputObjectZodSchema = makeSchema();