bry-biometric-collector 3.3.0-RC03 → 3.3.0-RC05
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 -3
- package/dist/{DocumentCollector_7dff158f_3.3.0-RC03.js → DocumentCollector_fac8e88e_3.3.0-RC05.js} +258 -258
- package/dist/FaceCollector_d7a5f6dd_3.3.0-RC05.js +2387 -0
- package/dist/{ValidationAlert_90602fb5_3.3.0-RC03.js → ValidationAlert_51a3395e_3.3.0-RC05.js} +122 -122
- package/dist/{___vite-browser-external_commonjs-proxy_33bd553f_3.3.0-RC03.js → ___vite-browser-external_commonjs-proxy_9c968044_3.3.0-RC05.js} +1 -1
- package/dist/bry-biometric-collector-main.js +2 -2
- package/dist/faceApi_a8b6f8d4_3.3.0-RC05.js +15 -0
- package/dist/{fingersApi_0fe148d9_3.3.0-RC03.js → fingersApi_22e412a3_3.3.0-RC05.js} +34 -34
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/{index_9787e7e2_3.3.0-RC03.js → index_8a9061ba_3.3.0-RC05.js} +3 -3
- package/dist/{index_c5f180d9_3.3.0-RC03.js → index_a05d6356_3.3.0-RC05.js} +3 -3
- package/dist/{main_aed227b6_3.3.0-RC03.js → main_35f2cba0_3.3.0-RC05.js} +6434 -6398
- package/package.json +4 -2
- package/dist/FaceCollector_e0849e85_3.3.0-RC03.js +0 -2366
- package/dist/faceApi_53f06f20_3.3.0-RC03.js +0 -17
- /package/dist/{en-us_e83efd5d_3.3.0-RC03.js → en-us_e83efd5d_3.3.0-RC05.js} +0 -0
- /package/dist/{es-cl_5939150a_3.3.0-RC03.js → es-cl_5939150a_3.3.0-RC05.js} +0 -0
- /package/dist/{face_api_0e3ce8c8_3.3.0-RC03.js → face_api_0e3ce8c8_3.3.0-RC05.js} +0 -0
- /package/dist/{index-idlf-detector_39cfdffa_3.3.0-RC03.js → index-idlf-detector_39cfdffa_3.3.0-RC05.js} +0 -0
- /package/dist/{index-idlf-detector_a819b3c8_3.3.0-RC03.js → index-idlf-detector_a819b3c8_3.3.0-RC05.js} +0 -0
- /package/dist/{pt-br_fae15356_3.3.0-RC03.js → pt-br_fae15356_3.3.0-RC05.js} +0 -0
package/README.md
CHANGED
|
@@ -256,11 +256,16 @@ Currently supported tag parameters:
|
|
|
256
256
|
|
|
257
257
|
Example: `face_detection_sensitivity=strict`
|
|
258
258
|
|
|
259
|
-
- **
|
|
259
|
+
- **liveness_blob_size**: Defines the size that the encrypted liveness blob file should return.
|
|
260
260
|
|
|
261
|
-
|
|
261
|
+
Accepted values:
|
|
262
|
+
- `normal`: Normal size of the liveness blob.
|
|
263
|
+
- `small`: Small size of the liveness blob.
|
|
262
264
|
|
|
263
|
-
|
|
265
|
+
Default: `normal`
|
|
266
|
+
|
|
267
|
+
Example: `liveness_blob_size=small`
|
|
268
|
+
|
|
264
269
|
|
|
265
270
|
### **Run-time Configuration**
|
|
266
271
|
|
|
@@ -615,6 +620,12 @@ component.setNotifyEachFingerCollected(true);
|
|
|
615
620
|
|
|
616
621
|
The web component listens to and emits a few events. The events emitted are:
|
|
617
622
|
|
|
623
|
+
- **brycc-camera-ready**: When the camera device has been opened and is ready. The event payload has the structure:
|
|
624
|
+
|
|
625
|
+
```ts
|
|
626
|
+
{detail: {stream: MediaStream}
|
|
627
|
+
```
|
|
628
|
+
|
|
618
629
|
- **face-scrapped**: When the user scraps their face (by clicking capture again after having saved their picture) this event gets emitted without any data.
|
|
619
630
|
|
|
620
631
|
- **face-unconformities-validated**: When the photo is captured and after evaluating it, an event of this kind is emitted with their picture like so:
|