@backstage/plugin-auth-backend-module-gcp-iap-provider 0.2.18-next.0 → 0.2.18-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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-auth-backend-module-gcp-iap-provider
2
2
 
3
+ ## 0.2.18-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.8.0-next.2
9
+ - @backstage/plugin-auth-node@0.5.0-next.2
10
+ - @backstage/errors@1.2.4
11
+ - @backstage/types@1.1.1
12
+
13
+ ## 0.2.18-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - c8f1cae: Add `signIn` to authentication provider configuration schema
18
+ - Updated dependencies
19
+ - @backstage/backend-plugin-api@0.7.1-next.1
20
+ - @backstage/errors@1.2.4
21
+ - @backstage/types@1.1.1
22
+ - @backstage/plugin-auth-node@0.4.18-next.1
23
+
3
24
  ## 0.2.18-next.0
4
25
 
5
26
  ### 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.0",
3
+ "version": "0.2.18-next.2",
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.0",
41
+ "@backstage/backend-plugin-api": "^0.8.0-next.2",
42
42
  "@backstage/errors": "^1.2.4",
43
- "@backstage/plugin-auth-node": "^0.4.18-next.0",
43
+ "@backstage/plugin-auth-node": "^0.5.0-next.2",
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.0",
49
- "@backstage/cli": "^0.27.0-next.0",
48
+ "@backstage/backend-test-utils": "^0.4.5-next.2",
49
+ "@backstage/cli": "^0.27.0-next.3",
50
50
  "express": "^4.18.2"
51
51
  },
52
52
  "configSchema": "config.d.ts"