bry-biometric-collector 3.3.0-RC04 → 3.3.0-RC06
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 +8 -2
- package/dist/{DocumentCollector_defd5e57_3.3.0-RC04.js → DocumentCollector_ec54949a_3.3.0-RC06.js} +105 -105
- package/dist/FaceCollector_d7b7f7c7_3.3.0-RC06.js +2390 -0
- package/dist/{ValidationAlert_722c259d_3.3.0-RC04.js → ValidationAlert_ac046013_3.3.0-RC06.js} +1 -1
- package/dist/{___vite-browser-external_commonjs-proxy_c9629267_3.3.0-RC04.js → ___vite-browser-external_commonjs-proxy_ed53a62c_3.3.0-RC06.js} +3 -3
- package/dist/bry-biometric-collector-main.js +2 -2
- package/dist/{fingersApi_2e316625_3.3.0-RC04.js → fingersApi_e3b0a904_3.3.0-RC06.js} +2 -2
- package/dist/index.js +2 -2
- package/dist/{index_ccdcae61_3.3.0-RC04.js → index_10ec837c_3.3.0-RC06.js} +3 -3
- package/dist/{index_882c2cd7_3.3.0-RC04.js → index_2611392a_3.3.0-RC06.js} +3 -3
- package/dist/{main_adc308db_3.3.0-RC04.js → main_1dfbf19c_3.3.0-RC06.js} +5753 -5737
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/FaceCollector_16e3c9ed_3.3.0-RC04.js +0 -2392
- package/dist/faceApi_8254146e_3.3.0-RC04.js +0 -15
- /package/dist/{en-us_e83efd5d_3.3.0-RC04.js → en-us_e83efd5d_3.3.0-RC06.js} +0 -0
- /package/dist/{es-cl_5939150a_3.3.0-RC04.js → es-cl_5939150a_3.3.0-RC06.js} +0 -0
- /package/dist/{face_api_0e3ce8c8_3.3.0-RC04.js → face_api_0e3ce8c8_3.3.0-RC06.js} +0 -0
- /package/dist/{index-idlf-detector_39cfdffa_3.3.0-RC04.js → index-idlf-detector_39cfdffa_3.3.0-RC06.js} +0 -0
- /package/dist/{index-idlf-detector_a819b3c8_3.3.0-RC04.js → index-idlf-detector_a819b3c8_3.3.0-RC06.js} +0 -0
- /package/dist/{pt-br_fae15356_3.3.0-RC04.js → pt-br_fae15356_3.3.0-RC06.js} +0 -0
package/README.md
CHANGED
|
@@ -519,8 +519,8 @@ component.setNotifyEachFingerCollected(true);
|
|
|
519
519
|
|
|
520
520
|
- **setLivenessEndpoint(url: string)**: Sets the liveness endpoint to validate the capture. This is required when liveness is enabled. The component will uise this endpoint to evaluate capture and facial liveness.
|
|
521
521
|
|
|
522
|
-
- **async
|
|
523
|
-
|
|
522
|
+
- **async captureFace(
|
|
523
|
+
validateCapture: boolean
|
|
524
524
|
): Promise<{
|
|
525
525
|
returnCode: handleCaptureReturnStatus;
|
|
526
526
|
message?: string;
|
|
@@ -620,6 +620,12 @@ component.setNotifyEachFingerCollected(true);
|
|
|
620
620
|
|
|
621
621
|
The web component listens to and emits a few events. The events emitted are:
|
|
622
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
|
+
|
|
623
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.
|
|
624
630
|
|
|
625
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:
|