bry-biometric-collector 2.1.1-RC02 → 2.1.1-RC03
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 +0 -7
- package/dist/{CameraStatus_90d55dcd_2.1.1-RC02.js → CameraStatus_3994a78a_2.1.1-RC03.js} +2 -2
- package/dist/DocumentCollector_98c8685a_2.1.1-RC03.js +1363 -0
- package/dist/FaceCollector_9c201a70_2.1.1-RC03.js +2208 -0
- package/dist/bry-biometric-collector-main.js +1 -1
- package/dist/{en-us_35a3a8da_2.1.1-RC02.js → en-us_9e0134e1_2.1.1-RC03.js} +8 -9
- package/dist/{face_api_0e3ce8c8_2.1.1-RC02.js → face_api_0e3ce8c8_2.1.1-RC03.js} +1 -1
- package/dist/{fingersApi_f32ac0f1_2.1.1-RC02.js → fingersApi_f00a6a3a_2.1.1-RC03.js} +2 -2
- package/dist/{index-no-detector_acb82d83_2.1.1-RC02.js → index-no-detector_acb82d83_2.1.1-RC03.js} +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -1
- package/dist/{main_daa1fc88_2.1.1-RC02.js → main_d8b72209_2.1.1-RC03.js} +4233 -4254
- package/dist/{pt-br_1a694022_2.1.1-RC02.js → pt-br_4f758ccc_2.1.1-RC03.js} +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -2
- package/dist/DocumentCollector_2dd90bbd_2.1.1-RC02.js +0 -1374
- package/dist/FaceCollector_29fb0f24_2.1.1-RC02.js +0 -2173
package/dist/index.d.ts
CHANGED
@@ -37,7 +37,6 @@ 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 = 'VIDEO_FILTER'
|
41
40
|
}
|
42
41
|
|
43
42
|
export const enum BodyPartNames {
|
@@ -64,6 +63,7 @@ export const enum requestResultEnum {
|
|
64
63
|
UNKNOWN_LIVENESS_ERROR = 'UNKNOWN_LIVENESS_ERROR',
|
65
64
|
UNABLE_TO_COMMUNICATE_WITH_LIVENESS_SERVICE = 'UNABLE_TO_COMMUNICATE_WITH_LIVENESS_SERVICE',
|
66
65
|
UNABLE_TO_COMMUNICATE_WITH_TEMPLATE_EXTRACTION_SERVICE = 'UNABLE_TO_COMMUNICATE_WITH_TEMPLATE_EXTRACTION_SERVICE',
|
66
|
+
LIVENESS_EVALUATION_ERROR = 'LIVENESS_EVALUATION_ERROR',
|
67
67
|
}
|
68
68
|
|
69
69
|
export type FingerIndex = 0 | 1 | 2 | 4 | 6 | 3 | 5 | 7 | 8 | 9 | 10 | 11;
|
@@ -129,7 +129,6 @@ declare global {
|
|
129
129
|
[Props.EVALUATE_PHOTO]: string;
|
130
130
|
[Props.SHOW_CAPTURE_BUTTON]: string;
|
131
131
|
[Props.SHOW_UNCONFORMITIES]: string;
|
132
|
-
[Props.VIDEO_FILTER]: string;
|
133
132
|
/**
|
134
133
|
* Clears fingers and face, to make ready for a new collection.
|
135
134
|
* Will not clear jwtToken.
|
package/dist/index.js
CHANGED