@forge/cli-shared 3.14.0-next.0 → 3.14.0-next.1
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 +6 -0
- package/out/ui/text.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/out/ui/text.js
CHANGED
|
@@ -553,7 +553,7 @@ What do you like or don't like about Forge? Share your feedback below or press C
|
|
|
553
553
|
optionConfirmScopes: 'skip confirmation of scopes for the app before installing or upgrading the app',
|
|
554
554
|
optionUpgrade: 'upgrade an existing installation',
|
|
555
555
|
listScopes: (scopes) => `Your app will be installed with the following scopes:\n${scopes
|
|
556
|
-
.map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires
|
|
556
|
+
.map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires user consent)' : ''}`)
|
|
557
557
|
.join('\n')}\n`,
|
|
558
558
|
listEgressAddresses: (egressAddresses) => `Your app will exchange data with the following urls:\n${egressAddresses.map((url) => `- ${url}`).join('\n')}\n`,
|
|
559
559
|
permissionsMismatch: (environment) => `The scopes or egress URLs in the manifest are different from the scopes in your most recent deployment to ${environment}. Try running ${chalk_1.default.bold(`forge deploy -e ${environment}`)} before installing.\n`,
|
|
@@ -620,7 +620,7 @@ ${buildTerminalLink(link)}\n`,
|
|
|
620
620
|
error: `Upgrade failed`
|
|
621
621
|
},
|
|
622
622
|
listScopes: (scopes) => `Your app will be upgraded with the following additional scopes:\n${scopes
|
|
623
|
-
.map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires
|
|
623
|
+
.map(({ name, requiresInteractiveConsent }) => `- ${name}${requiresInteractiveConsent ? ' (requires user consent)' : ''}`)
|
|
624
624
|
.join('\n')}\n`,
|
|
625
625
|
listEgressAddresses: (egressAddresses) => `Your app will exchange data with the following urls:\n${egressAddresses.map((url) => `- ${url}`).join('\n')}\n`,
|
|
626
626
|
permissionsMismatch: (environment) => `The scopes or egress URLs in the manifest are different from the scopes in your most recent deployment to ${environment}. Try running ${chalk_1.default.bold(`forge deploy -e ${environment}`)} before upgrading.\n`,
|