aai-gateway 0.3.1 → 0.3.2
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/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { b as createDesktopDiscovery, d as createGatewayServer, l as logger } from "./server-
|
|
2
|
+
import { b as createDesktopDiscovery, d as createGatewayServer, l as logger } from "./server-CGpNZvfw.js";
|
|
3
3
|
import { readFileSync } from "fs";
|
|
4
4
|
import { fileURLToPath } from "url";
|
|
5
5
|
import { dirname, join } from "path";
|
package/dist/index.js
CHANGED
|
@@ -10279,7 +10279,13 @@ class AaiGatewayServer {
|
|
|
10279
10279
|
version: clientInfo?.version
|
|
10280
10280
|
};
|
|
10281
10281
|
logger.info({ caller: this.callerIdentity }, "Caller identity extracted");
|
|
10282
|
-
return {
|
|
10282
|
+
return {
|
|
10283
|
+
protocolVersion: "2024-11-05",
|
|
10284
|
+
serverInfo: {
|
|
10285
|
+
name: "aai-gateway",
|
|
10286
|
+
version: "0.3.1"
|
|
10287
|
+
}
|
|
10288
|
+
};
|
|
10283
10289
|
});
|
|
10284
10290
|
this.server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
10285
10291
|
const tools = [];
|
|
@@ -10481,4 +10487,4 @@ export {
|
|
|
10481
10487
|
parseAaiJson as p,
|
|
10482
10488
|
startOAuthFlow as s
|
|
10483
10489
|
};
|
|
10484
|
-
//# sourceMappingURL=server-
|
|
10490
|
+
//# sourceMappingURL=server-CGpNZvfw.js.map
|