@forge/manifest 12.7.0 → 12.7.1-next.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.7.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - e6a3ab2: Adding new PKCE property to auth providers
8
+
3
9
  ## 12.7.0
4
10
 
5
11
  ### Minor Changes
@@ -32261,6 +32261,11 @@
32261
32261
  "type": "string",
32262
32262
  "maxLength": 1000
32263
32263
  },
32264
+ "pkce": {
32265
+ "type": "boolean",
32266
+ "const": true,
32267
+ "description": "Optional flag to enable PKCE as an authentication flow; when provided it must be true"
32268
+ },
32264
32269
  "scopes": {
32265
32270
  "type": "array",
32266
32271
  "minItems": 0,
@@ -32309,6 +32314,11 @@
32309
32314
  "type": "string",
32310
32315
  "maxLength": 1000
32311
32316
  },
32317
+ "pkce": {
32318
+ "type": "boolean",
32319
+ "const": true,
32320
+ "description": "Optional flag to enable PKCE as an authentication flow; when provided it must be true"
32321
+ },
32312
32322
  "scopes": {
32313
32323
  "type": "array",
32314
32324
  "minItems": 0,
@@ -74679,6 +74679,10 @@ export interface AuthProviderCustom {
74679
74679
  type: 'oauth2';
74680
74680
  bearerMethod: BearerMethodSchema;
74681
74681
  clientId: string;
74682
+ /**
74683
+ * Optional flag to enable PKCE as an authentication flow; when provided it must be true
74684
+ */
74685
+ pkce?: true;
74682
74686
  scopes?: OAuth2ScopeName[];
74683
74687
  remotes?: ModuleKeySchema[];
74684
74688
  actions: {
@@ -74901,6 +74905,10 @@ export interface AuthProviderPredefined {
74901
74905
  integration: 'adobe' | 'azuredevops' | 'dropbox' | 'google' | 'miro';
74902
74906
  bearerMethod: BearerMethodSchema;
74903
74907
  clientId: string;
74908
+ /**
74909
+ * Optional flag to enable PKCE as an authentication flow; when provided it must be true
74910
+ */
74911
+ pkce?: true;
74904
74912
  scopes?: OAuth2ScopeName[];
74905
74913
  remotes: ModuleKeySchema[];
74906
74914
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.7.0",
3
+ "version": "12.7.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {