From a23670a3c168cf04f5dbf7b2d707711c0f063755 Mon Sep 17 00:00:00 2001 From: avicenan Date: Mon, 4 May 2026 15:47:33 +0700 Subject: [PATCH] feat(notif): add new notif schema --- src/index.ts | 3 ++- src/schema/notification.ts | 1 + src/schema/public.ts | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 src/schema/notification.ts diff --git a/src/index.ts b/src/index.ts index f41acf1..49f486c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,4 +5,5 @@ export * from "./schema/finances"; export * from "./schema/procurement"; export * from "./schema/pharmacy"; export * from "./schema/pharmacy_logistic"; -export * from "./schema/cashier"; \ No newline at end of file +export * from "./schema/cashier"; +export * from "./schema/notification"; \ No newline at end of file diff --git a/src/schema/notification.ts b/src/schema/notification.ts new file mode 100644 index 0000000..208f85a --- /dev/null +++ b/src/schema/notification.ts @@ -0,0 +1 @@ +export * from "../entity/notification"; diff --git a/src/schema/public.ts b/src/schema/public.ts index 89fea2b..3c3247a 100644 --- a/src/schema/public.ts +++ b/src/schema/public.ts @@ -53,7 +53,6 @@ export * from "../entity/subdistrict"; export * from "../entity/ward"; export * from "../entity/responsible_party_consent"; export * from "../entity/foster_care_history"; -export * from "../entity/notification"; export * from "../types/public"; export * from "../types/action";