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';
export declare const BackupDestinationMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.BackupDestinationMinOrderByAggregateInput>;
export declare const BackupDestinationMinOrderByAggregateInputObjectZodSchema: 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"]>>;
}, "strict", z.ZodTypeAny, {
path?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
isActive?: "asc" | "desc" | undefined;
}, {
path?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
isActive?: "asc" | "desc" | undefined;
}>;
//# sourceMappingURL=BackupDestinationMinOrderByAggregateInput.schema.d.ts.map