@backstage/plugin-auth-backend 0.18.9-next.2 → 0.19.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 +81 -0
- package/dist/index.cjs.js +83 -222
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +18 -17
package/dist/index.d.ts
CHANGED
|
@@ -844,4 +844,4 @@ declare class CatalogIdentityClient {
|
|
|
844
844
|
*/
|
|
845
845
|
declare function getDefaultOwnershipEntityRefs(entity: Entity): string[];
|
|
846
846
|
|
|
847
|
-
export { AuthHandler, AuthHandlerResult, AuthProviderConfig, AuthProviderFactory, AuthProviderRouteHandlers, AuthResolverCatalogUserQuery, AuthResolverContext, AuthResponse, AwsAlbResult, BitbucketOAuthResult, BitbucketPassportProfile, BitbucketServerOAuthResult, CatalogIdentityClient, CloudflareAccessClaims, CloudflareAccessGroup, CloudflareAccessIdentityProfile, CloudflareAccessResult, CookieConfigurer, EasyAuthResult, GcpIapResult, GcpIapTokenInfo, GithubOAuthResult, OAuth2ProxyResult, OAuthAdapter, OAuthAdapterOptions, OAuthEnvironmentHandler, OAuthHandlers, OAuthLogoutRequest, OAuthProviderInfo, OAuthProviderOptions, OAuthRefreshRequest, OAuthResponse, OAuthResult, OAuthStartRequest, OAuthStartResponse, OAuthState, OidcAuthResult, ProfileInfo, ProviderFactories, RouterOptions, SamlAuthResult, SignInInfo, SignInResolver, StateEncoder, TokenParams, WebMessageResponse,
|
|
847
|
+
export { AuthHandler, AuthHandlerResult, AuthProviderConfig, AuthProviderFactory, AuthProviderRouteHandlers, AuthResolverCatalogUserQuery, AuthResolverContext, AuthResponse, AwsAlbResult, BitbucketOAuthResult, BitbucketPassportProfile, BitbucketServerOAuthResult, CatalogIdentityClient, CloudflareAccessClaims, CloudflareAccessGroup, CloudflareAccessIdentityProfile, CloudflareAccessResult, CookieConfigurer, EasyAuthResult, GcpIapResult, GcpIapTokenInfo, GithubOAuthResult, OAuth2ProxyResult, OAuthAdapter, OAuthAdapterOptions, OAuthEnvironmentHandler, OAuthHandlers, OAuthLogoutRequest, OAuthProviderInfo, OAuthProviderOptions, OAuthRefreshRequest, OAuthResponse, OAuthResult, OAuthStartRequest, OAuthStartResponse, OAuthState, OidcAuthResult, ProfileInfo, ProviderFactories, RouterOptions, SamlAuthResult, SignInInfo, SignInResolver, StateEncoder, TokenParams, WebMessageResponse, createAuthProviderIntegration, createOriginFilter, createRouter, authPlugin as default, defaultAuthProviderFactories, encodeState, ensuresXRequestedWith, getDefaultOwnershipEntityRefs, postMessageResponse, prepareBackstageIdentityResponse, providers, readState, verifyNonce };
|
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.19.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,19 +32,20 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.19.5
|
|
36
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
37
|
-
"@backstage/catalog-client": "^1.4.4
|
|
38
|
-
"@backstage/catalog-model": "^1.4.2
|
|
39
|
-
"@backstage/config": "^1.1.0
|
|
40
|
-
"@backstage/errors": "^1.2.
|
|
41
|
-
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.1.0
|
|
42
|
-
"@backstage/plugin-auth-backend-module-github-provider": "^0.1.0
|
|
43
|
-
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.0
|
|
44
|
-
"@backstage/plugin-auth-backend-module-google-provider": "^0.1.0
|
|
45
|
-
"@backstage/plugin-auth-
|
|
46
|
-
"@backstage/plugin-
|
|
47
|
-
"@backstage/
|
|
35
|
+
"@backstage/backend-common": "^0.19.5",
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
37
|
+
"@backstage/catalog-client": "^1.4.4",
|
|
38
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
39
|
+
"@backstage/config": "^1.1.0",
|
|
40
|
+
"@backstage/errors": "^1.2.2",
|
|
41
|
+
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.1.0",
|
|
42
|
+
"@backstage/plugin-auth-backend-module-github-provider": "^0.1.0",
|
|
43
|
+
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.0",
|
|
44
|
+
"@backstage/plugin-auth-backend-module-google-provider": "^0.1.0",
|
|
45
|
+
"@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.0",
|
|
46
|
+
"@backstage/plugin-auth-node": "^0.3.0",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.4.4",
|
|
48
|
+
"@backstage/types": "^1.1.1",
|
|
48
49
|
"@davidzemon/passport-okta-oauth": "^0.0.5",
|
|
49
50
|
"@google-cloud/firestore": "^6.0.0",
|
|
50
51
|
"@types/express": "^4.17.6",
|
|
@@ -83,9 +84,9 @@
|
|
|
83
84
|
"yn": "^4.0.0"
|
|
84
85
|
},
|
|
85
86
|
"devDependencies": {
|
|
86
|
-
"@backstage/backend-defaults": "^0.2.3
|
|
87
|
-
"@backstage/backend-test-utils": "^0.2.3
|
|
88
|
-
"@backstage/cli": "^0.22.13
|
|
87
|
+
"@backstage/backend-defaults": "^0.2.3",
|
|
88
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
89
|
+
"@backstage/cli": "^0.22.13",
|
|
89
90
|
"@types/body-parser": "^1.19.0",
|
|
90
91
|
"@types/cookie-parser": "^1.4.2",
|
|
91
92
|
"@types/express-session": "^1.17.2",
|