@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 +6 -0
- package/out/schema/manifest-schema.json +10 -0
- package/out/schema/manifest.d.ts +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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
|
}
|