@regulaforensics/idv-capture-web 3.2.255-nightly → 3.2.256-nightly
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/dist/main.iife.js +11 -11
- package/dist/main.js +24 -19
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2573,22 +2573,27 @@ const Es = () => {
|
|
|
2573
2573
|
} catch (t) {
|
|
2574
2574
|
return window.location.origin;
|
|
2575
2575
|
}
|
|
2576
|
-
}, pd = (t) =>
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2576
|
+
}, pd = (t) => {
|
|
2577
|
+
const e = ad(fc);
|
|
2578
|
+
return {
|
|
2579
|
+
deviceId: e,
|
|
2580
|
+
metadata: {
|
|
2581
|
+
platform: "browser",
|
|
2582
|
+
osVersion: `${Je.osVersion}`,
|
|
2583
|
+
hostAppId: Es(),
|
|
2584
|
+
host: Es(),
|
|
2585
|
+
sdkVersion: "3.2.256-nightly".trim(),
|
|
2586
|
+
name: navigator.userAgent,
|
|
2587
|
+
deviceModel: `${Je.osName}/${Je.osVersion} ${Je.browserName}/${Je.fullBrowserVersion}`,
|
|
2588
|
+
hostAppVersion: `${Je.browserName}/${Je.fullBrowserVersion}`,
|
|
2589
|
+
userID: e
|
|
2590
|
+
},
|
|
2591
|
+
deviceType: "browser",
|
|
2592
|
+
heartbeatCadence: 0,
|
|
2593
|
+
serial: "",
|
|
2594
|
+
macAddress: ""
|
|
2595
|
+
};
|
|
2596
|
+
};
|
|
2592
2597
|
function _d() {
|
|
2593
2598
|
return F(this, null, function* () {
|
|
2594
2599
|
if (typeof navigator == "undefined" || !("geolocation" in navigator)) return null;
|
|
@@ -6541,7 +6546,7 @@ const Ui = () => F(null, null, function* () {
|
|
|
6541
6546
|
enableHighAccuracy: !0,
|
|
6542
6547
|
timeout: 15e3,
|
|
6543
6548
|
maximumAge: 6e4
|
|
6544
|
-
}, m = a.find((I) => I.reason === "system_restricted");
|
|
6549
|
+
}, m = a == null ? void 0 : a.find((I) => I.reason === "system_restricted");
|
|
6545
6550
|
Zt(() => {
|
|
6546
6551
|
Je.isSafari || p == null || p(!0);
|
|
6547
6552
|
}, []), nt(() => {
|
|
@@ -8611,7 +8616,7 @@ const Do = class Do extends Dr {
|
|
|
8611
8616
|
return (!this._currentScreenElement || !this._isTheSameModuleAndScreen(e)) && (this._currentScreenElement = Ws(e.id, r), this._currentScreenModuleId = e.id, this._currentScreenConfig = this.currentScreenConfig), this._currentScreenElement;
|
|
8612
8617
|
}
|
|
8613
8618
|
get version() {
|
|
8614
|
-
return `${"3.2.
|
|
8619
|
+
return `${"3.2.256-nightly".trim()}`;
|
|
8615
8620
|
}
|
|
8616
8621
|
disconnectedCallback() {
|
|
8617
8622
|
Bi.clearLogs();
|
|
@@ -8697,7 +8702,7 @@ class P1 {
|
|
|
8697
8702
|
}
|
|
8698
8703
|
/** service commands */
|
|
8699
8704
|
get version() {
|
|
8700
|
-
return "3.2.
|
|
8705
|
+
return "3.2.256-nightly";
|
|
8701
8706
|
}
|
|
8702
8707
|
set nonce(e) {
|
|
8703
8708
|
He.getState().setNonce(e);
|
package/package.json
CHANGED