@mcp-abap-adt/auth-broker 0.2.14 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -11,6 +11,11 @@ Thank you to all contributors! See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the co
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
+ ## [0.2.15] - 2025-12-30
15
+
16
+ ### Fixed
17
+ - **CLI**: Remove duplicate `authConfig` declaration in `mcp-auth.ts` that caused esbuild/tsx to fail with "symbol already declared" error
18
+
14
19
  ## [0.2.14] - 2025-12-26
15
20
 
16
21
  ### Added
package/bin/mcp-auth.ts CHANGED
@@ -486,7 +486,6 @@ async function main() {
486
486
  console.log(`✅ Token obtained successfully`);
487
487
 
488
488
  const connConfig = await sessionStore.getConnectionConfig(destination);
489
- const authConfig = await sessionStore.getAuthorizationConfig(destination);
490
489
 
491
490
  if (!token) {
492
491
  throw new Error(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/auth-broker",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "JWT authentication broker for MCP ABAP ADT - manages tokens based on destination headers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",