npm package diff

Package: @forge/cli-shared

Versions: 6.10.0-next.5 - 6.10.0-next.6

File: package/out/ui/text.js

Index: package/out/ui/text.js
===================================================================
--- package/out/ui/text.js
+++ package/out/ui/text.js
@@ -639,8 +639,37 @@
                 },
                 warningMessage: (sourceVersionId, targetVersionId, installations) => `${chalk_1.default.bold('Warning:')} You are planning to move ${installations} installations from version ${sourceVersionId} to version ${targetVersionId}.`,
                 promptConfirmation: 'Do you want to continue?'
             },
+            list: {
+                cmdName: 'list',
+                option: {
+                    outFile: 'specify a file to output the results',
+                    majorVersion: 'specify a major version'
+                },
+                desc: `returns a summary of version update requests. Details include:\n${itemList([
+                    'upgrade ID',
+                    'upgrade request status',
+                    'start date',
+                    'completed date',
+                    'from version',
+                    'to version',
+                    'number of updates completed',
+                    'number of updates pending',
+                    'number of updates failed'
+                ])}`,
+                start: 'Getting app version upgrade list...',
+                end: 'Getting app version upgrade list...',
+                details: {
+                    banner: (envKey, envType, updates) => {
+                        if (!envType) {
+                            return `${log_symbols_1.default.info} Details of a total of [${updates} updates] can be seen below:`;
+                        }
+                        const envDisplay = exports.Text.env.displayEnvironment(envKey, envType);
+                        return `${log_symbols_1.default.info} Details of a total of [${updates} updates] in [${envDisplay}] can be seen below:`;
+                    }
+                }
+            },
             cancel: {
                 cmdName: 'cancel',
                 option: {
                     json: 'output results in JSON format',
@@ -713,8 +742,11 @@
             warning: (majorVersion) => `${chalk_1.default.bold('Warning:')} You\'re about to deploy changes to major version ${majorVersion} of your app. All sites using version ${majorVersion} will automatically apply these changes.\n`,
             confirm: `Continue?`,
             invalidMajorVersionError: 'Invalid major version number'
         },
+        buildTag: {
+            description: 'specify a build tag to deploy (from forge build)'
+        },
         connectKeyChange: {
             continueChange: `Do you wish to continue with changing the Connect key?`,
             continueDelete: `Do you wish to continue with deleting the Connect key?`,
             mpacAppConnectKeyChangeAnalyticsError: 'Cannot change app.connect.key for an app with an Atlassian Marketplace listing.',