@juspay/neurolink 9.95.2 → 10.0.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 +23 -0
- package/dist/browser/neurolink.min.js +380 -380
- package/dist/cli/commands/proxy.d.ts +26 -0
- package/dist/cli/commands/proxy.js +132 -13
- 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/core/constants.d.ts +3 -0
- package/dist/core/constants.js +10 -0
- package/dist/lib/core/constants.d.ts +3 -0
- package/dist/lib/core/constants.js +10 -0
- package/dist/lib/types/file.d.ts +38 -1
- package/dist/lib/utils/fileDetector.js +69 -6
- 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 +36 -0
- package/dist/lib/utils/pdfProcessor.d.ts +30 -1
- package/dist/lib/utils/pdfProcessor.js +215 -52
- package/dist/types/file.d.ts +38 -1
- package/dist/utils/fileDetector.js +69 -6
- 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 +36 -0
- package/dist/utils/pdfProcessor.d.ts +30 -1
- package/dist/utils/pdfProcessor.js +215 -52
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [10.0.0](https://github.com/juspay/neurolink/compare/v9.95.3...v10.0.0) (2026-07-20)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
- **(multimodal):** three breaking changes shipped earlier in 9.94.x-9.95.x
|
|
6
|
+
are now documented in docs/MIGRATION.md: (1) multimodal file/CSV
|
|
7
|
+
processing is fail-loud since v9.94.6 (throws ErrorFactory.fileProcessingFailed
|
|
8
|
+
/csvProcessingFailed instead of log-and-skip), (2) MessageContent
|
|
9
|
+
(src/lib/types/multimodal.ts) dropped its open index signature since
|
|
10
|
+
v9.94.6 (closed shape, TS2353 on unknown fields), (3) BatchCommandArgs.file
|
|
11
|
+
was renamed to .promptsFile since v9.95.1. No further behavior changes to
|
|
12
|
+
these three in this commit — this commit only adds the migration doc.
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **(multimodal):** close post-merge review gaps (batch parity, pdf limits, url-secret redaction, supervisor identity) ([1956f4a](https://github.com/juspay/neurolink/commit/1956f4ae0f525501da4fe1d017b4833cf8fc9665))
|
|
17
|
+
|
|
18
|
+
## [9.95.3](https://github.com/juspay/neurolink/compare/v9.95.2...v9.95.3) (2026-07-19)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **(pdf):** harden image conversion — accurate pages, per-page resilience, scale, streaming, aggregate & URL limits ([d58b0c9](https://github.com/juspay/neurolink/commit/d58b0c9f375fdabce913e0b85f30f6996c2d6f6a))
|
|
23
|
+
|
|
1
24
|
## [9.95.2](https://github.com/juspay/neurolink/compare/v9.95.1...v9.95.2) (2026-07-19)
|
|
2
25
|
|
|
3
26
|
### Bug Fixes
|