From 6d5643e05d2268861c7485d048af80adbc3d7327 Mon Sep 17 00:00:00 2001 From: NSTKrishna Date: Tue, 25 Aug 2026 14:40:23 +0530 Subject: [PATCH] Export accessible orgs hook Expose the useAccessibleOrgs hook and its supporting types from the package root so consumers can import the public API directly. This adds root exports for useAccessibleOrgs, UseAccessibleOrgsOptions, and TriggerGetKeys. Signed-off-by: NSTKrishna --- src/index.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d104a9220..33a25a51f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -97,6 +97,12 @@ export { type PermissionUserContext } from './custom/permissions'; +export { + useAccessibleOrgs, + type UseAccessibleOrgsOptions, + type TriggerGetKeys +} from './custom/useAccessibleOrgs'; + export { WidgetPicker, type WidgetPickerProps,