initial commit
This commit is contained in:
29
packages/db/shared/schemas/objects/DatabaseBackupWhereInput.schema.d.ts
vendored
Normal file
29
packages/db/shared/schemas/objects/DatabaseBackupWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const DatabaseBackupWhereInputObjectSchema: z.ZodType<Prisma.DatabaseBackupWhereInput>;
|
||||
export declare const DatabaseBackupWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>, "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]>>;
|
||||
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, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.DatabaseBackupWhereInput | Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
OR?: Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
NOT?: Prisma.DatabaseBackupWhereInput | Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
||||
}, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.DatabaseBackupWhereInput | Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
OR?: Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
NOT?: Prisma.DatabaseBackupWhereInput | Prisma.DatabaseBackupWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=DatabaseBackupWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user