npm package diff

Package: @forge/cli

Versions: 11.3.0-next.5-experimental-c9be087 - 11.3.0-next.8-experimental-900adc2

Modified: package/out/command-line/command.js

Index: package/out/command-line/command.js
===================================================================
--- package/out/command-line/command.js
+++ package/out/command-line/command.js
@@ -188,9 +188,9 @@
     }
     contextOption() {
         const supportedProductsService = this.supportedProductsService;
         return this.option('-s, --site [site]', cli_shared_1.Text.optionSite)
-            .option('-p, --product [product]', cli_shared_1.Text.optionProduct(supportedProductsService.getSupportedProducts()))
+            .option('-p, --product [context]', cli_shared_1.Text.optionProduct(supportedProductsService.getSupportedProducts()))
             .precondition(async (...args) => {
             const { site, product } = last(args);
             return validateContext({ supportedProductsService, site, product });
         });

Modified: package/out/installations/installation-helper.js

Index: package/out/installations/installation-helper.js
===================================================================
--- package/out/installations/installation-helper.js
+++ package/out/installations/installation-helper.js
@@ -15,9 +15,9 @@
 }
 exports.validateInstallationId = validateInstallationId;
 async function selectSingleInstallation(ui, installations, installationTablePrompt, installationTableOverview) {
     const hasSecondaryInstallations = installations.some(({ secondaryProducts }) => secondaryProducts?.length);
-    const installationIndex = await ui.promptForSingleChoiceTable(installationTablePrompt, installationTableOverview, ['Environment', 'Site', hasSecondaryInstallations ? 'Product(s)' : 'Product', 'Major Version'], installations.map(({ id, environmentKey, product, secondaryProducts, site, version }) => ({
+    const installationIndex = await ui.promptForSingleChoiceTable(installationTablePrompt, installationTableOverview, ['Environment', 'Site', hasSecondaryInstallations ? 'Context(s)' : 'Context', 'Major Version'], installations.map(({ id, environmentKey, product, secondaryProducts, site, version }) => ({
         names: [
             (0, cli_shared_1.environmentToOption)(environmentKey),
             site,
             (0, cli_shared_1.productsDisplayName)(product, secondaryProducts),

Modified: package/out/command-line/register-installation-commands.js

Index: package/out/command-line/register-installation-commands.js
===================================================================
--- package/out/command-line/register-installation-commands.js
+++ package/out/command-line/register-installation-commands.js
@@ -45,9 +45,9 @@
         ui.table([
             ['id', 'Installation ID'],
             ['environment', 'Environment'],
             ['site', 'Site'],
-            ['product', hasSecondaryInstallations ? 'Product(s)' : 'Product'],
+            ['product', hasSecondaryInstallations ? 'Context(s)' : 'Context'],
             ['majorVersion', 'Major Version']
         ], installations.map(({ id, environmentKey, product, secondaryProducts, site, version: { isLatest, version } }) => ({
             id,
             environment: (0, cli_shared_1.environmentToOption)(environmentKey),
@@ -89,9 +89,9 @@
         }
         else {
             const filteredInstallations = installations.filter((install) => install.product !== 'identity' && install.product !== 'jira-servicedesk');
             const options = (0, uninstall_command_helpers_1.getMultiChoiceOptionsForUninstall)(filteredInstallations);
-            const selectedSitesIndexes = await ui.promptForTable(cli_shared_1.Text.uninstall.interactive.desc, cli_shared_1.Text.uninstall.interactive.progressInfo, ['Environment', 'Site', 'Product'], options);
+            const selectedSitesIndexes = await ui.promptForTable(cli_shared_1.Text.uninstall.interactive.desc, cli_shared_1.Text.uninstall.interactive.progressInfo, ['Environment', 'Site', 'Context'], options);
             const [firstUninstall, secondUninstall] = (0, uninstall_command_helpers_1.getInstallationsFromSelection)(options, selectedSitesIndexes, filteredInstallations);
             const selectedSites = new Set(firstUninstall.map(({ site }) => site).concat(secondUninstall.map(({ site }) => site)));
             const remainingApps = options
                 .filter((_, index) => !selectedSitesIndexes.includes(index))

Modified: package/npm-shrinkwrap.json

Large diffs are not rendered by default.

Modified: package/package.json

Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
 {
   "name": "@forge/cli",
-  "version": "11.3.0-next.5-experimental-c9be087",
+  "version": "11.3.0-next.8-experimental-900adc2",
   "description": "A command line interface for managing Atlassian-hosted apps",
   "author": "Atlassian",
   "license": "SEE LICENSE IN LICENSE.txt",
   "bin": {
@@ -17,15 +17,15 @@
     "postbuild": "chmod +x out/bin/*.js && ts-node scripts/configureAutocomplete.ts",
     "postinstall": "node -e \"fs.existsSync('./out/bin/postinstall.js') && require('./out/bin/postinstall.js')\""
   },
   "dependencies": {
-    "@forge/bundler": "4.21.1-next.5-experimental-c9be087",
-    "@forge/cli-shared": "6.8.0-next.5-experimental-c9be087",
+    "@forge/bundler": "4.21.1-next.8-experimental-900adc2",
+    "@forge/cli-shared": "6.8.0-next.8-experimental-900adc2",
     "@forge/egress": "1.4.0",
-    "@forge/lint": "5.7.3-next.5-experimental-c9be087",
-    "@forge/manifest": "8.9.0-next.1-experimental-c9be087",
+    "@forge/lint": "5.7.3-next.8-experimental-900adc2",
+    "@forge/manifest": "8.9.0-next.3-experimental-900adc2",
     "@forge/runtime": "5.10.7",
-    "@forge/tunnel": "5.10.1-next.5-experimental-c9be087",
+    "@forge/tunnel": "5.10.1-next.8-experimental-900adc2",
     "@forge/util": "1.4.8",
     "@sentry/node": "7.106.0",
     "@forge/i18n": "0.0.4",
     "ajv": "^8.12.0",

Modified: package/CHANGELOG.md

Large diffs are not rendered by default.