41 lines
2.4 KiB
TypeScript
41 lines
2.4 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const BackupDestinationSelectObjectSchema: z.ZodType<Prisma.BackupDestinationSelect>;
|
|
export declare const BackupDestinationSelectObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
userId: z.ZodOptional<z.ZodBoolean>;
|
|
path: z.ZodOptional<z.ZodBoolean>;
|
|
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
createdAt: z.ZodOptional<z.ZodBoolean>;
|
|
user: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
path?: boolean | undefined;
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
isActive?: boolean | undefined;
|
|
}, {
|
|
path?: boolean | undefined;
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
isActive?: boolean | undefined;
|
|
}>;
|
|
//# sourceMappingURL=BackupDestinationSelect.schema.d.ts.map
|