npm package diff

Package: @forge/cli

Versions: 12.7.1-next.9-experimental-44e92a2 - 12.7.1-next.10

File: package/out/command-line/view/install-view.js

Index: package/out/command-line/view/install-view.js
===================================================================
--- package/out/command-line/view/install-view.js
+++ package/out/command-line/view/install-view.js
@@ -9,13 +9,13 @@
     ui;
     constructor(ui) {
         this.ui = ui;
     }
-    async promptForPermissionsConfirmation({ scopes, egressAddresses }, listScopes, manifestScopes, manifestEgressAddresses, environment, confirmScopes, nonInteractive, text, isPreviousVersion, isCodeUpgrade = false) {
+    async promptForPermissionsConfirmation({ scopes, egressAddresses }, listScopes, manifestScopes, manifestEgressAddresses, environment, confirmScopes, nonInteractive, text, isPreviousVersion) {
         if (listScopes.length)
-            this.ui.info(text.listScopes(listScopes, isCodeUpgrade));
+            this.ui.info(text.listScopes(listScopes));
         if (egressAddresses.length)
-            this.ui.info(text.listEgressAddresses(egressAddresses, isCodeUpgrade));
+            this.ui.info(text.listEgressAddresses(egressAddresses));
         const groupedManifestEgressAddresses = (0, egress_1.sortAndGroupEgressPermissionsByDomain)(manifestEgressAddresses);
         let permissionsMismatchWithManifest = false;
         if ((0, cli_shared_1.environmentToOption)(environment) === cli_shared_1.DEFAULT_ENVIRONMENT_OPTION && !isPreviousVersion) {
             const scopesMismatch = !(0, lodash_1.isEqual)([...manifestScopes].sort(), [...scopes].sort());
@@ -32,13 +32,13 @@
             return scopesConfirmationResult;
         }
         return true;
     }
-    async promptForUpgrade(installations, isCodeUpgrade = false, version, isLatest) {
+    async promptForUpgrade(installations) {
         if (!installations.length) {
             throw new cli_shared_1.UserError(cli_shared_1.Text.installList.noInstallations);
         }
-        const installation = (0, installation_helper_1.selectSingleInstallation)(this.ui, installations, cli_shared_1.Text.upgradeContext.promptInstallation, cli_shared_1.Text.upgradeContext.overview(isCodeUpgrade, version, isLatest));
+        const installation = (0, installation_helper_1.selectSingleInstallation)(this.ui, installations, cli_shared_1.Text.upgradeContext.promptInstallation, cli_shared_1.Text.upgradeContext.overview);
         return installation;
     }
     displayUIKit1DeprecationMessage(modules) {
         this.ui.emptyLine();