35 lines
3.2 KiB
TypeScript
35 lines
3.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const BackupDestinationWhereInputObjectSchema: z.ZodType<Prisma.BackupDestinationWhereInput>;
|
|
export declare const BackupDestinationWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
path: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
isActive: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarRelationFilter, z.ZodTypeDef, Prisma.UserScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
path?: string | Prisma.StringFilter<never> | undefined;
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.BackupDestinationWhereInput | Prisma.BackupDestinationWhereInput[] | undefined;
|
|
OR?: Prisma.BackupDestinationWhereInput[] | undefined;
|
|
NOT?: Prisma.BackupDestinationWhereInput | Prisma.BackupDestinationWhereInput[] | undefined;
|
|
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
}, {
|
|
path?: string | Prisma.StringFilter<never> | undefined;
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.BackupDestinationWhereInput | Prisma.BackupDestinationWhereInput[] | undefined;
|
|
OR?: Prisma.BackupDestinationWhereInput[] | undefined;
|
|
NOT?: Prisma.BackupDestinationWhereInput | Prisma.BackupDestinationWhereInput[] | undefined;
|
|
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
|
isActive?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
}>;
|
|
//# sourceMappingURL=BackupDestinationWhereInput.schema.d.ts.map
|