@juspay/neurolink 9.29.0 → 9.29.1
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 +6 -0
- package/dist/lib/mcp/toolRegistry.js +1 -1
- package/dist/mcp/toolRegistry.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.29.1](https://github.com/juspay/neurolink/compare/v9.29.0...v9.29.1) (2026-03-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(tool):** fix tool response data as undefined bug ([049336d](https://github.com/juspay/neurolink/commit/049336d9a9c91af89041da97ca2029e0050a8c38))
|
|
6
|
+
|
|
1
7
|
## [9.29.0](https://github.com/juspay/neurolink/compare/v9.28.1...v9.29.0) (2026-03-19)
|
|
2
8
|
|
|
3
9
|
### Features
|
|
@@ -404,7 +404,7 @@ export class MCPToolRegistry extends MCPRegistry {
|
|
|
404
404
|
// Record success on span
|
|
405
405
|
let resultStr;
|
|
406
406
|
try {
|
|
407
|
-
resultStr = JSON.stringify(result.data);
|
|
407
|
+
resultStr = JSON.stringify(result.data) ?? "undefined";
|
|
408
408
|
}
|
|
409
409
|
catch {
|
|
410
410
|
resultStr = "[unserializable]";
|
package/dist/mcp/toolRegistry.js
CHANGED
|
@@ -404,7 +404,7 @@ export class MCPToolRegistry extends MCPRegistry {
|
|
|
404
404
|
// Record success on span
|
|
405
405
|
let resultStr;
|
|
406
406
|
try {
|
|
407
|
-
resultStr = JSON.stringify(result.data);
|
|
407
|
+
resultStr = JSON.stringify(result.data) ?? "undefined";
|
|
408
408
|
}
|
|
409
409
|
catch {
|
|
410
410
|
resultStr = "[unserializable]";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.29.
|
|
3
|
+
"version": "9.29.1",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|