npm package diff
Package: @forge/cli
Versions: 11.2.0 - 11.2.1-next.2-experimental-611b366
File: package/out/command-line/controller/install-controller.js
Index: package/out/command-line/controller/install-controller.js
===================================================================
--- package/out/command-line/controller/install-controller.js
+++ package/out/command-line/controller/install-controller.js
@@ -197,10 +197,11 @@
this.checkForUIKit1Modules(modules);
}
const manifestEgressAddresses = (0, cli_shared_1.flatMap)(manifestEgressEntries, ({ domains }) => domains ?? []);
const manifestScopes = new Set(permissions?.scopes ?? []);
- const addedScopes = await this.extractAddedScopes(environmentPermissions);
- const scopesConfirmationResult = await this.installView.promptForPermissionsConfirmation(environmentPermissions, addedScopes, [...manifestScopes], manifestEgressAddresses, environment, confirmScopes, !!nonInteractive, text);
+ const listScopesString = upgrade ? environmentPermissions.addedScopes : environmentPermissions.scopes;
+ const listScopes = await this.convertListScope(listScopesString);
+ const scopesConfirmationResult = await this.installView.promptForPermissionsConfirmation(environmentPermissions, listScopes, [...manifestScopes], manifestEgressAddresses, environment, confirmScopes, !!nonInteractive, text);
if (!scopesConfirmationResult)
return;
const successfulProducts = [];
const failedProducts = [];
@@ -282,11 +283,11 @@
if (productsToInstall.length === 0 && productsToUpgrade.length === 0)
return;
this.ui.warn(cli_shared_1.Text.install.multiProductScopesDetected(productsToInstall, productsToUpgrade, site.host, environment));
};
- async extractAddedScopes({ addedScopes }) {
+ async convertListScope(scopesToList) {
const scopesWithInteractiveConsent = (0, manifest_1.getScopesWithInteractiveConsent)();
- return addedScopes.map((scope) => ({
+ return scopesToList.map((scope) => ({
name: scope,
requiresInteractiveConsent: scopesWithInteractiveConsent.has(scope)
}));
}