26 lines
2.4 KiB
TypeScript
26 lines
2.4 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const DatabaseBackupScalarWhereInputObjectSchema: z.ZodType<Prisma.DatabaseBackupScalarWhereInput>;
|
|
export declare const DatabaseBackupScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DatabaseBackupScalarWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupScalarWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupScalarWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupScalarWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupScalarWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DatabaseBackupScalarWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupScalarWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupScalarWhereInput>>, "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]>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.DatabaseBackupScalarWhereInput | Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
OR?: Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.DatabaseBackupScalarWhereInput | Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.DatabaseBackupScalarWhereInput | Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
OR?: Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.DatabaseBackupScalarWhereInput | Prisma.DatabaseBackupScalarWhereInput[] | undefined;
|
|
}>;
|
|
//# sourceMappingURL=DatabaseBackupScalarWhereInput.schema.d.ts.map
|