initial commit
This commit is contained in:
23
packages/db/shared/schemas/objects/BackupDestinationCountOrderByAggregateInput.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/objects/BackupDestinationCountOrderByAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const BackupDestinationCountOrderByAggregateInputObjectSchema: z.ZodType<Prisma.BackupDestinationCountOrderByAggregateInput>;
|
||||
export declare const BackupDestinationCountOrderByAggregateInputObjectZodSchema: 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=BackupDestinationCountOrderByAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user