@idscan/idvc2 2.14.0 → 2.15.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/README.md +10 -0
- package/dist/idvc.js +1 -1
- package/dist/idvc.js.gzip +0 -0
- package/dist/index.html +49 -18
- package/dist/js/defaultConfig.ts +27 -28
- package/dist/js/environment/documentTypes.ts +25 -7
- package/dist/js/environment/langs.js +1 -1
- package/dist/langs.js.gzip +0 -0
- package/dist/networks/Blur-chunk.js +1 -1
- package/dist/networks/Bubble-chunk.js +1 -1
- package/dist/networks/GeneralTypeDetectionYolo-chunk.js +1 -1
- package/dist/networks/MRZ-chunk.js +1 -1
- package/dist/networks/PDF-chunk.js +1 -1
- package/dist/types/defaultConfig.d.ts +1 -1
- package/dist/types/environment/documentTypes.d.ts +7 -4
- package/dist/types/environment/langs.d.ts +13 -9
- package/dist/types/eventListeners/eventListeners.d.ts +1 -1
- package/dist/types/eventListeners/selectDocumentType/selectHandler.d.ts +1 -1
- package/dist/types/helpers/validationEligibility.d.ts +1 -0
- package/dist/types/initialize.d.ts +3 -0
- package/dist/types/loader/asyncLoader.d.ts +1 -1
- package/dist/types/loop.d.ts +0 -1
- package/dist/types/modules/App/UI.d.ts +1 -1
- package/dist/types/modules/Config.d.ts +5 -15
- package/dist/types/modules/camera/camera.d.ts +1 -1
- package/dist/types/modules/ui/MessageBox/MessageBox.d.ts +1 -1
- package/dist/types/modules/ui/StepsList/StepsScreen.d.ts +3 -1
- package/dist/types/stepProcessing.d.ts +1 -1
- package/dist/types/types/context.d.ts +2 -1
- package/dist/types/util.d.ts +1 -6
- package/package.json +1 -1
- package/dist/types/loader/loaderUploadMode.d.ts +0 -1
package/README.md
CHANGED
|
@@ -81,6 +81,16 @@ import IDVC from '@idscan/idvc2'
|
|
|
81
81
|
|
|
82
82
|
## Version history
|
|
83
83
|
|
|
84
|
+
- **2.15.0**
|
|
85
|
+
- feat: document type 'ID' has been removed and split into 2 types: 'DL' & 'IC'. The workflow of these document types is the same as 'ID'
|
|
86
|
+
- feat: added option 'autocaptureConfidence'. The option specifies the strictness of the type recognition decision filter. The value must be a floating point number between 0 and 1. Where 1 is the strictest filter, 0 is the least strict.
|
|
87
|
+
- feat: 'captureTimeout' option and the 'onCaptureTimeout' hook was removed
|
|
88
|
+
- feat: the text of the loader notifications was reworked
|
|
89
|
+
- feat: improved capture quality
|
|
90
|
+
- feat: the 'chunkPublicPath' option is no longer valid. All assets must be stored in the path specified by the 'networkUrl' option
|
|
91
|
+
- feat: added a warning that the camera is off, but it is mandatory in some steps of the document
|
|
92
|
+
- feat: added notification to make the user go to the start screen if submit with warnings is enabled
|
|
93
|
+
|
|
84
94
|
- **2.14.0**
|
|
85
95
|
- feat: added capture limits depending on document type for the 'front' step. For example, now it will not be possible to validate the 'front' step using a passport if the 'Green Card' document is selected, etc.
|
|
86
96
|
- feat: new pdf track string format in manual upload mode
|