bry-biometric-collector 2.2.6 → 2.2.7
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 -0
- package/dist/{CameraBtn_49f061bf_2.2.6.js → CameraBtn_ced4ca16_2.2.7.js} +186 -183
- package/dist/DocumentCollector_515a55ec_2.2.7.js +1009 -0
- package/dist/FaceCollector_f4ebbfa6_2.2.7.js +1679 -0
- package/dist/bry-biometric-collector-main.js +1 -1
- package/dist/{fingersApi_4beb35e4_2.2.6.js → fingersApi_11bef636_2.2.7.js} +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/{main_db50524f_2.2.6.js → main_dd4c53c5_2.2.7.js} +3128 -3100
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/DocumentCollector_dc6def11_2.2.6.js +0 -971
- package/dist/FaceCollector_ab5552ba_2.2.6.js +0 -1638
- /package/dist/{en-us_55a6748c_2.2.6.js → en-us_55a6748c_2.2.7.js} +0 -0
- /package/dist/{face_api_0e3ce8c8_2.2.6.js → face_api_0e3ce8c8_2.2.7.js} +0 -0
- /package/dist/{index-no-detector_acb82d83_2.2.6.js → index-no-detector_acb82d83_2.2.7.js} +0 -0
- /package/dist/{pt-br_3ddd5d1d_2.2.6.js → pt-br_3ddd5d1d_2.2.7.js} +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
import { u as D, $ as C, n as y, g, i as b, a as M, s as l, b as h, c as U, F, d as x, e as c, v, f as P, A as B, h as S, j as E, k as W, l as k, m as X, o as w, p as $, q as G } from "./
|
1
|
+
import { u as D, $ as C, n as y, g, i as b, a as M, s as l, b as h, c as U, F, d as x, e as c, v, f as P, A as B, h as S, j as E, k as W, l as k, m as X, o as w, p as $, q as G } from "./main_dd4c53c5_2.2.7.js";
|
2
2
|
const d = D(C);
|
3
3
|
var V = /* @__PURE__ */ ((n) => (n.EXTENSION_MISSING = "EXTENSION_MISSING", n.USER_CANCELLED = "USER_CANCELLED", n.UNAUTHORIZED_EXTENSION = "UNAUTHORIZED_EXTENSION", n.SCANNER_NOT_FOUND = "SCANNER_NOT_FOUND", n.EXTENSION_MODULE_NOT_INSTALLED = "EXTENSION_MODULE_NOT_INSTALLED", n.FINGER_NOT_REMOVED = "FINGER_NOT_REMOVED", n.UNKNOWN_ERROR = "UNKNOWN_ERROR", n.EVALUATE_BIOMETRICS_TIMEOUT = "EVALUATE_BIOMETRICS_TIMEOUT", n.EVALUATE_BIOMETRICS_NETWORK_ISSUE = "EVALUATE_BIOMETRICS_NETWORK_ISSUE", n))(V || {});
|
4
4
|
class s extends Error {
|
package/dist/index.d.ts
CHANGED
@@ -37,7 +37,8 @@ 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'
|
40
|
+
VIDEO_FILTER = 'VIDEO_FILTER',
|
41
|
+
SHOW_CONFIG_BUTTON = 'SHOW_CONFIG_BUTTON'
|
41
42
|
}
|
42
43
|
|
43
44
|
export const enum BodyPartNames {
|
@@ -131,6 +132,7 @@ declare global {
|
|
131
132
|
[Props.SHOW_CAPTURE_BUTTON]: string;
|
132
133
|
[Props.SHOW_UNCONFORMITIES]: string;
|
133
134
|
[Props.VIDEO_FILTER]: string;
|
135
|
+
[Props.SHOW_CONFIG_BUTTON]: string;
|
134
136
|
/**
|
135
137
|
* Clears fingers and face, to make ready for a new collection.
|
136
138
|
* Will not clear jwtToken.
|
package/dist/index.js
CHANGED