@axa-fr/react-oidc 7.0.1 → 7.1.0-alpha.1004
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.
|
@@ -12,6 +12,7 @@ const TokenRenewMode = {
|
|
|
12
12
|
id_token_invalid: "id_token_invalid"
|
|
13
13
|
};
|
|
14
14
|
const openidWellknownUrlEndWith = "/.well-known/openid-configuration";
|
|
15
|
+
const version = "7.1.0-alpha.1004";
|
|
15
16
|
function checkDomain(domains, endpoint) {
|
|
16
17
|
if (!endpoint) {
|
|
17
18
|
return;
|
|
@@ -486,7 +487,8 @@ const handleMessage = (event) => {
|
|
|
486
487
|
port.postMessage({
|
|
487
488
|
tokens: null,
|
|
488
489
|
status: currentDatabase.status,
|
|
489
|
-
configurationName
|
|
490
|
+
configurationName,
|
|
491
|
+
version
|
|
490
492
|
});
|
|
491
493
|
} else {
|
|
492
494
|
const tokens = {
|
|
@@ -504,7 +506,8 @@ const handleMessage = (event) => {
|
|
|
504
506
|
port.postMessage({
|
|
505
507
|
tokens,
|
|
506
508
|
status: currentDatabase.status,
|
|
507
|
-
configurationName
|
|
509
|
+
configurationName,
|
|
510
|
+
version
|
|
508
511
|
});
|
|
509
512
|
}
|
|
510
513
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axa-fr/react-oidc",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.1.0-alpha.1004",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"lint": "eslint src"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@axa-fr/oidc-client-service-worker": "7.0.
|
|
44
|
-
"@axa-fr/oidc-client": "7.0.
|
|
43
|
+
"@axa-fr/oidc-client-service-worker": "7.1.0-alpha.1004",
|
|
44
|
+
"@axa-fr/oidc-client": "7.1.0-alpha.1004",
|
|
45
45
|
"base64-js": "1.5.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|