bry-biometric-collector 2.3.1 → 2.4.0-RC01
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 +13 -0
- package/dist/DocumentCollector_0ce4a997_2.4.0-RC01.js +1233 -0
- package/dist/FaceCollector_378e6e60_2.4.0-RC01.js +1989 -0
- package/dist/TakePictureBtn_469d970c_2.4.0-RC01.js +864 -0
- package/dist/{___vite-browser-external_commonjs-proxy_9d89b10a_2.3.1.js → ___vite-browser-external_commonjs-proxy_a11faf97_2.4.0-RC01.js} +1 -1
- package/dist/bry-biometric-collector-main.js +1 -1
- package/dist/{en-us_6bd969ac_2.3.1.js → en-us_46a6e2d2_2.4.0-RC01.js} +1 -1
- package/dist/{es-cl_892f6a0f_2.3.1.js → es-cl_af82486d_2.4.0-RC01.js} +1 -1
- package/dist/{fingersApi_8f5e7a1b_2.3.1.js → fingersApi_8058842b_2.4.0-RC01.js} +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/{index_884fc7b2_2.3.1.js → index_19569017_2.4.0-RC01.js} +2 -2
- package/dist/{index_71691111_2.3.1.js → index_fb2a804b_2.4.0-RC01.js} +2 -2
- package/dist/{main_e423e405_2.3.1.js → main_f7a63775_2.4.0-RC01.js} +4357 -4366
- package/dist/{pt-br_45d223b5_2.3.1.js → pt-br_b6088a59_2.4.0-RC01.js} +7 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/DocumentCollector_db74e94f_2.3.1.js +0 -1063
- package/dist/FaceCollector_22b15b61_2.3.1.js +0 -1992
- package/dist/TakePictureBtn_3319a771_2.3.1.js +0 -900
- /package/dist/{face_api_0e3ce8c8_2.3.1.js → face_api_0e3ce8c8_2.4.0-RC01.js} +0 -0
- /package/dist/{index-no-detector_4b302e78_2.3.1.js → index-no-detector_4b302e78_2.4.0-RC01.js} +0 -0
- /package/dist/{index-no-detector_b6972e40_2.3.1.js → index-no-detector_b6972e40_2.4.0-RC01.js} +0 -0
package/README.md
CHANGED
@@ -378,6 +378,19 @@ The Web-component exports a series of functions that the host environment may ca
|
|
378
378
|
|
379
379
|
- **setAgrAuthentication**: Wether to send the agrAuthentication: true on evaluate biometrics request.
|
380
380
|
|
381
|
+
- **setId**: Sets the request ID to use when validating the face/fingers using endpoint.
|
382
|
+
Example:
|
383
|
+
|
384
|
+
```js
|
385
|
+
component.setId('61a8cc3d-cb31-4b94-acd9-b283f185a94f');
|
386
|
+
// Gets sent like so:
|
387
|
+
// biometrics: {
|
388
|
+
// agrAuthentication?: boolean;
|
389
|
+
// bodyParts: BodyPart[];
|
390
|
+
// ID: 61a8cc3d-cb31-4b94-acd9-b283f185a94f
|
391
|
+
// }
|
392
|
+
```
|
393
|
+
|
381
394
|
- **setMissingDisabled**: Disables the missing button completely. Accepts a boolean.
|
382
395
|
Example:
|
383
396
|
|