backup page done
This commit is contained in:
6
packages/db/types/databaseBackup-types.ts
Normal file
6
packages/db/types/databaseBackup-types.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { DatabaseBackupUncheckedCreateInputObjectSchema } from "@repo/db/usedSchemas";
|
||||
import { z } from "zod";
|
||||
|
||||
export type DatabaseBackup = z.infer<
|
||||
typeof DatabaseBackupUncheckedCreateInputObjectSchema
|
||||
>;
|
||||
@@ -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";
|
||||
|
||||
11
packages/db/types/notifications-types.ts
Normal file
11
packages/db/types/notifications-types.ts
Normal 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>;
|
||||
Reference in New Issue
Block a user