@juspay/neurolink 11.23.1 → 11.23.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 +2 -5
- package/package.json +83 -83
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
## [11.23.
|
|
1
|
+
## [11.23.2](https://github.com/juspay/neurolink/compare/v11.23.1...v11.23.2) (2026-08-24)
|
|
2
2
|
|
|
3
3
|
### Bug Fixes
|
|
4
4
|
|
|
5
|
-
- **(
|
|
6
|
-
- **(rag):** await registration before reading factory metadata ([9c41530](https://github.com/juspay/neurolink/commit/9c41530677845416d8adf67f8f4d3427d60df009)), closes [#1488](https://github.com/juspay/neurolink/issues/1488)
|
|
7
|
-
- **(scripts):** bound the last two unbounded subprocesses in the security check ([6749db0](https://github.com/juspay/neurolink/commit/6749db0e9d4237335d4ac9feebdd8c9a8f090b14)), closes [#1500](https://github.com/juspay/neurolink/issues/1500)
|
|
8
|
-
- **(test):** stop reporting crashed and unwritable-path cases as green ([ced2008](https://github.com/juspay/neurolink/commit/ced20088eb5402767ba6fe492288886ee74d2c4f))
|
|
5
|
+
- **(test):** assert the React hooks through the subpath that publishes them ([77c8697](https://github.com/juspay/neurolink/commit/77c86976809e4a65f9d25e18a711ba6e207ecf56))
|
|
9
6
|
|
|
10
7
|
## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
|
|
11
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "11.23.
|
|
3
|
+
"version": "11.23.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": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"preview": "vite preview",
|
|
39
39
|
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && husky install || echo 'Skipping husky in non-git environment'",
|
|
40
40
|
"prepack": "svelte-kit sync && svelte-package && pnpm run build:react-hooks && pnpm run build:cli && pnpm run build:browser && publint",
|
|
41
|
-
"build:react-hooks": "
|
|
41
|
+
"build:react-hooks": "pnpm exec tsc --jsx react-jsx --module nodenext --moduleResolution nodenext --target esnext --esModuleInterop --skipLibCheck --outDir dist --declaration false src/lib/client/reactHooks.tsx",
|
|
42
42
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && tsc --noEmit --strict",
|
|
43
43
|
"check:ci-scripts": "svelte-kit sync && tsc -p tsconfig.ci-scripts.json",
|
|
44
44
|
"check:test-parse": "node scripts/parse-check-tests.mjs",
|
|
@@ -68,80 +68,80 @@
|
|
|
68
68
|
"convert:shell-scripts": "tsx tools/automation/shellConverter.ts",
|
|
69
69
|
"convert:specific": "tsx tools/automation/shellConverter.ts --specific",
|
|
70
70
|
"// Testing (Continuous Test Suites)": "",
|
|
71
|
-
"test": "
|
|
72
|
-
"test:client": "
|
|
73
|
-
"test:context": "
|
|
74
|
-
"test:evaluation": "
|
|
75
|
-
"test:handler-registry": "
|
|
76
|
-
"test:mcp": "
|
|
77
|
-
"test:tool-resolution": "
|
|
78
|
-
"test:mcp:http": "
|
|
79
|
-
"test:mcp:sdk": "
|
|
80
|
-
"test:mcp:cli": "
|
|
71
|
+
"test": "pnpm exec tsx test/continuous-test-suite.ts",
|
|
72
|
+
"test:client": "pnpm exec tsx test/continuous-test-suite-client.ts",
|
|
73
|
+
"test:context": "pnpm exec tsx test/continuous-test-suite-context.ts",
|
|
74
|
+
"test:evaluation": "pnpm exec tsx test/continuous-test-suite-evaluation.ts",
|
|
75
|
+
"test:handler-registry": "pnpm exec tsx test/continuous-test-suite-handler-registry.ts",
|
|
76
|
+
"test:mcp": "pnpm exec tsx test/continuous-test-suite-mcp-infra.ts",
|
|
77
|
+
"test:tool-resolution": "pnpm exec tsx test/continuous-test-suite-tool-resolution.ts",
|
|
78
|
+
"test:mcp:http": "pnpm exec tsx test/continuous-test-suite-mcp-http.ts",
|
|
79
|
+
"test:mcp:sdk": "pnpm exec tsx test/continuous-test-suite-mcp-sdk.ts",
|
|
80
|
+
"test:mcp:cli": "pnpm exec tsx test/continuous-test-suite-mcp-cli.ts",
|
|
81
81
|
"test:mcp:full": "pnpm run test:mcp:infra && pnpm run test:mcp:spans && pnpm run test:mcp:sdk && pnpm run test:mcp:cli && pnpm run test:mcp:http",
|
|
82
|
-
"test:media": "
|
|
83
|
-
"test:memory": "
|
|
84
|
-
"test:openai-compat-streaming-retry": "
|
|
85
|
-
"test:anthropic-streaming-retry": "
|
|
86
|
-
"test:adjust-body-after-400": "
|
|
87
|
-
"test:error-classification-e2e": "
|
|
88
|
-
"test:error-classifier-contract": "
|
|
89
|
-
"test:bedrock-inference-profile": "
|
|
90
|
-
"test:loop-engine": "
|
|
91
|
-
"test:middleware": "
|
|
92
|
-
"test:observability": "
|
|
93
|
-
"test:ppt": "
|
|
82
|
+
"test:media": "pnpm exec tsx test/continuous-test-suite-media-gen.ts",
|
|
83
|
+
"test:memory": "pnpm exec tsx test/continuous-test-suite-memory.ts",
|
|
84
|
+
"test:openai-compat-streaming-retry": "pnpm exec tsx test/continuous-test-suite-openai-compat-streaming-retry.ts",
|
|
85
|
+
"test:anthropic-streaming-retry": "pnpm exec tsx test/continuous-test-suite-anthropic-streaming-retry.ts",
|
|
86
|
+
"test:adjust-body-after-400": "pnpm exec tsx test/continuous-test-suite-adjust-body-after-400.ts",
|
|
87
|
+
"test:error-classification-e2e": "pnpm exec tsx test/continuous-test-suite-error-classification-e2e.ts",
|
|
88
|
+
"test:error-classifier-contract": "pnpm exec tsx test/continuous-test-suite-error-classifier-contract.ts",
|
|
89
|
+
"test:bedrock-inference-profile": "pnpm exec tsx test/continuous-test-suite-bedrock-inference-profile.ts",
|
|
90
|
+
"test:loop-engine": "pnpm exec tsx test/continuous-test-suite-loop-engine.ts",
|
|
91
|
+
"test:middleware": "pnpm exec tsx test/continuous-test-suite-middleware.ts",
|
|
92
|
+
"test:observability": "pnpm exec tsx test/continuous-test-suite-observability.ts",
|
|
93
|
+
"test:ppt": "pnpm exec tsx test/continuous-test-suite-ppt.ts",
|
|
94
94
|
"test:vertex-loop-characterization": "tsx test/continuous-test-suite-vertex-loop-characterization.ts",
|
|
95
|
-
"test:providers": "
|
|
96
|
-
"test:new-providers": "
|
|
97
|
-
"test:matrix": "
|
|
98
|
-
"test:matrix:cli": "
|
|
99
|
-
"test:mcp:spans": "
|
|
100
|
-
"test:mcp:infra": "
|
|
101
|
-
"test:providers-mocked": "
|
|
102
|
-
"scaffold:provider": "
|
|
103
|
-
"verify:provider-onboarding": "
|
|
104
|
-
"test:openai-compat-catalog": "
|
|
105
|
-
"test:provider-descriptors": "
|
|
106
|
-
"test:provider-structure": "
|
|
107
|
-
"test:model-manifests": "
|
|
108
|
-
"test:provider-fallback": "
|
|
109
|
-
"test:provider-fallback-latency": "
|
|
110
|
-
"test:provider-wiring": "
|
|
111
|
-
"test:rag": "
|
|
112
|
-
"test:skills": "
|
|
113
|
-
"test:servers": "
|
|
114
|
-
"test:tool-reliability": "
|
|
115
|
-
"test:tts": "
|
|
116
|
-
"test:tts:unit": "
|
|
117
|
-
"test:stt:unit": "
|
|
118
|
-
"test:realtime:unit": "
|
|
119
|
-
"test:video:unit": "
|
|
120
|
-
"test:voice": "
|
|
121
|
-
"test:avatar": "
|
|
122
|
-
"test:avatar:unit": "
|
|
123
|
-
"test:music": "
|
|
124
|
-
"test:music:unit": "
|
|
125
|
-
"test:image-gen": "
|
|
126
|
-
"test:credentials": "
|
|
127
|
-
"test:local-usage": "
|
|
128
|
-
"test:dynamic": "
|
|
129
|
-
"test:proxy": "
|
|
130
|
-
"test:codex": "
|
|
131
|
-
"test:bugfixes": "
|
|
132
|
-
"test:json-e2e": "
|
|
133
|
-
"test:workflow": "
|
|
134
|
-
"test:hitl": "
|
|
135
|
-
"test:tasks": "
|
|
136
|
-
"test:auth": "
|
|
137
|
-
"test:autoresearch": "
|
|
138
|
-
"test:tool-routing-cli": "
|
|
139
|
-
"test:tool-dedup": "
|
|
140
|
-
"test:model-not-found-retryable": "
|
|
95
|
+
"test:providers": "pnpm exec tsx test/continuous-test-suite-providers.ts",
|
|
96
|
+
"test:new-providers": "pnpm exec tsx test/continuous-test-suite-new-providers.ts",
|
|
97
|
+
"test:matrix": "pnpm exec tsx test/continuous-test-suite-provider-matrix.ts",
|
|
98
|
+
"test:matrix:cli": "pnpm exec tsx test/continuous-test-suite-provider-matrix-cli.ts",
|
|
99
|
+
"test:mcp:spans": "pnpm exec tsx test/continuous-test-suite-mcp-spans.ts",
|
|
100
|
+
"test:mcp:infra": "pnpm exec tsx test/continuous-test-suite-mcp-infra.ts",
|
|
101
|
+
"test:providers-mocked": "pnpm exec tsx test/continuous-test-suite-providers-mocked.ts",
|
|
102
|
+
"scaffold:provider": "pnpm exec tsx tools/scaffold-provider.ts",
|
|
103
|
+
"verify:provider-onboarding": "pnpm exec tsx tools/verify-provider-onboarding.ts",
|
|
104
|
+
"test:openai-compat-catalog": "pnpm exec tsx test/continuous-test-suite-openai-compat-catalog.ts",
|
|
105
|
+
"test:provider-descriptors": "pnpm exec tsx test/continuous-test-suite-provider-descriptors.ts",
|
|
106
|
+
"test:provider-structure": "pnpm exec tsx test/continuous-test-suite-provider-structure.ts",
|
|
107
|
+
"test:model-manifests": "pnpm exec tsx test/continuous-test-suite-model-manifests.ts",
|
|
108
|
+
"test:provider-fallback": "pnpm exec tsx test/continuous-test-suite-provider-fallback.ts",
|
|
109
|
+
"test:provider-fallback-latency": "pnpm exec tsx test/continuous-test-suite-provider-fallback-latency.ts",
|
|
110
|
+
"test:provider-wiring": "pnpm exec tsx test/continuous-test-suite-provider-wiring.ts",
|
|
111
|
+
"test:rag": "pnpm exec tsx test/continuous-test-suite-rag.ts",
|
|
112
|
+
"test:skills": "pnpm exec tsx test/continuous-test-suite-skills.ts",
|
|
113
|
+
"test:servers": "pnpm exec tsx test/continuous-test-suite-servers.ts",
|
|
114
|
+
"test:tool-reliability": "pnpm exec tsx test/continuous-test-suite-tool-reliability.ts",
|
|
115
|
+
"test:tts": "pnpm exec tsx test/continuous-test-suite-tts.ts",
|
|
116
|
+
"test:tts:unit": "pnpm exec tsx test/continuous-test-suite-tts-unit.ts",
|
|
117
|
+
"test:stt:unit": "pnpm exec tsx test/continuous-test-suite-stt-unit.ts",
|
|
118
|
+
"test:realtime:unit": "pnpm exec tsx test/continuous-test-suite-realtime-unit.ts",
|
|
119
|
+
"test:video:unit": "pnpm exec tsx test/continuous-test-suite-video-generation-unit.ts",
|
|
120
|
+
"test:voice": "pnpm exec tsx test/continuous-test-suite-voice.ts",
|
|
121
|
+
"test:avatar": "pnpm exec tsx test/continuous-test-suite-avatar.ts",
|
|
122
|
+
"test:avatar:unit": "pnpm exec tsx test/continuous-test-suite-avatar-unit.ts",
|
|
123
|
+
"test:music": "pnpm exec tsx test/continuous-test-suite-music.ts",
|
|
124
|
+
"test:music:unit": "pnpm exec tsx test/continuous-test-suite-music-unit.ts",
|
|
125
|
+
"test:image-gen": "pnpm exec tsx test/continuous-test-suite-image-gen-extras.ts",
|
|
126
|
+
"test:credentials": "pnpm exec tsx test/continuous-test-suite-credentials.ts",
|
|
127
|
+
"test:local-usage": "pnpm exec tsx test/continuous-test-suite-local-usage.ts",
|
|
128
|
+
"test:dynamic": "pnpm exec tsx test/continuous-test-suite-dynamic.ts",
|
|
129
|
+
"test:proxy": "pnpm exec tsx test/continuous-test-suite-proxy.ts",
|
|
130
|
+
"test:codex": "pnpm exec tsx test/continuous-test-suite-codex.ts",
|
|
131
|
+
"test:bugfixes": "pnpm exec tsx test/continuous-test-suite-bugfixes.ts",
|
|
132
|
+
"test:json-e2e": "pnpm exec tsx test/continuous-test-suite-json-e2e.ts",
|
|
133
|
+
"test:workflow": "pnpm exec tsx test/continuous-test-suite-workflow.ts",
|
|
134
|
+
"test:hitl": "pnpm exec tsx test/continuous-test-suite-hitl.ts",
|
|
135
|
+
"test:tasks": "pnpm exec tsx test/continuous-test-suite-tasks.ts",
|
|
136
|
+
"test:auth": "pnpm exec tsx test/continuous-test-suite-auth.ts",
|
|
137
|
+
"test:autoresearch": "pnpm exec tsx test/continuous-test-suite-autoresearch.ts",
|
|
138
|
+
"test:tool-routing-cli": "pnpm exec tsx test/continuous-test-suite-tool-routing-cli.ts",
|
|
139
|
+
"test:tool-dedup": "pnpm exec tsx test/continuous-test-suite-tool-dedup.ts",
|
|
140
|
+
"test:model-not-found-retryable": "pnpm exec tsx test/continuous-test-suite-model-not-found-retryable.ts",
|
|
141
141
|
"test:ci": "pnpm run test && pnpm run test:client && pnpm run test:hitl",
|
|
142
142
|
"// CI tier — fast, no live AI calls, safe for every commit (test:unit; also see the separate provider-safety-net CI job, which runs build + test:providers-mocked + test:provider-structure + test:error-classifier-contract on every PR)": "",
|
|
143
|
-
"test:tool-routing": "
|
|
144
|
-
"test:tool-routing-semantic": "
|
|
143
|
+
"test:tool-routing": "pnpm exec tsx test/continuous-test-suite-tool-routing.ts",
|
|
144
|
+
"test:tool-routing-semantic": "pnpm exec tsx test/continuous-test-suite-tool-routing-semantic.ts",
|
|
145
145
|
"test:unit": "pnpm run test:bugfixes && pnpm run test:mcp:infra && pnpm run test:mcp:spans && pnpm run test:tool-routing && pnpm run test:tool-routing-cli && pnpm run test:tool-dedup && pnpm run test:model-pool && pnpm run test:tool-routing-semantic && pnpm run test:mcp-result-cache && pnpm run test:model-not-found-retryable && pnpm run test:archive:security && pnpm run test:office:security && pnpm run test:vector-chroma && pnpm run test:vector-pgvector && pnpm run test:vector-pinecone && pnpm run test:provider-wiring && pnpm run test:docs-mcp",
|
|
146
146
|
"// CI tier — live providers, runs only when API keys are present (test:credentials and test:dynamic make real provider calls when keys are set, so they live here, not in test:unit; test:matrix, a different suite covering the full provider capability matrix, runs nightly via .github/workflows/live-matrix.yml — test:providers itself is still only wired into test:live, not any GitHub Actions workflow)": "",
|
|
147
147
|
"test:live": "pnpm run test:providers && pnpm run test:mcp:http && pnpm run test:mcp:sdk && pnpm run test:mcp:cli && pnpm run test:observability && pnpm run test:context && pnpm run test:memory && pnpm run test:tool-reliability && pnpm run test:evaluation && pnpm run test:autoresearch && pnpm run test:credentials && pnpm run test:dynamic",
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"// Release & Publishing": "",
|
|
190
190
|
"release": "pnpm run build:complete && pnpm run test:ci && changeset publish",
|
|
191
191
|
"test:semantic-release": "node scripts/test-semantic-release.js",
|
|
192
|
-
"release:dry-run": "
|
|
192
|
+
"release:dry-run": "pnpm exec semantic-release --dry-run",
|
|
193
193
|
"// Build Rule Enforcement Scripts": "",
|
|
194
194
|
"validate": "tsx scripts/build-validations.ts",
|
|
195
195
|
"validate:env": "tsx scripts/env-validation.ts",
|
|
@@ -200,21 +200,21 @@
|
|
|
200
200
|
"quality:report": "pnpm run quality:metrics && echo 'Quality metrics saved to quality-metrics.json'",
|
|
201
201
|
"pre-push": "pnpm run check:deps && pnpm run build && pnpm run test:providers-mocked && pnpm run test:provider-structure && pnpm run test:model-manifests",
|
|
202
202
|
"check:all": "pnpm run lint && pnpm run format --check && pnpm run validate && pnpm run validate:commit",
|
|
203
|
-
"test:file-formats": "
|
|
203
|
+
"test:file-formats": "pnpm exec tsx test/continuous-test-suite-file-formats.ts",
|
|
204
204
|
"test:multimodal": "pnpm run test:file-formats && pnpm run test:multimodal:sdk",
|
|
205
|
-
"test:multimodal:sdk": "
|
|
206
|
-
"test:mcp-result-cache": "
|
|
207
|
-
"test:archive:security": "
|
|
208
|
-
"test:office:security": "
|
|
209
|
-
"test:model-pool": "
|
|
210
|
-
"test:vector-chroma": "
|
|
211
|
-
"test:vector-pgvector": "
|
|
212
|
-
"test:vector-pinecone": "
|
|
205
|
+
"test:multimodal:sdk": "pnpm exec tsx test/continuous-test-suite-multimodal-sdk.ts",
|
|
206
|
+
"test:mcp-result-cache": "pnpm exec tsx test/continuous-test-suite-mcp-result-cache.ts",
|
|
207
|
+
"test:archive:security": "pnpm exec tsx test/continuous-test-suite-archive-security.ts",
|
|
208
|
+
"test:office:security": "pnpm exec tsx test/continuous-test-suite-office-security.ts",
|
|
209
|
+
"test:model-pool": "pnpm exec tsx test/continuous-test-suite-model-pool.ts",
|
|
210
|
+
"test:vector-chroma": "pnpm exec tsx test/continuous-test-suite-vector-chroma.ts",
|
|
211
|
+
"test:vector-pgvector": "pnpm exec tsx test/continuous-test-suite-vector-pgvector.ts",
|
|
212
|
+
"test:vector-pinecone": "pnpm exec tsx test/continuous-test-suite-vector-pinecone.ts",
|
|
213
213
|
"test:bedrock-loop-characterization": "tsx test/continuous-test-suite-bedrock-loop-characterization.ts",
|
|
214
214
|
"test:sagemaker-streaming": "tsx test/continuous-test-suite-sagemaker-streaming.ts",
|
|
215
215
|
"test:anthropic-loop-characterization": "tsx test/continuous-test-suite-anthropic-loop-characterization.ts",
|
|
216
216
|
"test:aistudio-loop-characterization": "tsx test/continuous-test-suite-aistudio-loop-characterization.ts",
|
|
217
|
-
"test:docs-mcp": "
|
|
217
|
+
"test:docs-mcp": "pnpm exec tsx test/continuous-test-suite-docs-mcp.ts",
|
|
218
218
|
"test:vertex-claude-characterization": "tsx test/continuous-test-suite-vertex-claude-characterization.ts"
|
|
219
219
|
},
|
|
220
220
|
"files": [
|