oidc-spa 6.0.6 → 6.0.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.
|
@@ -241,7 +241,7 @@ function createIframeTimeoutInitializationError(params) {
|
|
|
241
241
|
_a = _b.sent();
|
|
242
242
|
return [2 /*return*/, "not reachable"];
|
|
243
243
|
case 4:
|
|
244
|
-
if (content.length >
|
|
244
|
+
if (content.length > 3000 || !content.includes("oidc-spa.")) {
|
|
245
245
|
return [2 /*return*/, "reachable but does no contain the expected content"];
|
|
246
246
|
}
|
|
247
247
|
return [2 /*return*/, "seems ok"];
|
package/oidc/createOidc.js
CHANGED
|
@@ -115,7 +115,7 @@ var loginOrLogoutSilent_1 = require("./loginOrLogoutSilent");
|
|
|
115
115
|
var expectedCallbackFileVersion_1 = require("./expectedCallbackFileVersion");
|
|
116
116
|
var oidcCallbackPolyfill_1 = require("./oidcCallbackPolyfill");
|
|
117
117
|
// NOTE: Replaced at build time
|
|
118
|
-
var VERSION = "6.0.
|
|
118
|
+
var VERSION = "6.0.7";
|
|
119
119
|
var prOidcByConfigHash = new Map();
|
|
120
120
|
/** @see: https://docs.oidc-spa.dev/v/v6/usage */
|
|
121
121
|
function createOidc(params) {
|
package/package.json
CHANGED
|
@@ -161,7 +161,7 @@ export async function createIframeTimeoutInitializationError(params: {
|
|
|
161
161
|
return "not reachable";
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
if (content.length >
|
|
164
|
+
if (content.length > 3000 || !content.includes("oidc-spa.")) {
|
|
165
165
|
return "reachable but does no contain the expected content";
|
|
166
166
|
}
|
|
167
167
|
|