@juspay/neurolink 12.12.15 → 12.13.0
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 +3 -3
- package/dist/browser/neurolink.min.js +412 -412
- package/dist/core/baseProvider.d.ts +10 -0
- package/dist/core/baseProvider.js +21 -0
- package/dist/core/constants.d.ts +14 -1
- package/dist/core/constants.js +18 -1
- package/dist/core/loopEngine.js +150 -7
- package/dist/core/toolExecutionGuards.js +6 -1
- package/dist/providers/amazonBedrock/client.js +10 -0
- package/dist/providers/anthropic/client.d.ts +8 -0
- package/dist/providers/anthropic/client.js +132 -3
- package/dist/providers/anthropic/loopAdapter.js +352 -244
- package/dist/providers/googleAiStudio/client.js +12 -0
- package/dist/providers/googleVertex/client.js +19 -5
- package/dist/types/generate.d.ts +22 -9
- package/dist/types/loopEngine.d.ts +97 -2
- package/dist/types/stream.d.ts +141 -5
- package/dist/utils/parameterValidation.d.ts +30 -0
- package/dist/utils/parameterValidation.js +101 -0
- package/dist/utils/timeout.js +25 -2
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.13.0",
|
|
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": {
|
|
@@ -236,6 +236,7 @@
|
|
|
236
236
|
"test:bedrock-loop-characterization": "tsx test/continuous-test-suite-bedrock-loop-characterization.ts",
|
|
237
237
|
"test:sagemaker-streaming": "tsx test/continuous-test-suite-sagemaker-streaming.ts",
|
|
238
238
|
"test:anthropic-loop-characterization": "tsx test/continuous-test-suite-anthropic-loop-characterization.ts",
|
|
239
|
+
"test:anthropic-execution-control": "tsx test/continuous-test-suite-anthropic-execution-control.ts",
|
|
239
240
|
"test:aistudio-loop-characterization": "tsx test/continuous-test-suite-aistudio-loop-characterization.ts",
|
|
240
241
|
"test:docs-mcp": "pnpm exec tsx test/continuous-test-suite-docs-mcp.ts",
|
|
241
242
|
"test:vertex-claude-characterization": "tsx test/continuous-test-suite-vertex-claude-characterization.ts"
|
|
@@ -394,11 +395,11 @@
|
|
|
394
395
|
"eventsource-parser": "^3.0.8",
|
|
395
396
|
"fast-xml-parser": "^5.7.0",
|
|
396
397
|
"google-auth-library": "^10.6.1",
|
|
397
|
-
"hono": "^4.
|
|
398
|
+
"hono": "^4.13.5",
|
|
398
399
|
"iconv-lite": "0.7.2",
|
|
399
400
|
"inquirer": "^13.3.0",
|
|
400
401
|
"jose": "^6.1.3",
|
|
401
|
-
"js-yaml": "^4.3.
|
|
402
|
+
"js-yaml": "^4.3.2",
|
|
402
403
|
"json-schema-to-zod": "^2.7.0",
|
|
403
404
|
"jsonrepair": "^3.14.0",
|
|
404
405
|
"minisearch": "^7.2.0",
|
|
@@ -621,8 +622,8 @@
|
|
|
621
622
|
"undici@>=7.0.0 <7.24.0": ">=7.24.0 <8.0.0",
|
|
622
623
|
"undici@>=6.0.0 <6.23.0": ">=6.23.0",
|
|
623
624
|
"undici@<5.29.0": ">=5.29.0",
|
|
624
|
-
"js-yaml@>=4.0.0 <4.
|
|
625
|
-
"js-yaml@>=3.0.0 <3.
|
|
625
|
+
"js-yaml@>=4.0.0 <4.3.2": ">=4.3.2",
|
|
626
|
+
"js-yaml@>=3.0.0 <3.15.2": ">=3.15.2",
|
|
626
627
|
"ajv@>=8.0.0 <8.18.0": ">=8.18.0",
|
|
627
628
|
"@grpc/grpc-js@<1.14.4": ">=1.14.4",
|
|
628
629
|
"@protobufjs/utf8@<1.1.1": ">=1.1.1",
|