@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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/plugin-auth-node
2
2
 
3
+ ## 0.2.13-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.18.4-next.2
9
+ - @backstage/config@1.0.7
10
+ - @backstage/errors@1.1.5
11
+
3
12
  ## 0.2.13-next.1
4
13
 
5
14
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -34,7 +34,7 @@ interface BackstageSignInResult {
34
34
  *
35
35
  * @public
36
36
  */
37
- declare type IdentityApiGetIdentityRequest = {
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
- declare type BackstageUserIdentity = {
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
- declare type IdentityClientOptions = {
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.1",
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.1",
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.1",
36
- "@backstage/cli": "^0.22.6-next.1",
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"