initial commit
This commit is contained in:
55
packages/db/shared/schemas/findFirstBackupDestination.schema.d.ts
vendored
Normal file
55
packages/db/shared/schemas/findFirstBackupDestination.schema.d.ts
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const BackupDestinationFindFirstSelectSchema: z.ZodType<Prisma.BackupDestinationSelect>;
|
||||
export declare const BackupDestinationFindFirstSelectZodSchema: 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.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}>;
|
||||
export declare const BackupDestinationFindFirstSchema: z.ZodType<Prisma.BackupDestinationFindFirstArgs>;
|
||||
export declare const BackupDestinationFindFirstZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.BackupDestinationOrderByWithRelationInput, z.ZodTypeDef, Prisma.BackupDestinationOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.BackupDestinationOrderByWithRelationInput, z.ZodTypeDef, Prisma.BackupDestinationOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.BackupDestinationWhereUniqueInput, z.ZodTypeDef, Prisma.BackupDestinationWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "path", "isActive", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "path", "isActive", "createdAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.BackupDestinationWhereInput | undefined;
|
||||
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.BackupDestinationOrderByWithRelationInput | Prisma.BackupDestinationOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.BackupDestinationWhereInput | undefined;
|
||||
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.BackupDestinationOrderByWithRelationInput | Prisma.BackupDestinationOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstBackupDestination.schema.d.ts.map
|
||||
Reference in New Issue
Block a user