@blinkdotnew/sdk 0.18.5 → 0.18.6
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1468,7 +1468,7 @@ var BlinkAuth = class {
|
|
|
1468
1468
|
popup.close();
|
|
1469
1469
|
}
|
|
1470
1470
|
reject(new BlinkAuthError("AUTH_TIMEOUT" /* AUTH_TIMEOUT */, "Authentication timed out"));
|
|
1471
|
-
},
|
|
1471
|
+
}, 3e5);
|
|
1472
1472
|
const checkClosed = setInterval(() => {
|
|
1473
1473
|
if (popup.closed) {
|
|
1474
1474
|
clearInterval(checkClosed);
|
package/dist/index.mjs
CHANGED
|
@@ -1466,7 +1466,7 @@ var BlinkAuth = class {
|
|
|
1466
1466
|
popup.close();
|
|
1467
1467
|
}
|
|
1468
1468
|
reject(new BlinkAuthError("AUTH_TIMEOUT" /* AUTH_TIMEOUT */, "Authentication timed out"));
|
|
1469
|
-
},
|
|
1469
|
+
}, 3e5);
|
|
1470
1470
|
const checkClosed = setInterval(() => {
|
|
1471
1471
|
if (popup.closed) {
|
|
1472
1472
|
clearInterval(checkClosed);
|
package/package.json
CHANGED