@backstage/plugin-auth-backend 0.19.3 → 0.19.4
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 +11 -0
- package/config.d.ts +12 -0
- package/dist/index.cjs.js +241 -79
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -645,9 +645,9 @@ declare const providers: Readonly<{
|
|
|
645
645
|
} | undefined;
|
|
646
646
|
} | undefined) => _backstage_plugin_auth_node.AuthProviderFactory;
|
|
647
647
|
resolvers: Readonly<{
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
emailMatchingUserEntityAnnotation
|
|
648
|
+
emailLocalPartMatchingUserEntityName: () => SignInResolver<unknown>;
|
|
649
|
+
emailMatchingUserEntityProfileEmail: () => SignInResolver<unknown>;
|
|
650
|
+
emailMatchingUserEntityAnnotation(): SignInResolver<OAuthResult>;
|
|
651
651
|
}>;
|
|
652
652
|
}>;
|
|
653
653
|
oauth2: Readonly<{
|
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.19.
|
|
4
|
+
"version": "0.19.4",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"@backstage/plugin-auth-backend-module-github-provider": "^0.1.3",
|
|
43
43
|
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.3",
|
|
44
44
|
"@backstage/plugin-auth-backend-module-google-provider": "^0.1.3",
|
|
45
|
-
"@backstage/plugin-auth-backend-module-microsoft-provider": "^0.1.0",
|
|
46
45
|
"@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.3",
|
|
47
46
|
"@backstage/plugin-auth-node": "^0.4.0",
|
|
48
47
|
"@backstage/plugin-catalog-node": "^1.4.7",
|