@backstage/plugin-auth-backend 0.0.0-nightly-20220425024022 → 0.0.0-nightly-20220428025925
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 +36 -4
- package/dist/index.cjs.js +14 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1349,6 +1349,7 @@ declare const providers: Readonly<{
|
|
|
1349
1349
|
} | undefined) => AuthProviderFactory;
|
|
1350
1350
|
resolvers: Readonly<{
|
|
1351
1351
|
emailLocalPartMatchingUserEntityName: () => SignInResolver<unknown>;
|
|
1352
|
+
emailMatchingUserEntityProfileEmail: () => SignInResolver<unknown>;
|
|
1352
1353
|
emailMatchingUserEntityAnnotation(): SignInResolver<OAuthResult>;
|
|
1353
1354
|
}>;
|
|
1354
1355
|
}>;
|
|
@@ -1361,6 +1362,7 @@ declare const providers: Readonly<{
|
|
|
1361
1362
|
} | undefined) => AuthProviderFactory;
|
|
1362
1363
|
resolvers: Readonly<{
|
|
1363
1364
|
emailLocalPartMatchingUserEntityName: () => SignInResolver<unknown>;
|
|
1365
|
+
emailMatchingUserEntityProfileEmail: () => SignInResolver<unknown>;
|
|
1364
1366
|
emailMatchingUserEntityAnnotation(): SignInResolver<OAuthResult>;
|
|
1365
1367
|
}>;
|
|
1366
1368
|
}>;
|
|
@@ -1400,6 +1402,7 @@ declare const providers: Readonly<{
|
|
|
1400
1402
|
} | undefined) => AuthProviderFactory;
|
|
1401
1403
|
resolvers: Readonly<{
|
|
1402
1404
|
emailLocalPartMatchingUserEntityName: () => SignInResolver<unknown>;
|
|
1405
|
+
emailMatchingUserEntityProfileEmail: () => SignInResolver<unknown>;
|
|
1403
1406
|
emailMatchingUserEntityAnnotation(): SignInResolver<OAuthResult>;
|
|
1404
1407
|
}>;
|
|
1405
1408
|
}>;
|
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.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20220428025925",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
37
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
36
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20220428025925",
|
|
37
|
+
"@backstage/backend-common": "^0.0.0-nightly-20220428025925",
|
|
38
38
|
"@backstage/catalog-client": "^1.0.1",
|
|
39
39
|
"@backstage/catalog-model": "^1.0.1",
|
|
40
40
|
"@backstage/config": "^1.0.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"express": "^4.17.1",
|
|
50
50
|
"express-promise-router": "^4.1.0",
|
|
51
51
|
"express-session": "^1.17.1",
|
|
52
|
-
"fs-extra": "10.0
|
|
52
|
+
"fs-extra": "10.1.0",
|
|
53
53
|
"google-auth-library": "^7.6.1",
|
|
54
54
|
"jose": "^4.6.0",
|
|
55
55
|
"jwt-decode": "^3.1.0",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"yn": "^4.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-test-utils": "^0.
|
|
80
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
79
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20220428025925",
|
|
80
|
+
"@backstage/cli": "^0.0.0-nightly-20220428025925",
|
|
81
81
|
"@types/body-parser": "^1.19.0",
|
|
82
82
|
"@types/cookie-parser": "^1.4.2",
|
|
83
83
|
"@types/express-session": "^1.17.2",
|