@juspay/neurolink 10.8.11 → 10.8.13
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 +15 -0
- package/dist/browser/neurolink.min.js +263 -263
- package/dist/cli/commands/mcp.js +38 -5
- package/dist/cli/commands/proxy.d.ts +20 -1
- package/dist/cli/commands/proxy.js +73 -3
- package/dist/lib/proxy/modelRouter.d.ts +14 -4
- package/dist/lib/proxy/modelRouter.js +21 -5
- package/dist/lib/proxy/updateState.d.ts +1 -1
- package/dist/lib/proxy/updateState.js +18 -1
- package/dist/lib/server/routes/claudeProxyRoutes.d.ts +5 -2
- package/dist/lib/server/routes/claudeProxyRoutes.js +27 -14
- package/dist/lib/types/cli.d.ts +2 -0
- package/dist/lib/types/livekit.d.ts +9 -0
- package/dist/lib/types/proxy.d.ts +10 -1
- package/dist/lib/types/subscription.d.ts +7 -1
- package/dist/lib/voice/livekit/realtimeMcpTools.js +14 -2
- package/dist/proxy/modelRouter.d.ts +14 -4
- package/dist/proxy/modelRouter.js +21 -5
- package/dist/proxy/updateState.d.ts +1 -1
- package/dist/proxy/updateState.js +18 -1
- package/dist/server/routes/claudeProxyRoutes.d.ts +5 -2
- package/dist/server/routes/claudeProxyRoutes.js +27 -14
- package/dist/types/cli.d.ts +2 -0
- package/dist/types/livekit.d.ts +9 -0
- package/dist/types/proxy.d.ts +10 -1
- package/dist/types/subscription.d.ts +7 -1
- package/dist/voice/livekit/realtimeMcpTools.js +14 -2
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [10.8.13](https://github.com/juspay/neurolink/compare/v10.8.12...v10.8.13) (2026-08-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(ci):** skip duplicate GitHub Package publishes ([b7d35b9](https://github.com/juspay/neurolink/commit/b7d35b99df2bac86894f3e8fbfd289bf69f0c9ef))
|
|
6
|
+
- **(cli):** explain an empty MCP server list instead of just reporting it ([a81b3b4](https://github.com/juspay/neurolink/commit/a81b3b4078745cadb2e24847e0008118b6eff75b)), closes [#230](https://github.com/juspay/neurolink/issues/230)
|
|
7
|
+
- **(proxy):** make account admission opt-in ([bfac340](https://github.com/juspay/neurolink/commit/bfac340652486a7a3dcfb984c14f9268be73691a))
|
|
8
|
+
- **(voice):** bound MCP tool calls in the realtime agent ([b3d28c4](https://github.com/juspay/neurolink/commit/b3d28c485a602caf0d94597440ab2d5171bd9b26)), closes [#1102](https://github.com/juspay/neurolink/issues/1102)
|
|
9
|
+
|
|
10
|
+
## [10.8.12](https://github.com/juspay/neurolink/compare/v10.8.11...v10.8.12) (2026-08-04)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **(proxy):** report updater activation state truthfully ([d9ea21b](https://github.com/juspay/neurolink/commit/d9ea21b817d292f4354ef653480f06d38917229e))
|
|
15
|
+
|
|
1
16
|
## [10.8.11](https://github.com/juspay/neurolink/compare/v10.8.10...v10.8.11) (2026-08-04)
|
|
2
17
|
|
|
3
18
|
### Bug Fixes
|