idmission-web-sdk 2.3.228 → 2.3.229
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/lib/models/VisionRuntime.d.ts.map +1 -1
- package/dist/sdk2.cjs.development.js +6 -3
- package/dist/sdk2.cjs.development.js.map +1 -1
- package/dist/sdk2.cjs.production.js +1 -1
- package/dist/sdk2.cjs.production.js.map +1 -1
- package/dist/sdk2.esm.js +6 -3
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +6 -3
- package/dist/sdk2.umd.development.js.map +1 -1
- package/dist/sdk2.umd.production.js +1 -1
- package/dist/sdk2.umd.production.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/sdk2.esm.js
CHANGED
|
@@ -205,7 +205,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
205
205
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
206
206
|
};
|
|
207
207
|
|
|
208
|
-
var webSdkVersion = '2.3.
|
|
208
|
+
var webSdkVersion = '2.3.229';
|
|
209
209
|
|
|
210
210
|
function getPlatform() {
|
|
211
211
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
@@ -25694,8 +25694,11 @@ function preloadVisionRuntime() {
|
|
|
25694
25694
|
switch (_a.label) {
|
|
25695
25695
|
case 0:
|
|
25696
25696
|
if (visionRuntimePreloading) return [2 /*return*/, new Promise(function (resolve) {
|
|
25697
|
-
setInterval(function () {
|
|
25698
|
-
if (!visionRuntimePreloading)
|
|
25697
|
+
var id = setInterval(function () {
|
|
25698
|
+
if (!visionRuntimePreloading) {
|
|
25699
|
+
clearInterval(id);
|
|
25700
|
+
resolve();
|
|
25701
|
+
}
|
|
25699
25702
|
}, 100);
|
|
25700
25703
|
})];
|
|
25701
25704
|
visionRuntimePreloading = true;
|