@forge/cli-shared 8.6.0-next.2 → 8.6.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 +14 -0
- package/out/graphql/graphql-types.d.ts +67 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -10
- package/package.json +2 -2
|
@@ -2786,6 +2786,7 @@ var DevAiRovoDevSessionStatus;
|
|
|
2786
2786
|
DevAiRovoDevSessionStatus["AgentWorking"] = "AGENT_WORKING";
|
|
2787
2787
|
DevAiRovoDevSessionStatus["Archived"] = "ARCHIVED";
|
|
2788
2788
|
DevAiRovoDevSessionStatus["Cloning"] = "CLONING";
|
|
2789
|
+
DevAiRovoDevSessionStatus["Deleted"] = "DELETED";
|
|
2789
2790
|
DevAiRovoDevSessionStatus["Failed"] = "FAILED";
|
|
2790
2791
|
DevAiRovoDevSessionStatus["Initialising"] = "INITIALISING";
|
|
2791
2792
|
DevAiRovoDevSessionStatus["InProgress"] = "IN_PROGRESS";
|
|
@@ -8325,29 +8326,30 @@ var Platform;
|
|
|
8325
8326
|
})(Platform = exports.Platform || (exports.Platform = {}));
|
|
8326
8327
|
var PlaybookTemplateCategory;
|
|
8327
8328
|
(function (PlaybookTemplateCategory) {
|
|
8328
|
-
PlaybookTemplateCategory["DevOps"] = "DEV_OPS";
|
|
8329
8329
|
PlaybookTemplateCategory["Hrsm"] = "HRSM";
|
|
8330
|
+
PlaybookTemplateCategory["Itsm"] = "ITSM";
|
|
8330
8331
|
PlaybookTemplateCategory["ItOperations"] = "IT_OPERATIONS";
|
|
8331
|
-
PlaybookTemplateCategory["ItServiceManagement"] = "IT_SERVICE_MANAGEMENT";
|
|
8332
|
-
PlaybookTemplateCategory["SecOps"] = "SEC_OPS";
|
|
8333
8332
|
})(PlaybookTemplateCategory = exports.PlaybookTemplateCategory || (exports.PlaybookTemplateCategory = {}));
|
|
8334
8333
|
var PlaybookTemplateColor;
|
|
8335
8334
|
(function (PlaybookTemplateColor) {
|
|
8336
8335
|
PlaybookTemplateColor["Blue"] = "BLUE";
|
|
8337
8336
|
PlaybookTemplateColor["Gray"] = "GRAY";
|
|
8338
8337
|
PlaybookTemplateColor["Green"] = "GREEN";
|
|
8338
|
+
PlaybookTemplateColor["Lime"] = "LIME";
|
|
8339
|
+
PlaybookTemplateColor["Magenta"] = "MAGENTA";
|
|
8340
|
+
PlaybookTemplateColor["Orange"] = "ORANGE";
|
|
8339
8341
|
PlaybookTemplateColor["Purple"] = "PURPLE";
|
|
8342
|
+
PlaybookTemplateColor["Teal"] = "TEAL";
|
|
8340
8343
|
PlaybookTemplateColor["Yellow"] = "YELLOW";
|
|
8341
8344
|
})(PlaybookTemplateColor = exports.PlaybookTemplateColor || (exports.PlaybookTemplateColor = {}));
|
|
8342
8345
|
var PlaybookTemplateIcon;
|
|
8343
8346
|
(function (PlaybookTemplateIcon) {
|
|
8344
|
-
PlaybookTemplateIcon["
|
|
8345
|
-
PlaybookTemplateIcon["
|
|
8346
|
-
PlaybookTemplateIcon["
|
|
8347
|
-
PlaybookTemplateIcon["
|
|
8348
|
-
PlaybookTemplateIcon["
|
|
8349
|
-
PlaybookTemplateIcon["
|
|
8350
|
-
PlaybookTemplateIcon["SpotGeneralSearchErrorIcon"] = "SPOT_GENERAL_SEARCH_ERROR_ICON";
|
|
8347
|
+
PlaybookTemplateIcon["ChangeManagement_4Icon"] = "CHANGE_MANAGEMENT_4_ICON";
|
|
8348
|
+
PlaybookTemplateIcon["Chat_5Icon"] = "CHAT_5_ICON";
|
|
8349
|
+
PlaybookTemplateIcon["DataPrivacyIcon"] = "DATA_PRIVACY_ICON";
|
|
8350
|
+
PlaybookTemplateIcon["OnboardingIcon"] = "ONBOARDING_ICON";
|
|
8351
|
+
PlaybookTemplateIcon["RainstormIncidentIcon"] = "RAINSTORM_INCIDENT_ICON";
|
|
8352
|
+
PlaybookTemplateIcon["RefreshUpdateIcon"] = "REFRESH_UPDATE_ICON";
|
|
8351
8353
|
})(PlaybookTemplateIcon = exports.PlaybookTemplateIcon || (exports.PlaybookTemplateIcon = {}));
|
|
8352
8354
|
var PolarisCommentKind;
|
|
8353
8355
|
(function (PolarisCommentKind) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "8.6.0
|
|
3
|
+
"version": "8.6.0",
|
|
4
4
|
"description": "Common functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"generate-graphql-types": "graphql-codegen --config src/graphql/codegen.yml"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@forge/manifest": "10.5.0
|
|
15
|
+
"@forge/manifest": "10.5.0",
|
|
16
16
|
"@forge/util": "2.0.0",
|
|
17
17
|
"@forge/i18n": "0.0.7",
|
|
18
18
|
"@sentry/node": "7.106.0",
|