@juspay/neurolink 10.11.1 → 10.11.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [10.11.2](https://github.com/juspay/neurolink/compare/v10.11.1...v10.11.2) (2026-08-12)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **(proxy):** align update check status field ([1679891](https://github.com/juspay/neurolink/commit/1679891a91e1a20c82d868aa507ea699ad89a9bf))
6
+
1
7
  ## [10.11.1](https://github.com/juspay/neurolink/compare/v10.11.0...v10.11.1) (2026-08-11)
2
8
 
3
9
  ### Bug Fixes
@@ -2979,7 +2979,7 @@ export const proxyStatusCommand = {
2979
2979
  updaterRunning: false,
2980
2980
  latestVersion: updateState?.lastCheckVersion || null,
2981
2981
  lastDetectedVersion: updateState?.lastCheckVersion || null,
2982
- lastUpdateCheckAt: updateState?.lastCheckAt ?? null,
2982
+ lastCheckAt: updateState?.lastCheckAt ?? null,
2983
2983
  installedVersion: updateState?.installedVersion ??
2984
2984
  updateState?.lastUpdateVersion ??
2985
2985
  null,
@@ -3136,8 +3136,8 @@ export const proxyStatusCommand = {
3136
3136
  if (status.latestVersion) {
3137
3137
  logger.always(` ${chalk.bold("Latest:")} ${chalk.cyan(`v${status.latestVersion}`)}`);
3138
3138
  }
3139
- if (status.latestVersion && status.lastUpdateCheckAt) {
3140
- logger.always(` ${chalk.bold("Last update check:")} ${chalk.cyan(status.lastUpdateCheckAt)}`);
3139
+ if (status.latestVersion && status.lastCheckAt) {
3140
+ logger.always(` ${chalk.bold("Last update check:")} ${chalk.cyan(status.lastCheckAt)}`);
3141
3141
  }
3142
3142
  if (status.installedVersion) {
3143
3143
  logger.always(` ${chalk.bold("Installed:")} ${chalk.cyan(`v${status.installedVersion}`)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "10.11.1",
3
+ "version": "10.11.2",
4
4
  "packageManager": "pnpm@10.15.1",
5
5
  "description": "TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and more.",
6
6
  "author": {