From 1f68099268e385ca65e6e554e22435d228b2419b Mon Sep 17 00:00:00 2001 From: idirbk <97450551+idirbk@users.noreply.github.com> Date: Thu, 7 Mar 2024 10:14:32 +0100 Subject: [PATCH] Update index.js to export the gateway configuration --- src/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 8b1f139..84a6e83 100644 --- a/src/index.js +++ b/src/index.js @@ -15,6 +15,7 @@ export { default as GatewayClient } from './gateway/GatewayClient'; export { default as ApplicationConfig } from './application/ApplicationConfig'; export { default as DeviceConfig } from './device/DeviceConfig'; +export { default as GatewayConfig } from './gateway/GatewayConfig'; export { default as ApiClient} from './api/ApiClient'; export { default as ApiErrors} from './api/ApiErrors'; @@ -23,4 +24,4 @@ export { default as LecClient} from './api/LecClient'; export { default as MgmtClient} from './api/MgmtClient'; export { default as RegistryClient} from './api/RegistryClient'; export { default as RulesClient} from './api/RulesClient'; -export { default as StateClient} from './api/StateClient'; \ No newline at end of file +export { default as StateClient} from './api/StateClient';