From baa0ac4b9e1737bf396ddaada70ddf6ade6b4705 Mon Sep 17 00:00:00 2001 From: Dimitris Karagiannis Date: Thu, 9 Nov 2023 17:57:40 +0200 Subject: [PATCH] fix: add missing exports --- src/contexts/index.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/contexts/index.ts b/src/contexts/index.ts index ea2ab87a..4225f811 100644 --- a/src/contexts/index.ts +++ b/src/contexts/index.ts @@ -1,4 +1,8 @@ -export { type AuthenticationContextValue } from './authentication'; -export { type OrfiumProductsContextValue } from './orfium-products'; +export { + type AuthenticationContextValue, + type DecodedTokenResponse, + type User, +} from './authentication'; +export { type OrfiumProductsContextValue, type Product } from './orfium-products'; export { type OrganizationsContextValue } from './organizations'; export { type TopBarUtilitySectionContextValue } from './top-bar-utility-section';