@forge/manifest 12.7.0-next.1 → 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 +18 -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
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
9
|
+
## 12.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 56e38e9: Added support for new v2 url format and validation
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- a99c9f1: Add customerServiceManagement:queuePage and customerServiceManagement:requestDetail to AllModuleTypes enum, add corresponding CLI templates (UI Kit + Custom UI) for both module types, and register Customer Service Management as a product context in forge create (shown as "Customer Service Management (EAP)").
|
|
18
|
+
- 22613fc: Update manifest definitions
|
|
19
|
+
- aed9912: Update manifest definitions
|
|
20
|
+
|
|
3
21
|
## 12.7.0-next.1
|
|
4
22
|
|
|
5
23
|
### Patch 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,
|
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
|
}
|