initial commit
This commit is contained in:
23
packages/db/shared/schemas/objects/NotificationCreateInput.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/objects/NotificationCreateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const NotificationCreateInputObjectSchema: z.ZodType<Prisma.NotificationCreateInput>;
|
||||
export declare const NotificationCreateInputObjectZodSchema: z.ZodObject<{
|
||||
type: z.ZodEnum<["BACKUP", "CLAIM", "PAYMENT", "ETC"]>;
|
||||
message: z.ZodString;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
read: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutNotificationsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutNotificationsInput>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
message: string;
|
||||
type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC";
|
||||
user: Prisma.UserCreateNestedOneWithoutNotificationsInput;
|
||||
createdAt?: Date | undefined;
|
||||
read?: boolean | undefined;
|
||||
}, {
|
||||
message: string;
|
||||
type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC";
|
||||
user: Prisma.UserCreateNestedOneWithoutNotificationsInput;
|
||||
createdAt?: Date | undefined;
|
||||
read?: boolean | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=NotificationCreateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user