@forge/manifest 7.5.0-next.6 → 7.5.0-next.6-experimental-ee31b41
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 +17 -0
- package/out/schema/manifest-schema.json +4 -0
- package/out/schema/manifest.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 7.5.0-next.6-experimental-ee31b41
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2278ad7: Removing 'oauth2' from the list of available values for connectAuthentication as it is no longer supported
|
|
8
|
+
- 8073ca4: Adding rovo:agent module type
|
|
9
|
+
- a05ba05: Add new module type for Connect on Forge
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c1292da: refactor package.json to move code generators to dev dependencies
|
|
14
|
+
- 2b5d6f2: Adds validation for rovo:agent actions/skills
|
|
15
|
+
- 8a08e11: Update manifest definitions
|
|
16
|
+
- fad12fb: Update manifest definitions
|
|
17
|
+
- 8c3a153: Update manifest definitions
|
|
18
|
+
- 23cc3d6: Update manifest definitions
|
|
19
|
+
|
|
3
20
|
## 7.5.0-next.6
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -18508,6 +18508,10 @@
|
|
|
18508
18508
|
"type": "string"
|
|
18509
18509
|
},
|
|
18510
18510
|
"description": "An optional list of scopes the function requires."
|
|
18511
|
+
},
|
|
18512
|
+
"requestAllScopes": {
|
|
18513
|
+
"type": "boolean",
|
|
18514
|
+
"description": "An optional flag to indicate that if requireScopes is not satisfied, all scopes should be requested."
|
|
18511
18515
|
}
|
|
18512
18516
|
},
|
|
18513
18517
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -8177,6 +8177,10 @@ export interface ExternalAuthFunctionProvider {
|
|
|
8177
8177
|
* An optional list of scopes the function requires.
|
|
8178
8178
|
*/
|
|
8179
8179
|
requiredScopes?: string[];
|
|
8180
|
+
/**
|
|
8181
|
+
* An optional flag to indicate that if requireScopes is not satisfied, all scopes should be requested.
|
|
8182
|
+
*/
|
|
8183
|
+
requestAllScopes?: boolean;
|
|
8180
8184
|
}
|
|
8181
8185
|
/**
|
|
8182
8186
|
*
|