@backstage/plugin-auth-node 0.2.13-next.1 → 0.2.13-next.2
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/CHANGELOG.md +9 -0
- package/dist/index.d.ts +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ interface BackstageSignInResult {
|
|
|
34
34
|
*
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
type IdentityApiGetIdentityRequest = {
|
|
38
38
|
request: Request<unknown>;
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
@@ -54,7 +54,7 @@ interface BackstageIdentityResponse extends BackstageSignInResult {
|
|
|
54
54
|
*
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
type BackstageUserIdentity = {
|
|
58
58
|
/**
|
|
59
59
|
* The type of identity that this structure represents. In the frontend app
|
|
60
60
|
* this will currently always be 'user'.
|
|
@@ -93,7 +93,7 @@ interface IdentityApi {
|
|
|
93
93
|
* @experimental This is not a stable API yet
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
|
|
96
|
+
type IdentityClientOptions = {
|
|
97
97
|
discovery: PluginEndpointDiscovery;
|
|
98
98
|
issuer?: string;
|
|
99
99
|
/** JWS "alg" (Algorithm) Header Parameter values. Defaults to an array containing just ES256.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-node",
|
|
3
|
-
"version": "0.2.13-next.
|
|
3
|
+
"version": "0.2.13-next.2",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"start": "backstage-cli package start"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@backstage/backend-common": "^0.18.4-next.
|
|
25
|
+
"@backstage/backend-common": "^0.18.4-next.2",
|
|
26
26
|
"@backstage/config": "^1.0.7",
|
|
27
27
|
"@backstage/errors": "^1.1.5",
|
|
28
28
|
"@types/express": "*",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"winston": "^3.2.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@backstage/backend-test-utils": "^0.1.36-next.
|
|
36
|
-
"@backstage/cli": "^0.22.6-next.
|
|
35
|
+
"@backstage/backend-test-utils": "^0.1.36-next.2",
|
|
36
|
+
"@backstage/cli": "^0.22.6-next.2",
|
|
37
37
|
"lodash": "^4.17.21",
|
|
38
38
|
"msw": "^1.0.0",
|
|
39
39
|
"uuid": "^8.0.0"
|