@forge/manifest 7.5.0-next.5 → 7.5.0-next.6
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
|
@@ -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": {
|
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.
|
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",
|
|
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
|
}
|