@juspay/neurolink 9.95.3 → 10.0.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 +23 -0
- package/dist/browser/neurolink.min.js +356 -356
- package/dist/cli/commands/observability.js +114 -103
- package/dist/cli/commands/proxy.d.ts +26 -0
- package/dist/cli/commands/proxy.js +132 -13
- package/dist/cli/commands/telemetry.js +139 -119
- package/dist/cli/factories/commandFactory.d.ts +7 -0
- package/dist/cli/factories/commandFactory.js +29 -21
- package/dist/cli/utils/inputValidation.d.ts +1 -0
- package/dist/cli/utils/inputValidation.js +6 -1
- package/dist/lib/utils/fileDetector.js +38 -10
- package/dist/lib/utils/imageCache.d.ts +10 -2
- package/dist/lib/utils/imageCache.js +12 -23
- package/dist/lib/utils/imageProcessor.d.ts +25 -0
- package/dist/lib/utils/imageProcessor.js +28 -1
- package/dist/lib/utils/logSanitize.d.ts +97 -0
- package/dist/lib/utils/logSanitize.js +163 -0
- package/dist/lib/utils/messageBuilder.js +19 -0
- package/dist/lib/utils/pdfProcessor.d.ts +7 -1
- package/dist/lib/utils/pdfProcessor.js +27 -3
- package/dist/utils/fileDetector.js +38 -10
- package/dist/utils/imageCache.d.ts +10 -2
- package/dist/utils/imageCache.js +12 -23
- package/dist/utils/imageProcessor.d.ts +25 -0
- package/dist/utils/imageProcessor.js +28 -1
- package/dist/utils/logSanitize.d.ts +97 -0
- package/dist/utils/logSanitize.js +163 -0
- package/dist/utils/messageBuilder.js +19 -0
- package/dist/utils/pdfProcessor.d.ts +7 -1
- package/dist/utils/pdfProcessor.js +27 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [10.0.1](https://github.com/juspay/neurolink/compare/v10.0.0...v10.0.1) (2026-07-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(cli):** redact URL credentials in observability/telemetry output and clear flush timer leak ([cbb91a4](https://github.com/juspay/neurolink/commit/cbb91a4957520e798a13b09f2486e63b27ed3590))
|
|
6
|
+
|
|
7
|
+
## [10.0.0](https://github.com/juspay/neurolink/compare/v9.95.3...v10.0.0) (2026-07-20)
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
- **(multimodal):** three breaking changes shipped earlier in 9.94.x-9.95.x
|
|
12
|
+
are now documented in docs/MIGRATION.md: (1) multimodal file/CSV
|
|
13
|
+
processing is fail-loud since v9.94.6 (throws ErrorFactory.fileProcessingFailed
|
|
14
|
+
/csvProcessingFailed instead of log-and-skip), (2) MessageContent
|
|
15
|
+
(src/lib/types/multimodal.ts) dropped its open index signature since
|
|
16
|
+
v9.94.6 (closed shape, TS2353 on unknown fields), (3) BatchCommandArgs.file
|
|
17
|
+
was renamed to .promptsFile since v9.95.1. No further behavior changes to
|
|
18
|
+
these three in this commit — this commit only adds the migration doc.
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **(multimodal):** close post-merge review gaps (batch parity, pdf limits, url-secret redaction, supervisor identity) ([1956f4a](https://github.com/juspay/neurolink/commit/1956f4ae0f525501da4fe1d017b4833cf8fc9665))
|
|
23
|
+
|
|
1
24
|
## [9.95.3](https://github.com/juspay/neurolink/compare/v9.95.2...v9.95.3) (2026-07-19)
|
|
2
25
|
|
|
3
26
|
### Bug Fixes
|