bry-biometric-collector 2.2.18-RC04 → 2.2.18
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 +6 -2
- package/dist/DocumentCollector_60829715_2.2.18.js +1023 -0
- package/dist/FaceCollector_d1bd0ef2_2.2.18.js +1921 -0
- package/dist/TakePictureBtn_85287d58_2.2.18.js +848 -0
- package/dist/bry-biometric-collector-main.js +2 -3
- package/dist/{en-us_901680c0_2.2.18-RC04.js → en-us_901680c0_2.2.18.js} +0 -1
- package/dist/{es-cl_1fe1aaa9_2.2.18-RC04.js → es-cl_1fe1aaa9_2.2.18.js} +0 -1
- package/dist/face_api_0e3ce8c8_2.2.18.js +36288 -0
- package/dist/fingersApi_3fc545c1_2.2.18.js +131 -0
- package/dist/index-no-detector_4b302e78_2.2.18.js +10414 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -3
- package/dist/main_3af065b9_2.2.18.js +23863 -0
- package/dist/{pt-br_bef1149f_2.2.18-RC04.js → pt-br_bef1149f_2.2.18.js} +0 -1
- package/package.json +1 -1
- package/dist/DocumentCollector_d5226ed9_2.2.18-RC04.js +0 -1356
- package/dist/FaceCollector_f45ba4ba_2.2.18-RC04.js +0 -2463
- package/dist/TakePictureBtn_fac72a1a_2.2.18-RC04.js +0 -1066
- package/dist/face_api_0e3ce8c8_2.2.18-RC04.js +0 -36289
- package/dist/fingersApi_e29e8d34_2.2.18-RC04.js +0 -132
- package/dist/index-no-detector_4b302e78_2.2.18-RC04.js +0 -10415
- package/dist/main_3e51994c_2.2.18-RC04.js +0 -25655
package/dist/index.d.ts
CHANGED
@@ -102,7 +102,7 @@ export type documentUnconformitiesValidated = BryWebCollectorComponentEvent<{
|
|
102
102
|
errorCode?: string;
|
103
103
|
status: requestResultEnum;
|
104
104
|
}>;
|
105
|
-
export type
|
105
|
+
export type lowQualityFaceEvent = CustomEvent<{
|
106
106
|
bodyParts: BodyPart[];
|
107
107
|
errorCode: string;
|
108
108
|
translatedError: string;
|
@@ -233,6 +233,6 @@ declare global {
|
|
233
233
|
'export-document': exportDocument;
|
234
234
|
'face-unconformities-validated': faceUnconformitiesValidated;
|
235
235
|
'document-unconformities-validated': documentUnconformitiesValidated;
|
236
|
-
'low-face
|
236
|
+
'low-quality-face': lowQualityFaceEvent;
|
237
237
|
}
|
238
238
|
}
|
package/dist/index.js
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { bd as e } from "./main_3af065b9_2.2.18.js";
|
2
2
|
export {
|
3
|
-
|
3
|
+
e as default
|
4
4
|
};
|
5
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJ5LWJpb21ldHJpYy1jb2xsZWN0b3ItbWFpbi5qcyIsInNvdXJjZXMiOltdLCJzb3VyY2VzQ29udGVudCI6W10sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7In0=
|