@forge/manifest 7.5.0-next.5 → 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 +24 -0
- package/out/schema/manifest-schema.json +11 -0
- package/out/schema/manifest.d.ts +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
20
|
+
## 7.5.0-next.6
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- c1292da: refactor package.json to move code generators to dev dependencies
|
|
25
|
+
- 8a08e11: Update manifest definitions
|
|
26
|
+
|
|
3
27
|
## 7.5.0-next.5
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -813,6 +813,12 @@
|
|
|
813
813
|
"items": {
|
|
814
814
|
"type": "object",
|
|
815
815
|
"properties": {
|
|
816
|
+
"description": {
|
|
817
|
+
"description": "The description that the Rovo agent will use to decide when to invoke this action.",
|
|
818
|
+
"minLength": 1,
|
|
819
|
+
"maxLength": 255,
|
|
820
|
+
"type": "string"
|
|
821
|
+
},
|
|
816
822
|
"actionType": {
|
|
817
823
|
"description": "The action-type defines the action inputs and how actions can be categorised and discovered. \neg an action-type atlassian:issue:create:comment defines the inputs issueId and comment. \nDifferent implementations of actions with action-type of atlassian:issue:create:comment can be\nswapped depending on what integrations a tenant might have.",
|
|
818
824
|
"type": "string",
|
|
@@ -839,6 +845,7 @@
|
|
|
839
845
|
"actionType",
|
|
840
846
|
"isConsequential",
|
|
841
847
|
"function",
|
|
848
|
+
"description",
|
|
842
849
|
"key"
|
|
843
850
|
],
|
|
844
851
|
"not": {
|
|
@@ -18501,6 +18508,10 @@
|
|
|
18501
18508
|
"type": "string"
|
|
18502
18509
|
},
|
|
18503
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."
|
|
18504
18515
|
}
|
|
18505
18516
|
},
|
|
18506
18517
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -962,6 +962,10 @@ export interface Modules {
|
|
|
962
962
|
];
|
|
963
963
|
action?: [
|
|
964
964
|
{
|
|
965
|
+
/**
|
|
966
|
+
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
967
|
+
*/
|
|
968
|
+
description: string;
|
|
965
969
|
/**
|
|
966
970
|
* The action-type defines the action inputs and how actions can be categorised and discovered.
|
|
967
971
|
* eg an action-type atlassian:issue:create:comment defines the inputs issueId and comment.
|
|
@@ -982,6 +986,10 @@ export interface Modules {
|
|
|
982
986
|
[k: string]: unknown;
|
|
983
987
|
},
|
|
984
988
|
...{
|
|
989
|
+
/**
|
|
990
|
+
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
991
|
+
*/
|
|
992
|
+
description: string;
|
|
985
993
|
/**
|
|
986
994
|
* The action-type defines the action inputs and how actions can be categorised and discovered.
|
|
987
995
|
* eg an action-type atlassian:issue:create:comment defines the inputs issueId and comment.
|
|
@@ -8169,6 +8177,10 @@ export interface ExternalAuthFunctionProvider {
|
|
|
8169
8177
|
* An optional list of scopes the function requires.
|
|
8170
8178
|
*/
|
|
8171
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;
|
|
8172
8184
|
}
|
|
8173
8185
|
/**
|
|
8174
8186
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "7.5.0-next.
|
|
3
|
+
"version": "7.5.0-next.6-experimental-ee31b41",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/jest": "^29.5.12",
|
|
19
19
|
"@types/node": "14.18.63",
|
|
20
|
-
"@types/node-fetch": "^2.6.11"
|
|
20
|
+
"@types/node-fetch": "^2.6.11",
|
|
21
|
+
"json-schema-to-typescript": "^10.1.5",
|
|
22
|
+
"typescript-json-schema": "^0.62.0"
|
|
21
23
|
},
|
|
22
24
|
"author": "Atlassian",
|
|
23
25
|
"license": "UNLICENSED",
|
|
@@ -28,10 +30,8 @@
|
|
|
28
30
|
"ajv-formats": "2.1.1",
|
|
29
31
|
"cheerio": "^0.22.0",
|
|
30
32
|
"glob": "^10.3.10",
|
|
31
|
-
"json-schema-to-typescript": "^10.1.5",
|
|
32
33
|
"lodash": "^4.17.21",
|
|
33
34
|
"node-fetch": "2.7.0",
|
|
34
|
-
"typescript-json-schema": "^0.62.0",
|
|
35
35
|
"yaml": "^2.3.4"
|
|
36
36
|
}
|
|
37
37
|
}
|