From 0f20a1b7f95b70489f37eadae7e0d1f596f6fa9b Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 10:46:29 +0900 Subject: [PATCH] feat(team-mode): export team-mailbox barrel --- src/features/team-mode/team-mailbox/index.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/features/team-mode/team-mailbox/index.ts diff --git a/src/features/team-mode/team-mailbox/index.ts b/src/features/team-mode/team-mailbox/index.ts new file mode 100644 index 000000000..d2ac1bf7e --- /dev/null +++ b/src/features/team-mode/team-mailbox/index.ts @@ -0,0 +1,18 @@ +export { + BroadcastNotPermittedError, + DuplicateMessageIdError, + PayloadTooLargeError, + RecipientBackpressureError, + sendMessage, +} from "./send" +export { listUnreadMessages } from "./inbox" +export { pollAndBuildInjection } from "./poll" +export type { InjectionResult } from "./poll" +export { ackMessages } from "./ack" +export { + reserveMessageForDelivery, + commitDeliveryReservation, + releaseDeliveryReservation, + reclaimStaleReservations, +} from "./reservation" +export type { DeliveryReservation } from "./reservation"