@juspay/neurolink 12.11.0 → 12.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,8 +1,8 @@
1
- ## [12.11.0](https://github.com/juspay/neurolink/compare/v12.10.0...v12.11.0) (2026-09-03)
1
+ ## [12.11.1](https://github.com/juspay/neurolink/compare/v12.11.0...v12.11.1) (2026-09-03)
2
2
 
3
- ### Features
3
+ ### Bug Fixes
4
4
 
5
- - **(providers):** onboard verified catalog providers ([3c6c186](https://github.com/juspay/neurolink/commit/3c6c1868ee7750e2b3101786319f6a2fc118bf2b))
5
+ - **(proxy):** recognize npm global bin entrypoints ([4b61825](https://github.com/juspay/neurolink/commit/4b61825e9d366dbe0eba8dc0c185856a846b2f65))
6
6
 
7
7
  ## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
8
8
 
@@ -61,7 +61,14 @@ function probeInstaller(kind, bin, entryScript, execFileSync) {
61
61
  return base;
62
62
  }
63
63
  base.installable = true;
64
- base.matchesCurrentInstall = isPathInside(entryScript, base.globalRoot);
64
+ // Global npm packages install their entrypoints under <prefix>/bin while
65
+ // their package contents live in <prefix>/lib/node_modules. A running
66
+ // process can retain its argv path after that shim has disappeared, so
67
+ // retain the lexical bin-directory check as well as the resolved package
68
+ // root check.
69
+ base.matchesCurrentInstall =
70
+ isPathInside(entryScript, base.globalRoot) ||
71
+ isPathInside(entryScript, base.globalBinDir);
65
72
  return base;
66
73
  }
67
74
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "12.11.0",
3
+ "version": "12.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": {