@forge/cli-shared 8.11.1-next.5 → 8.12.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/out/ui/text.js CHANGED
@@ -1349,6 +1349,11 @@ ${buildTerminalLink(link)}\n`,
1349
1349
  invalidValue: `Invalid value specified. Valid values: true, false`,
1350
1350
  success: (setting, value) => `${greenTick} Successfully set ${setting} as ${value}.`
1351
1351
  },
1352
+ delete: {
1353
+ description: (choices) => `Delete a Forge CLI setting. Allowed settings: ${choices.join(', ')}`,
1354
+ invalidSetting: (choices) => `Invalid setting specified. Allowed settings: ${choices.join(', ')}`,
1355
+ success: (setting) => `${greenTick} Successfully deleted ${setting}.`
1356
+ },
1352
1357
  list: {
1353
1358
  description: 'list Forge CLI settings'
1354
1359
  },
@@ -1361,6 +1366,9 @@ ${buildTerminalLink(link)}\n`,
1361
1366
  },
1362
1367
  seasonalEffects: {
1363
1368
  description: 'Enable seasonal themes'
1369
+ },
1370
+ proxy: {
1371
+ description: 'Configure proxy for all Forge CLI network requests'
1364
1372
  }
1365
1373
  },
1366
1374
  assistant: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/cli-shared",
3
- "version": "8.11.1-next.5",
3
+ "version": "8.12.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": "11.3.0-next.3",
15
+ "@forge/manifest": "11.3.0",
16
16
  "@forge/util": "2.0.1",
17
17
  "@forge/i18n": "0.0.7",
18
18
  "@sentry/node": "7.106.0",