@juspay/neurolink 9.80.4 → 9.81.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 +12 -0
- package/dist/browser/neurolink.min.js +351 -351
- package/dist/cli/loop/optionsSchema.js +16 -0
- package/dist/core/analytics.js +22 -0
- package/dist/core/constants.d.ts +13 -0
- package/dist/core/constants.js +13 -0
- package/dist/lib/core/analytics.js +22 -0
- package/dist/lib/core/constants.d.ts +13 -0
- package/dist/lib/core/constants.js +13 -0
- package/dist/lib/neurolink.js +30 -3
- package/dist/lib/providers/googleNativeGemini3.d.ts +92 -4
- package/dist/lib/providers/googleNativeGemini3.js +186 -4
- package/dist/lib/providers/googleVertex.d.ts +15 -0
- package/dist/lib/providers/googleVertex.js +603 -120
- package/dist/lib/types/analytics.d.ts +10 -0
- package/dist/lib/types/generate.d.ts +75 -0
- package/dist/lib/types/stream.d.ts +21 -1
- package/dist/neurolink.js +30 -3
- package/dist/providers/googleNativeGemini3.d.ts +92 -4
- package/dist/providers/googleNativeGemini3.js +186 -4
- package/dist/providers/googleVertex.d.ts +15 -0
- package/dist/providers/googleVertex.js +603 -120
- package/dist/types/analytics.d.ts +10 -0
- package/dist/types/generate.d.ts +75 -0
- package/dist/types/stream.d.ts +21 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [9.81.1](https://github.com/juspay/neurolink/compare/v9.81.0...v9.81.1) (2026-07-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(landing):** prerender homepage so crawlers see content (was ssr=false → empty shell) ([cfa704e](https://github.com/juspay/neurolink/commit/cfa704e93ab2db6ddf3ccc6f33088e5c18a5635a))
|
|
6
|
+
|
|
7
|
+
## [9.81.0](https://github.com/juspay/neurolink/compare/v9.80.4...v9.81.0) (2026-07-03)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **(vertex):** turn time budget + stopReason; MALFORMED_FUNCTION_CALL maps to 'error' not 'tool-calls' ([d79ff21](https://github.com/juspay/neurolink/commit/d79ff21c503ad9539aa6200ad30574f99ae71858))
|
|
12
|
+
|
|
1
13
|
## [9.80.4](https://github.com/juspay/neurolink/compare/v9.80.3...v9.80.4) (2026-07-02)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|