initial commit
This commit is contained in:
35
packages/db/shared/schemas/objects/NotificationScalarWhereInput.schema.d.ts
vendored
Normal file
35
packages/db/shared/schemas/objects/NotificationScalarWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const NotificationScalarWhereInputObjectSchema: z.ZodType<Prisma.NotificationScalarWhereInput>;
|
||||
export declare const NotificationScalarWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.NotificationScalarWhereInput, z.ZodTypeDef, Prisma.NotificationScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.NotificationScalarWhereInput, z.ZodTypeDef, Prisma.NotificationScalarWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.NotificationScalarWhereInput, z.ZodTypeDef, Prisma.NotificationScalarWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.NotificationScalarWhereInput, z.ZodTypeDef, Prisma.NotificationScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.NotificationScalarWhereInput, z.ZodTypeDef, Prisma.NotificationScalarWhereInput>>, "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]>>;
|
||||
type: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumNotificationTypesFilter<never>, z.ZodTypeDef, Prisma.EnumNotificationTypesFilter<never>>>, z.ZodEnum<["BACKUP", "CLAIM", "PAYMENT", "ETC"]>]>>;
|
||||
message: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
||||
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
||||
read: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
message?: string | Prisma.StringFilter<never> | undefined;
|
||||
type?: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC" | Prisma.EnumNotificationTypesFilter<never> | undefined;
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.NotificationScalarWhereInput | Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
OR?: Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
NOT?: Prisma.NotificationScalarWhereInput | Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
read?: boolean | Prisma.BoolFilter<never> | undefined;
|
||||
}, {
|
||||
message?: string | Prisma.StringFilter<never> | undefined;
|
||||
type?: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC" | Prisma.EnumNotificationTypesFilter<never> | undefined;
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.NotificationScalarWhereInput | Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
OR?: Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
NOT?: Prisma.NotificationScalarWhereInput | Prisma.NotificationScalarWhereInput[] | undefined;
|
||||
read?: boolean | Prisma.BoolFilter<never> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=NotificationScalarWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user