@forge/manifest 7.9.0-next.6 → 7.9.0-next.7
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 +188 -0
- package/out/schema/manifest.d.ts +98 -10
- package/out/scopes/shipyard-scopes.json +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -898,7 +898,20 @@
|
|
|
898
898
|
"description": "The url for the icon image to be displayed in the UI",
|
|
899
899
|
"type": "string"
|
|
900
900
|
},
|
|
901
|
+
"summary": {
|
|
902
|
+
"additionalProperties": false,
|
|
903
|
+
"type": "object",
|
|
904
|
+
"properties": {
|
|
905
|
+
"function": {
|
|
906
|
+
"$ref": "#/definitions/ExtensionKey",
|
|
907
|
+
"description": "Name of the key of the function that will handle this action.",
|
|
908
|
+
"title": "function",
|
|
909
|
+
"type": "string"
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
},
|
|
901
913
|
"config": {
|
|
914
|
+
"additionalProperties": false,
|
|
902
915
|
"type": "object",
|
|
903
916
|
"properties": {
|
|
904
917
|
"resource": {
|
|
@@ -917,6 +930,40 @@
|
|
|
917
930
|
}
|
|
918
931
|
}
|
|
919
932
|
},
|
|
933
|
+
"resolver": {
|
|
934
|
+
"anyOf": [
|
|
935
|
+
{
|
|
936
|
+
"additionalProperties": false,
|
|
937
|
+
"type": "object",
|
|
938
|
+
"properties": {
|
|
939
|
+
"function": {
|
|
940
|
+
"type": "string",
|
|
941
|
+
"minLength": 1,
|
|
942
|
+
"maxLength": 255,
|
|
943
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"required": [
|
|
947
|
+
"function"
|
|
948
|
+
]
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"additionalProperties": false,
|
|
952
|
+
"type": "object",
|
|
953
|
+
"properties": {
|
|
954
|
+
"endpoint": {
|
|
955
|
+
"type": "string",
|
|
956
|
+
"minLength": 1,
|
|
957
|
+
"maxLength": 255,
|
|
958
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"required": [
|
|
962
|
+
"endpoint"
|
|
963
|
+
]
|
|
964
|
+
}
|
|
965
|
+
]
|
|
966
|
+
},
|
|
920
967
|
"key": {
|
|
921
968
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
922
969
|
}
|
|
@@ -956,7 +1003,20 @@
|
|
|
956
1003
|
"description": "The url for the icon image to be displayed in the UI",
|
|
957
1004
|
"type": "string"
|
|
958
1005
|
},
|
|
1006
|
+
"summary": {
|
|
1007
|
+
"additionalProperties": false,
|
|
1008
|
+
"type": "object",
|
|
1009
|
+
"properties": {
|
|
1010
|
+
"function": {
|
|
1011
|
+
"$ref": "#/definitions/ExtensionKey",
|
|
1012
|
+
"description": "Name of the key of the function that will handle this action.",
|
|
1013
|
+
"title": "function",
|
|
1014
|
+
"type": "string"
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
959
1018
|
"config": {
|
|
1019
|
+
"additionalProperties": false,
|
|
960
1020
|
"type": "object",
|
|
961
1021
|
"properties": {
|
|
962
1022
|
"resource": {
|
|
@@ -975,6 +1035,40 @@
|
|
|
975
1035
|
}
|
|
976
1036
|
}
|
|
977
1037
|
},
|
|
1038
|
+
"resolver": {
|
|
1039
|
+
"anyOf": [
|
|
1040
|
+
{
|
|
1041
|
+
"additionalProperties": false,
|
|
1042
|
+
"type": "object",
|
|
1043
|
+
"properties": {
|
|
1044
|
+
"function": {
|
|
1045
|
+
"type": "string",
|
|
1046
|
+
"minLength": 1,
|
|
1047
|
+
"maxLength": 255,
|
|
1048
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"required": [
|
|
1052
|
+
"function"
|
|
1053
|
+
]
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"additionalProperties": false,
|
|
1057
|
+
"type": "object",
|
|
1058
|
+
"properties": {
|
|
1059
|
+
"endpoint": {
|
|
1060
|
+
"type": "string",
|
|
1061
|
+
"minLength": 1,
|
|
1062
|
+
"maxLength": 255,
|
|
1063
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
"required": [
|
|
1067
|
+
"endpoint"
|
|
1068
|
+
]
|
|
1069
|
+
}
|
|
1070
|
+
]
|
|
1071
|
+
},
|
|
978
1072
|
"actionVerb": {
|
|
979
1073
|
"description": "The operation that will be performed as a result of calling this action",
|
|
980
1074
|
"type": "string",
|
|
@@ -1034,6 +1128,7 @@
|
|
|
1034
1128
|
"type": "string"
|
|
1035
1129
|
},
|
|
1036
1130
|
"config": {
|
|
1131
|
+
"additionalProperties": false,
|
|
1037
1132
|
"type": "object",
|
|
1038
1133
|
"properties": {
|
|
1039
1134
|
"resource": {
|
|
@@ -1052,6 +1147,52 @@
|
|
|
1052
1147
|
}
|
|
1053
1148
|
}
|
|
1054
1149
|
},
|
|
1150
|
+
"summary": {
|
|
1151
|
+
"additionalProperties": false,
|
|
1152
|
+
"type": "object",
|
|
1153
|
+
"properties": {
|
|
1154
|
+
"function": {
|
|
1155
|
+
"$ref": "#/definitions/ExtensionKey",
|
|
1156
|
+
"description": "Name of the key of the function that will handle this action.",
|
|
1157
|
+
"title": "function",
|
|
1158
|
+
"type": "string"
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"resolver": {
|
|
1163
|
+
"anyOf": [
|
|
1164
|
+
{
|
|
1165
|
+
"additionalProperties": false,
|
|
1166
|
+
"type": "object",
|
|
1167
|
+
"properties": {
|
|
1168
|
+
"function": {
|
|
1169
|
+
"type": "string",
|
|
1170
|
+
"minLength": 1,
|
|
1171
|
+
"maxLength": 255,
|
|
1172
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"required": [
|
|
1176
|
+
"function"
|
|
1177
|
+
]
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"additionalProperties": false,
|
|
1181
|
+
"type": "object",
|
|
1182
|
+
"properties": {
|
|
1183
|
+
"endpoint": {
|
|
1184
|
+
"type": "string",
|
|
1185
|
+
"minLength": 1,
|
|
1186
|
+
"maxLength": 255,
|
|
1187
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
"required": [
|
|
1191
|
+
"endpoint"
|
|
1192
|
+
]
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1055
1196
|
"endpoint": {
|
|
1056
1197
|
"$ref": "#/definitions/ExtensionKey",
|
|
1057
1198
|
"title": "endpoint",
|
|
@@ -1101,7 +1242,20 @@
|
|
|
1101
1242
|
{
|
|
1102
1243
|
"type": "object",
|
|
1103
1244
|
"properties": {
|
|
1245
|
+
"summary": {
|
|
1246
|
+
"additionalProperties": false,
|
|
1247
|
+
"type": "object",
|
|
1248
|
+
"properties": {
|
|
1249
|
+
"function": {
|
|
1250
|
+
"$ref": "#/definitions/ExtensionKey",
|
|
1251
|
+
"description": "Name of the key of the function that will handle this action.",
|
|
1252
|
+
"title": "function",
|
|
1253
|
+
"type": "string"
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
},
|
|
1104
1257
|
"config": {
|
|
1258
|
+
"additionalProperties": false,
|
|
1105
1259
|
"type": "object",
|
|
1106
1260
|
"properties": {
|
|
1107
1261
|
"resource": {
|
|
@@ -1120,6 +1274,40 @@
|
|
|
1120
1274
|
}
|
|
1121
1275
|
}
|
|
1122
1276
|
},
|
|
1277
|
+
"resolver": {
|
|
1278
|
+
"anyOf": [
|
|
1279
|
+
{
|
|
1280
|
+
"additionalProperties": false,
|
|
1281
|
+
"type": "object",
|
|
1282
|
+
"properties": {
|
|
1283
|
+
"function": {
|
|
1284
|
+
"type": "string",
|
|
1285
|
+
"minLength": 1,
|
|
1286
|
+
"maxLength": 255,
|
|
1287
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"required": [
|
|
1291
|
+
"function"
|
|
1292
|
+
]
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"additionalProperties": false,
|
|
1296
|
+
"type": "object",
|
|
1297
|
+
"properties": {
|
|
1298
|
+
"endpoint": {
|
|
1299
|
+
"type": "string",
|
|
1300
|
+
"minLength": 1,
|
|
1301
|
+
"maxLength": 255,
|
|
1302
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"required": [
|
|
1306
|
+
"endpoint"
|
|
1307
|
+
]
|
|
1308
|
+
}
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1123
1311
|
"description": {
|
|
1124
1312
|
"description": "The description that the Rovo agent will use to decide when to invoke this action.",
|
|
1125
1313
|
"minLength": 1,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -135,7 +135,19 @@ export type Function3 = string;
|
|
|
135
135
|
* Name of the key of the function that will handle this action.
|
|
136
136
|
*/
|
|
137
137
|
export type Function4 = string;
|
|
138
|
+
/**
|
|
139
|
+
* Name of the key of the function that will handle this action.
|
|
140
|
+
*/
|
|
141
|
+
export type Function5 = string;
|
|
142
|
+
/**
|
|
143
|
+
* Name of the key of the function that will handle this action.
|
|
144
|
+
*/
|
|
145
|
+
export type Function6 = string;
|
|
138
146
|
export type CoreActionIOType = 'boolean' | 'integer' | 'number' | 'string';
|
|
147
|
+
/**
|
|
148
|
+
* Name of the key of the function that will handle this action.
|
|
149
|
+
*/
|
|
150
|
+
export type Function7 = string;
|
|
139
151
|
/**
|
|
140
152
|
* The key for an extension in CaaS. That means that this is a reference to another
|
|
141
153
|
* extension in your descriptor / manifest.
|
|
@@ -143,6 +155,10 @@ export type CoreActionIOType = 'boolean' | 'integer' | 'number' | 'string';
|
|
|
143
155
|
* This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
|
|
144
156
|
*/
|
|
145
157
|
export type Endpoint2 = string;
|
|
158
|
+
/**
|
|
159
|
+
* Name of the key of the function that will handle this action.
|
|
160
|
+
*/
|
|
161
|
+
export type Function8 = string;
|
|
146
162
|
/**
|
|
147
163
|
* The key for an extension in CaaS. That means that this is a reference to another
|
|
148
164
|
* extension in your descriptor / manifest.
|
|
@@ -1033,11 +1049,20 @@ export interface Modules {
|
|
|
1033
1049
|
* The url for the icon image to be displayed in the UI
|
|
1034
1050
|
*/
|
|
1035
1051
|
icon?: string;
|
|
1052
|
+
summary?: {
|
|
1053
|
+
function?: Function4;
|
|
1054
|
+
};
|
|
1036
1055
|
config?: {
|
|
1037
1056
|
resource?: string;
|
|
1038
1057
|
render?: 'default' | 'native';
|
|
1039
|
-
[k: string]: unknown;
|
|
1040
1058
|
};
|
|
1059
|
+
resolver?:
|
|
1060
|
+
| {
|
|
1061
|
+
function: string;
|
|
1062
|
+
}
|
|
1063
|
+
| {
|
|
1064
|
+
endpoint: string;
|
|
1065
|
+
};
|
|
1041
1066
|
key: ModuleKeySchema;
|
|
1042
1067
|
[k: string]: unknown;
|
|
1043
1068
|
}
|
|
@@ -1046,7 +1071,7 @@ export interface Modules {
|
|
|
1046
1071
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1047
1072
|
*/
|
|
1048
1073
|
description: string;
|
|
1049
|
-
function:
|
|
1074
|
+
function: Function5;
|
|
1050
1075
|
/**
|
|
1051
1076
|
* The name of the action
|
|
1052
1077
|
*/
|
|
@@ -1055,11 +1080,20 @@ export interface Modules {
|
|
|
1055
1080
|
* The url for the icon image to be displayed in the UI
|
|
1056
1081
|
*/
|
|
1057
1082
|
icon?: string;
|
|
1083
|
+
summary?: {
|
|
1084
|
+
function?: Function6;
|
|
1085
|
+
};
|
|
1058
1086
|
config?: {
|
|
1059
1087
|
resource?: string;
|
|
1060
1088
|
render?: 'default' | 'native';
|
|
1061
|
-
[k: string]: unknown;
|
|
1062
1089
|
};
|
|
1090
|
+
resolver?:
|
|
1091
|
+
| {
|
|
1092
|
+
function: string;
|
|
1093
|
+
}
|
|
1094
|
+
| {
|
|
1095
|
+
endpoint: string;
|
|
1096
|
+
};
|
|
1063
1097
|
/**
|
|
1064
1098
|
* The operation that will be performed as a result of calling this action
|
|
1065
1099
|
*/
|
|
@@ -1089,8 +1123,17 @@ export interface Modules {
|
|
|
1089
1123
|
config?: {
|
|
1090
1124
|
resource?: string;
|
|
1091
1125
|
render?: 'default' | 'native';
|
|
1092
|
-
[k: string]: unknown;
|
|
1093
1126
|
};
|
|
1127
|
+
summary?: {
|
|
1128
|
+
function?: Function7;
|
|
1129
|
+
};
|
|
1130
|
+
resolver?:
|
|
1131
|
+
| {
|
|
1132
|
+
function: string;
|
|
1133
|
+
}
|
|
1134
|
+
| {
|
|
1135
|
+
endpoint: string;
|
|
1136
|
+
};
|
|
1094
1137
|
endpoint: Endpoint2;
|
|
1095
1138
|
/**
|
|
1096
1139
|
* The operation that will be performed as a result of calling this action
|
|
@@ -1106,11 +1149,20 @@ export interface Modules {
|
|
|
1106
1149
|
[k: string]: unknown;
|
|
1107
1150
|
}
|
|
1108
1151
|
| {
|
|
1152
|
+
summary?: {
|
|
1153
|
+
function?: Function8;
|
|
1154
|
+
};
|
|
1109
1155
|
config?: {
|
|
1110
1156
|
resource?: string;
|
|
1111
1157
|
render?: 'default' | 'native';
|
|
1112
|
-
[k: string]: unknown;
|
|
1113
1158
|
};
|
|
1159
|
+
resolver?:
|
|
1160
|
+
| {
|
|
1161
|
+
function: string;
|
|
1162
|
+
}
|
|
1163
|
+
| {
|
|
1164
|
+
endpoint: string;
|
|
1165
|
+
};
|
|
1114
1166
|
/**
|
|
1115
1167
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1116
1168
|
*/
|
|
@@ -1157,11 +1209,20 @@ export interface Modules {
|
|
|
1157
1209
|
* The url for the icon image to be displayed in the UI
|
|
1158
1210
|
*/
|
|
1159
1211
|
icon?: string;
|
|
1212
|
+
summary?: {
|
|
1213
|
+
function?: Function4;
|
|
1214
|
+
};
|
|
1160
1215
|
config?: {
|
|
1161
1216
|
resource?: string;
|
|
1162
1217
|
render?: 'default' | 'native';
|
|
1163
|
-
[k: string]: unknown;
|
|
1164
1218
|
};
|
|
1219
|
+
resolver?:
|
|
1220
|
+
| {
|
|
1221
|
+
function: string;
|
|
1222
|
+
}
|
|
1223
|
+
| {
|
|
1224
|
+
endpoint: string;
|
|
1225
|
+
};
|
|
1165
1226
|
key: ModuleKeySchema;
|
|
1166
1227
|
[k: string]: unknown;
|
|
1167
1228
|
}
|
|
@@ -1170,7 +1231,7 @@ export interface Modules {
|
|
|
1170
1231
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1171
1232
|
*/
|
|
1172
1233
|
description: string;
|
|
1173
|
-
function:
|
|
1234
|
+
function: Function5;
|
|
1174
1235
|
/**
|
|
1175
1236
|
* The name of the action
|
|
1176
1237
|
*/
|
|
@@ -1179,11 +1240,20 @@ export interface Modules {
|
|
|
1179
1240
|
* The url for the icon image to be displayed in the UI
|
|
1180
1241
|
*/
|
|
1181
1242
|
icon?: string;
|
|
1243
|
+
summary?: {
|
|
1244
|
+
function?: Function6;
|
|
1245
|
+
};
|
|
1182
1246
|
config?: {
|
|
1183
1247
|
resource?: string;
|
|
1184
1248
|
render?: 'default' | 'native';
|
|
1185
|
-
[k: string]: unknown;
|
|
1186
1249
|
};
|
|
1250
|
+
resolver?:
|
|
1251
|
+
| {
|
|
1252
|
+
function: string;
|
|
1253
|
+
}
|
|
1254
|
+
| {
|
|
1255
|
+
endpoint: string;
|
|
1256
|
+
};
|
|
1187
1257
|
/**
|
|
1188
1258
|
* The operation that will be performed as a result of calling this action
|
|
1189
1259
|
*/
|
|
@@ -1213,8 +1283,17 @@ export interface Modules {
|
|
|
1213
1283
|
config?: {
|
|
1214
1284
|
resource?: string;
|
|
1215
1285
|
render?: 'default' | 'native';
|
|
1216
|
-
[k: string]: unknown;
|
|
1217
1286
|
};
|
|
1287
|
+
summary?: {
|
|
1288
|
+
function?: Function7;
|
|
1289
|
+
};
|
|
1290
|
+
resolver?:
|
|
1291
|
+
| {
|
|
1292
|
+
function: string;
|
|
1293
|
+
}
|
|
1294
|
+
| {
|
|
1295
|
+
endpoint: string;
|
|
1296
|
+
};
|
|
1218
1297
|
endpoint: Endpoint2;
|
|
1219
1298
|
/**
|
|
1220
1299
|
* The operation that will be performed as a result of calling this action
|
|
@@ -1230,11 +1309,20 @@ export interface Modules {
|
|
|
1230
1309
|
[k: string]: unknown;
|
|
1231
1310
|
}
|
|
1232
1311
|
| {
|
|
1312
|
+
summary?: {
|
|
1313
|
+
function?: Function8;
|
|
1314
|
+
};
|
|
1233
1315
|
config?: {
|
|
1234
1316
|
resource?: string;
|
|
1235
1317
|
render?: 'default' | 'native';
|
|
1236
|
-
[k: string]: unknown;
|
|
1237
1318
|
};
|
|
1319
|
+
resolver?:
|
|
1320
|
+
| {
|
|
1321
|
+
function: string;
|
|
1322
|
+
}
|
|
1323
|
+
| {
|
|
1324
|
+
endpoint: string;
|
|
1325
|
+
};
|
|
1238
1326
|
/**
|
|
1239
1327
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1240
1328
|
*/
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"delete:dashboard.property:jira",
|
|
35
35
|
"delete:database:confluence",
|
|
36
36
|
"delete:deployment-info:jira",
|
|
37
|
+
"delete:design:jira",
|
|
37
38
|
"delete:dev-info:jira",
|
|
38
39
|
"delete:document-info:jira",
|
|
39
40
|
"delete:embed:confluence",
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
"delete:issue:jira",
|
|
61
62
|
"delete:issue.property:jira",
|
|
62
63
|
"delete:issue.remote-link:jira",
|
|
64
|
+
"delete:operations-info:jira",
|
|
63
65
|
"delete:ops-alert:jira-service-management",
|
|
64
66
|
"delete:ops-config:jira-service-management",
|
|
65
67
|
"delete:organization:jira-service-management",
|
|
@@ -238,6 +240,7 @@
|
|
|
238
240
|
"read:me",
|
|
239
241
|
"read:metric:compass",
|
|
240
242
|
"read:notification-scheme:jira",
|
|
243
|
+
"read:operations-info:jira",
|
|
241
244
|
"read:ops-alert:jira-service-management",
|
|
242
245
|
"read:ops-config:jira-service-management",
|
|
243
246
|
"read:organization:entitlement:jira-service-management",
|
|
@@ -423,6 +426,7 @@
|
|
|
423
426
|
"write:label:confluence",
|
|
424
427
|
"write:membership:teams",
|
|
425
428
|
"write:metric:compass",
|
|
429
|
+
"write:operations-info:jira",
|
|
426
430
|
"write:ops-alert:jira-service-management",
|
|
427
431
|
"write:ops-config:jira-service-management",
|
|
428
432
|
"write:organization:entitlement:jira-service-management",
|