initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/DatabaseBackupScalarWhereInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/DatabaseBackupScalarWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
Reference in New Issue
Block a user