@backstage/plugin-auth-backend 0.17.3-next.0 → 0.17.3-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 +26 -0
- package/dist/index.cjs.js +100 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -7,10 +7,10 @@ import { Config } from '@backstage/config';
|
|
|
7
7
|
import { BackstageSignInResult, BackstageIdentityResponse } from '@backstage/plugin-auth-node';
|
|
8
8
|
import { JsonValue } from '@backstage/types';
|
|
9
9
|
import { Profile } from 'passport';
|
|
10
|
-
import * as _backstage_backend_common from '@backstage/backend-common';
|
|
11
10
|
import { PluginDatabaseManager, PluginEndpointDiscovery, TokenManager } from '@backstage/backend-common';
|
|
12
11
|
import { IncomingHttpHeaders } from 'http';
|
|
13
12
|
import { TokenSet, UserinfoResponse } from 'openid-client';
|
|
13
|
+
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Parameters used to issue new ID Tokens
|
|
@@ -718,7 +718,7 @@ declare const providers: Readonly<{
|
|
|
718
718
|
signIn: {
|
|
719
719
|
resolver: SignInResolver<CloudflareAccessResult>;
|
|
720
720
|
};
|
|
721
|
-
cache?:
|
|
721
|
+
cache?: _backstage_backend_plugin_api.CacheClient | undefined;
|
|
722
722
|
}) => AuthProviderFactory;
|
|
723
723
|
resolvers: Readonly<{
|
|
724
724
|
emailMatchingUserEntityProfileEmail: () => SignInResolver<unknown>;
|
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.17.3-next.
|
|
4
|
+
"version": "0.17.3-next.2",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.
|
|
36
|
-
"@backstage/catalog-client": "^1.3.0-next.
|
|
37
|
-
"@backstage/catalog-model": "^1.1.5-next.
|
|
38
|
-
"@backstage/config": "^1.0.
|
|
35
|
+
"@backstage/backend-common": "^0.18.0-next.1",
|
|
36
|
+
"@backstage/catalog-client": "^1.3.0-next.2",
|
|
37
|
+
"@backstage/catalog-model": "^1.1.5-next.1",
|
|
38
|
+
"@backstage/config": "^1.0.6-next.0",
|
|
39
39
|
"@backstage/errors": "^1.1.4",
|
|
40
|
-
"@backstage/plugin-auth-node": "^0.2.
|
|
40
|
+
"@backstage/plugin-auth-node": "^0.2.9-next.1",
|
|
41
41
|
"@backstage/types": "^1.0.2",
|
|
42
42
|
"@davidzemon/passport-okta-oauth": "^0.0.5",
|
|
43
43
|
"@google-cloud/firestore": "^6.0.0",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"yn": "^4.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-test-utils": "^0.1.32-next.
|
|
80
|
-
"@backstage/cli": "^0.22.1-next.
|
|
79
|
+
"@backstage/backend-test-utils": "^0.1.32-next.2",
|
|
80
|
+
"@backstage/cli": "^0.22.1-next.2",
|
|
81
81
|
"@types/body-parser": "^1.19.0",
|
|
82
82
|
"@types/cookie-parser": "^1.4.2",
|
|
83
83
|
"@types/express-session": "^1.17.2",
|