@backstage/plugin-auth-backend 0.12.3 → 0.13.0-next.0
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 +16 -0
- package/dist/index.cjs.js +6 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -397,7 +397,8 @@ declare type Options = {
|
|
|
397
397
|
cookieDomain: string;
|
|
398
398
|
cookiePath: string;
|
|
399
399
|
appOrigin: string;
|
|
400
|
-
|
|
400
|
+
/** @deprecated This option is no longer needed */
|
|
401
|
+
tokenIssuer?: TokenIssuer;
|
|
401
402
|
isOriginAllowed: (origin: string) => boolean;
|
|
402
403
|
callbackUrl: string;
|
|
403
404
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
3
|
"description": "A Backstage backend plugin that handles authentication",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.13.0-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.13.
|
|
37
|
-
"@backstage/catalog-client": "^1.0.0",
|
|
38
|
-
"@backstage/catalog-model": "^1.0.0",
|
|
36
|
+
"@backstage/backend-common": "^0.13.2-next.0",
|
|
37
|
+
"@backstage/catalog-client": "^1.0.1-next.0",
|
|
38
|
+
"@backstage/catalog-model": "^1.0.1-next.0",
|
|
39
39
|
"@backstage/config": "^1.0.0",
|
|
40
40
|
"@backstage/errors": "^1.0.0",
|
|
41
|
-
"@backstage/plugin-auth-node": "^0.
|
|
41
|
+
"@backstage/plugin-auth-node": "^0.2.0-next.0",
|
|
42
42
|
"@backstage/types": "^1.0.0",
|
|
43
43
|
"@google-cloud/firestore": "^5.0.2",
|
|
44
44
|
"@types/express": "^4.17.6",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"yn": "^4.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
80
|
-
"@backstage/cli": "^0.16.0",
|
|
79
|
+
"@backstage/backend-test-utils": "^0.1.23-next.0",
|
|
80
|
+
"@backstage/cli": "^0.16.1-next.0",
|
|
81
81
|
"@types/body-parser": "^1.19.0",
|
|
82
82
|
"@types/cookie-parser": "^1.4.2",
|
|
83
83
|
"@types/express-session": "^1.17.2",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"config.d.ts"
|
|
98
98
|
],
|
|
99
99
|
"configSchema": "config.d.ts",
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "6bc4253672337538ce7ea5aadb3e9f60daeb3f80"
|
|
101
101
|
}
|