@juspay/neurolink 10.11.0 → 10.11.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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [10.11.1](https://github.com/juspay/neurolink/compare/v10.11.0...v10.11.1) (2026-08-11)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **(proxy):** show update check timestamp in status ([9096b8f](https://github.com/juspay/neurolink/commit/9096b8ff1f0837f679a1444308dda5050b199761))
6
+
1
7
  ## [10.11.0](https://github.com/juspay/neurolink/compare/v10.10.12...v10.11.0) (2026-08-10)
2
8
 
3
9
  ### Features
@@ -2979,6 +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
2983
  installedVersion: updateState?.installedVersion ??
2983
2984
  updateState?.lastUpdateVersion ??
2984
2985
  null,
@@ -3135,6 +3136,9 @@ export const proxyStatusCommand = {
3135
3136
  if (status.latestVersion) {
3136
3137
  logger.always(` ${chalk.bold("Latest:")} ${chalk.cyan(`v${status.latestVersion}`)}`);
3137
3138
  }
3139
+ if (status.latestVersion && status.lastUpdateCheckAt) {
3140
+ logger.always(` ${chalk.bold("Last update check:")} ${chalk.cyan(status.lastUpdateCheckAt)}`);
3141
+ }
3138
3142
  if (status.installedVersion) {
3139
3143
  logger.always(` ${chalk.bold("Installed:")} ${chalk.cyan(`v${status.installedVersion}`)}`);
3140
3144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "10.11.0",
3
+ "version": "10.11.1",
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": {