Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/NotificationScalarWhereInput.schema.d.ts
2026-04-04 22:13:55 -04:00

35 lines
3.3 KiB
TypeScript

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