@backstage/plugin-auth-backend-module-gcp-iap-provider 0.2.18-next.0 → 0.2.18-next.1
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 +9 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-gcp-iap-provider
|
|
2
2
|
|
|
3
|
+
## 0.2.18-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c8f1cae: Add `signIn` to authentication provider configuration schema
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@0.7.1-next.1
|
|
10
|
+
- @backstage/errors@1.2.4
|
|
11
|
+
- @backstage/types@1.1.1
|
|
12
|
+
- @backstage/plugin-auth-node@0.4.18-next.1
|
|
13
|
+
|
|
3
14
|
## 0.2.18-next.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -32,6 +32,15 @@ export interface Config {
|
|
|
32
32
|
* The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.
|
|
33
33
|
*/
|
|
34
34
|
jwtHeader?: string;
|
|
35
|
+
|
|
36
|
+
signIn?: {
|
|
37
|
+
resolvers: Array<
|
|
38
|
+
| { resolver: 'emailMatchingUserEntityAnnotation' }
|
|
39
|
+
| { resolver: 'idMatchingUserEntityAnnotation' }
|
|
40
|
+
| { resolver: 'emailLocalPartMatchingUserEntityName' }
|
|
41
|
+
| { resolver: 'emailMatchingUserEntityProfileEmail' }
|
|
42
|
+
>;
|
|
43
|
+
};
|
|
35
44
|
};
|
|
36
45
|
};
|
|
37
46
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
|
|
3
|
-
"version": "0.2.18-next.
|
|
3
|
+
"version": "0.2.18-next.1",
|
|
4
4
|
"description": "A GCP IAP auth provider module for the Backstage auth backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "^0.7.1-next.
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.7.1-next.1",
|
|
42
42
|
"@backstage/errors": "^1.2.4",
|
|
43
|
-
"@backstage/plugin-auth-node": "^0.4.18-next.
|
|
43
|
+
"@backstage/plugin-auth-node": "^0.4.18-next.1",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
45
|
"google-auth-library": "^9.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/backend-test-utils": "^0.4.5-next.
|
|
49
|
-
"@backstage/cli": "^0.27.0-next.
|
|
48
|
+
"@backstage/backend-test-utils": "^0.4.5-next.1",
|
|
49
|
+
"@backstage/cli": "^0.27.0-next.1",
|
|
50
50
|
"express": "^4.18.2"
|
|
51
51
|
},
|
|
52
52
|
"configSchema": "config.d.ts"
|