bry-biometric-collector 2.3.0-RC01 → 2.3.1-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 +7 -1
- package/dist/{DocumentCollector_70c995f3_2.3.0-RC01.js → DocumentCollector_4544d312_2.3.1-RC01.js} +4 -4
- package/dist/FaceCollector_3bc9d354_2.3.1-RC01.js +2525 -0
- package/dist/{TakePictureBtn_8c875d45_2.3.0-RC01.js → TakePictureBtn_ea35191d_2.3.1-RC01.js} +2 -2
- package/dist/bry-biometric-collector-main.js +1 -1
- package/dist/{en-us_d35c0560_2.3.0-RC01.js → en-us_d35c0560_2.3.1-RC01.js} +1 -1
- package/dist/{es-cl_735652e7_2.3.0-RC01.js → es-cl_735652e7_2.3.1-RC01.js} +1 -1
- package/dist/{face_api_0e3ce8c8_2.3.0-RC01.js → face_api_0e3ce8c8_2.3.1-RC01.js} +1 -1
- package/dist/{fingersApi_021ba9e0_2.3.0-RC01.js → fingersApi_a9cae0ec_2.3.1-RC01.js} +2 -2
- package/dist/{index-no-detector_4b302e78_2.3.0-RC01.js → index-no-detector_4b302e78_2.3.1-RC01.js} +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/dist/{main_665c72a0_2.3.0-RC01.js → main_72a0926e_2.3.1-RC01.js} +3085 -3054
- package/dist/{pt-br_cf90e78b_2.3.0-RC01.js → pt-br_cf90e78b_2.3.1-RC01.js} +1 -1
- package/package.json +1 -1
- package/dist/FaceCollector_7fe3036f_2.3.0-RC01.js +0 -2598
package/dist/index.d.ts
CHANGED
@@ -107,6 +107,11 @@ export type lowQualityFaceEvent = CustomEvent<{
|
|
107
107
|
errorCode: string;
|
108
108
|
translatedError: string;
|
109
109
|
}>;
|
110
|
+
export type extensionErrorEvent = CustomEvent<{
|
111
|
+
code: number;
|
112
|
+
description: string;
|
113
|
+
key: string;
|
114
|
+
}>;
|
110
115
|
|
111
116
|
declare global {
|
112
117
|
interface BryWebCollectorComponent extends HTMLElement {
|
@@ -234,5 +239,6 @@ declare global {
|
|
234
239
|
'face-unconformities-validated': faceUnconformitiesValidated;
|
235
240
|
'document-unconformities-validated': documentUnconformitiesValidated;
|
236
241
|
'low-quality-face': lowQualityFaceEvent;
|
242
|
+
'extension-error': extensionErrorEvent;
|
237
243
|
}
|
238
244
|
}
|
package/dist/index.js
CHANGED