bry-biometric-collector 2.2.7 → 2.2.8-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 +24 -1
- package/dist/CameraBtn_acfe282c_2.2.8-RC01.js +641 -0
- package/dist/DocumentCollector_81c6ec20_2.2.8-RC01.js +1394 -0
- package/dist/FaceCollector_8301e4cd_2.2.8-RC01.js +2369 -0
- package/dist/bry-biometric-collector-main.js +2 -1
- package/dist/{en-us_55a6748c_2.2.7.js → en-us_dfe3f804_2.2.8-RC01.js} +17 -14
- package/dist/es_14b74e4b_2.2.8-RC01.js +252 -0
- package/dist/face_api_0e3ce8c8_2.2.8-RC01.js +36289 -0
- package/dist/fingersApi_49c3f701_2.2.8-RC01.js +147 -0
- package/dist/index-no-detector_acb82d83_2.2.8-RC01.js +10396 -0
- package/dist/index.d.ts +8 -2
- package/dist/index.js +2 -1
- package/dist/main_62d50f90_2.2.8-RC01.js +25579 -0
- package/dist/{pt-br_3ddd5d1d_2.2.7.js → pt-br_2a12cf43_2.2.8-RC01.js} +5 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/CameraBtn_ced4ca16_2.2.7.js +0 -513
- package/dist/DocumentCollector_515a55ec_2.2.7.js +0 -1009
- package/dist/FaceCollector_f4ebbfa6_2.2.7.js +0 -1679
- package/dist/face_api_0e3ce8c8_2.2.7.js +0 -36288
- package/dist/fingersApi_11bef636_2.2.7.js +0 -146
- package/dist/index-no-detector_acb82d83_2.2.7.js +0 -10395
- package/dist/main_dd4c53c5_2.2.7.js +0 -23738
package/dist/index.d.ts
CHANGED
@@ -37,8 +37,11 @@ export enum Props {
|
|
37
37
|
EVALUATE_PHOTO = 'evaluate_photo',
|
38
38
|
SHOW_CAPTURE_BUTTON = 'show_capture_button',
|
39
39
|
SHOW_UNCONFORMITIES = 'show_unconformities',
|
40
|
-
VIDEO_FILTER = '
|
41
|
-
SHOW_CONFIG_BUTTON = '
|
40
|
+
VIDEO_FILTER = 'video_filter',
|
41
|
+
SHOW_CONFIG_BUTTON = 'show_config_button',
|
42
|
+
SHOW_AUTO_CAPTURE_BUTTON = 'show_auto_capture_button',
|
43
|
+
SHOW_CAMERA_BUTTON = 'show_camera_button',
|
44
|
+
LANGUAGE = 'language'
|
42
45
|
}
|
43
46
|
|
44
47
|
export const enum BodyPartNames {
|
@@ -133,6 +136,9 @@ declare global {
|
|
133
136
|
[Props.SHOW_UNCONFORMITIES]: string;
|
134
137
|
[Props.VIDEO_FILTER]: string;
|
135
138
|
[Props.SHOW_CONFIG_BUTTON]: string;
|
139
|
+
[Props.SHOW_AUTO_CAPTURE_BUTTON]: string;
|
140
|
+
[Props.SHOW_CAMERA_BUTTON]: string;
|
141
|
+
[Props.LANGUAGE]: string;
|
136
142
|
/**
|
137
143
|
* Clears fingers and face, to make ready for a new collection.
|
138
144
|
* Will not clear jwtToken.
|
package/dist/index.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { bi as f } from "./main_62d50f90_2.2.8-RC01.js";
|
2
2
|
export {
|
3
3
|
f as default
|
4
4
|
};
|
5
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJ5LWJpb21ldHJpYy1jb2xsZWN0b3ItbWFpbi5qcyIsInNvdXJjZXMiOltdLCJzb3VyY2VzQ29udGVudCI6W10sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7In0=
|