bry-biometric-collector 2.3.1 → 2.4.0-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.
Files changed (23) hide show
  1. package/README.md +13 -0
  2. package/dist/DocumentCollector_3e9bb7ab_2.4.0-RC02.js +1249 -0
  3. package/dist/FaceCollector_692e01fd_2.4.0-RC02.js +1985 -0
  4. package/dist/TakePictureBtn_4c6ba429_2.4.0-RC02.js +864 -0
  5. package/dist/{___vite-browser-external_commonjs-proxy_9d89b10a_2.3.1.js → ___vite-browser-external_commonjs-proxy_59ddaca3_2.4.0-RC02.js} +1 -1
  6. package/dist/bry-biometric-collector-main.js +1 -1
  7. package/dist/{en-us_6bd969ac_2.3.1.js → en-us_46a6e2d2_2.4.0-RC02.js} +1 -1
  8. package/dist/{es-cl_892f6a0f_2.3.1.js → es-cl_af82486d_2.4.0-RC02.js} +1 -1
  9. package/dist/{fingersApi_8f5e7a1b_2.3.1.js → fingersApi_3692dc1e_2.4.0-RC02.js} +1 -1
  10. package/dist/index.d.ts +1 -0
  11. package/dist/index.js +1 -1
  12. package/dist/{index_884fc7b2_2.3.1.js → index_b5219781_2.4.0-RC02.js} +2 -2
  13. package/dist/{index_71691111_2.3.1.js → index_bb78cb62_2.4.0-RC02.js} +2 -2
  14. package/dist/{main_e423e405_2.3.1.js → main_61f7c84f_2.4.0-RC02.js} +4799 -4806
  15. package/dist/{pt-br_45d223b5_2.3.1.js → pt-br_b6088a59_2.4.0-RC02.js} +7 -7
  16. package/dist/style.css +1 -1
  17. package/package.json +1 -1
  18. package/dist/DocumentCollector_db74e94f_2.3.1.js +0 -1063
  19. package/dist/FaceCollector_22b15b61_2.3.1.js +0 -1992
  20. package/dist/TakePictureBtn_3319a771_2.3.1.js +0 -900
  21. /package/dist/{face_api_0e3ce8c8_2.3.1.js → face_api_0e3ce8c8_2.4.0-RC02.js} +0 -0
  22. /package/dist/{index-no-detector_4b302e78_2.3.1.js → index-no-detector_4b302e78_2.4.0-RC02.js} +0 -0
  23. /package/dist/{index-no-detector_b6972e40_2.3.1.js → index-no-detector_b6972e40_2.4.0-RC02.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