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