piral-oidc 0.15.3-beta.4970 → 0.15.3-beta.4989
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ export async function setup(piral: PiletApi) {
|
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
Note that this value may change if the Piral instance supports an "on the fly" login (i.e., a login without redirect
|
|
46
|
+
Note that this value may change if the Piral instance supports an "on the fly" login (i.e., a login without redirect/reloading of the page).
|
|
47
47
|
|
|
48
48
|
If you need to use claims from the authentication:
|
|
49
49
|
|
|
@@ -52,7 +52,7 @@ import { PiletApi } from '<name-of-piral-instance>';
|
|
|
52
52
|
|
|
53
53
|
export async function setup(piral: PiletApi) {
|
|
54
54
|
const userClaims = await piral.getProfile();
|
|
55
|
-
// consume profile
|
|
55
|
+
// consume profile/claims information
|
|
56
56
|
}
|
|
57
57
|
```
|
|
58
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-oidc",
|
|
3
|
-
"version": "0.15.3-beta.
|
|
3
|
+
"version": "0.15.3-beta.4989",
|
|
4
4
|
"description": "Plugin to integrate authentication using OpenID connect in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"oidc-client": "^1.10.1"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"piral-core": "0.15.3-beta.
|
|
69
|
+
"piral-core": "0.15.3-beta.4989"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"piral-core": "0.14.x || 0.15.x"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "57af209be93d79b5bbf2996f2c3b55fdd8e1e2d1"
|
|
75
75
|
}
|