@juspay/neurolink 9.60.1 → 9.61.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 +12 -0
- package/README.md +1 -0
- package/dist/browser/neurolink.min.js +343 -343
- package/dist/core/baseProvider.js +1 -1
- package/dist/core/constants.js +14 -3
- package/dist/core/modules/GenerationHandler.js +1 -1
- package/dist/core/redisConversationMemoryManager.d.ts +1 -0
- package/dist/core/redisConversationMemoryManager.js +11 -7
- package/dist/lib/core/baseProvider.js +1 -1
- package/dist/lib/core/constants.js +14 -3
- package/dist/lib/core/modules/GenerationHandler.js +1 -1
- package/dist/lib/core/redisConversationMemoryManager.d.ts +1 -0
- package/dist/lib/core/redisConversationMemoryManager.js +11 -7
- package/dist/lib/mcp/auth/oauthClientProvider.js +12 -7
- package/dist/lib/types/tools.d.ts +1 -0
- package/dist/lib/utils/schemaConversion.d.ts +12 -4
- package/dist/lib/utils/schemaConversion.js +208 -27
- package/dist/lib/utils/tokenLimits.js +43 -1
- package/dist/mcp/auth/oauthClientProvider.js +12 -7
- package/dist/types/tools.d.ts +1 -0
- package/dist/utils/schemaConversion.d.ts +12 -4
- package/dist/utils/schemaConversion.js +208 -27
- package/dist/utils/tokenLimits.js +43 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [9.61.1](https://github.com/juspay/neurolink/compare/v9.61.0...v9.61.1) (2026-05-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(memory):** fix null tool result storage by reading AI SDK output field ([1e6dbf8](https://github.com/juspay/neurolink/commit/1e6dbf86a59aa3a882480f8f545326213ec2f424))
|
|
6
|
+
|
|
7
|
+
## [9.61.0](https://github.com/juspay/neurolink/compare/v9.60.1...v9.61.0) (2026-05-01)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **(tokens):** cap Gemini 3 + image models at 32768 output tokens ([62a0016](https://github.com/juspay/neurolink/commit/62a00165101c891905241a56b90b2811148379d3))
|
|
12
|
+
|
|
1
13
|
## [9.60.1](https://github.com/juspay/neurolink/compare/v9.60.0...v9.60.1) (2026-04-30)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -999,6 +999,7 @@ Full command and API breakdown lives in [`docs/cli/commands.md`](docs/cli/comman
|
|
|
999
999
|
## Contributing & Support
|
|
1000
1000
|
|
|
1001
1001
|
- Bug reports and feature requests → [GitHub Issues](https://github.com/juspay/neurolink/issues)
|
|
1002
|
+
- Questions and discussions → [GitHub Discussions](https://github.com/juspay/neurolink/discussions)
|
|
1002
1003
|
- Development workflow, testing, and pull request guidelines → [`docs/development/contributing.md`](docs/development/contributing.md)
|
|
1003
1004
|
- Documentation improvements → open a PR referencing the [documentation matrix](docs/tracking/FEATURE-DOC-MATRIX.md).
|
|
1004
1005
|
|