backup page done

This commit is contained in:
2025-08-25 23:59:16 +05:30
parent 37a83fecd2
commit d859362c40
16 changed files with 619 additions and 40 deletions

View File

@@ -0,0 +1,6 @@
import { DatabaseBackupUncheckedCreateInputObjectSchema } from "@repo/db/usedSchemas";
import { z } from "zod";
export type DatabaseBackup = z.infer<
typeof DatabaseBackupUncheckedCreateInputObjectSchema
>;

View File

@@ -5,4 +5,6 @@ export * from "./patient-types";;
export * from "./payment-types";
export * from "./pdf-types";
export * from "./staff-types";
export * from "./user-types";
export * from "./user-types";
export * from "./databaseBackup-types";
export * from "./notifications-types";

View File

@@ -0,0 +1,11 @@
import {
NotificationTypesSchema,
NotificationUncheckedCreateInputObjectSchema,
} from "@repo/db/usedSchemas";
import { z } from "zod";
export type Notification = z.infer<
typeof NotificationUncheckedCreateInputObjectSchema
>;
export type NotificationTypes = z.infer<typeof NotificationTypesSchema>;