bry-biometric-collector 2.2.17 → 2.2.18-RC02
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 +14 -1
- package/dist/DocumentCollector_9050b732_2.2.18-RC02.js +1356 -0
- package/dist/FaceCollector_fbda99c6_2.2.18-RC02.js +2468 -0
- package/dist/TakePictureBtn_a40bc646_2.2.18-RC02.js +1066 -0
- package/dist/bry-biometric-collector-main.js +3 -2
- package/dist/{en-us_178afe03_2.2.17.js → en-us_901680c0_2.2.18-RC02.js} +9 -7
- package/dist/{es-cl_ff8fb88a_2.2.17.js → es-cl_1fe1aaa9_2.2.18-RC02.js} +3 -1
- package/dist/face_api_0e3ce8c8_2.2.18-RC02.js +36289 -0
- package/dist/fingersApi_1b9929d9_2.2.18-RC02.js +132 -0
- package/dist/index-no-detector_4b302e78_2.2.18-RC02.js +10415 -0
- package/dist/index.d.ts +13 -3
- package/dist/index.js +3 -2
- package/dist/main_22b66069_2.2.18-RC02.js +25654 -0
- package/dist/{pt-br_25be31c7_2.2.17.js → pt-br_bef1149f_2.2.18-RC02.js} +3 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/DocumentCollector_93e90760_2.2.17.js +0 -1025
- package/dist/FaceCollector_1bfc69f6_2.2.17.js +0 -1897
- package/dist/WaterMark_70d91580_2.2.17.js +0 -1014
- package/dist/face_api_0e3ce8c8_2.2.17.js +0 -36288
- package/dist/fingersApi_e46b61b1_2.2.17.js +0 -131
- package/dist/index-no-detector_4b302e78_2.2.17.js +0 -10414
- package/dist/main_1d24ae7c_2.2.17.js +0 -23835
package/README.md
CHANGED
@@ -191,6 +191,12 @@ Currently supported tag parameters:
|
|
191
191
|
|
192
192
|
Example: `show_justification_field=false`
|
193
193
|
|
194
|
+
- **min_eye_to_eye_dist**: The minimum distance between the eyes that should be accepted on face collector.
|
195
|
+
|
196
|
+
Default: `0`
|
197
|
+
|
198
|
+
Example: `min_eye_to_eye_dist=50`
|
199
|
+
|
194
200
|
### **Run-time Configuration**
|
195
201
|
|
196
202
|
#### **Functions**
|
@@ -525,10 +531,17 @@ The web component listens to and emits a few events. The events emitted are:
|
|
525
531
|
- **face-unconformities-validated**: When the photo is captured and after evaluating it, an event of this kind is emitted with their picture like so:
|
526
532
|
|
527
533
|
```ts
|
528
|
-
{detail: {bodyParts[{bodyPart:'FACE', data: string, livenessBlob: string *, livenessResult: string}
|
534
|
+
{detail: {bodyParts[{bodyPart:'FACE', data: string, livenessBlob: string *, livenessResult: string},
|
535
|
+
{bodyPart:'FACE', resized: true, data: string}]} *
|
529
536
|
* only if liveness_enable=true
|
530
537
|
```
|
531
538
|
|
539
|
+
- **low-face-quality**: When the photo is captured and the distance between the eyes is below the minimum required (min_eye_to_eye_dist), this event is emitted.
|
540
|
+
|
541
|
+
```ts
|
542
|
+
{detail: {bodyParts[{bodyPart: 'FACE', minEyeToEyeDist: number, capturedEyeToEyeDist: number}], errorCode: string, translatedError: string}}
|
543
|
+
```
|
544
|
+
|
532
545
|
- **export-face**: When the user saves their face (by clicking finish), an event of this kind is emitted with their picture like so:
|
533
546
|
|
534
547
|
```ts
|