npm package diff

Package: @forge/cli-shared

Versions: 8.2.0-next.12 - 8.2.0-next.13

File: package/out/ui/text.js

Index: package/out/ui/text.js
===================================================================
--- package/out/ui/text.js
+++ package/out/ui/text.js
@@ -666,12 +666,12 @@
                 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:`;
+                            return `${log_symbols_1.default.info} Details of a total of [${updates} updates] can be seen below. Records may not be available indefinitely.`;
                         }
                         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:`;
+                        return `${log_symbols_1.default.info} Details of a total of [${updates} updates] in [${envDisplay}] can be seen below. Records may not be available indefinitely.`;
                     }
                 }
             },
             cancel: {
@@ -1165,8 +1165,40 @@
                 desc: 'authenticate to container registry'
             }
         }
     },
+    show: {
+        cmd: {
+            desc: "display information about the deployed app's containers and services"
+        },
+        services: {
+            cmd: {
+                desc: 'display information about deployed app services',
+                serviceKeyOption: 'specify the name of the service'
+            },
+            overview: 'Showing service information.',
+            specificService: (serviceKey, environment) => `Showing service: ${chalk_1.default.bold(serviceKey)} deployed in the '${environment}' environment.`,
+            allServices: (environment) => `Showing all services defined and deployed in the '${environment}' environment:`,
+            noServicesFound: (environment) => `No services found in the '${environment}' environment.`
+        },
+        containers: {
+            cmd: {
+                desc: 'display information about deployed app containers for a given service',
+                serviceKeyOption: 'specify the name of a service',
+                containerKeyOption: 'specify the name of a container'
+            },
+            overview: 'Showing container information for a service.',
+            prompt: {
+                entry: 'Select a service:'
+            },
+            noContainersFound: (environment) => `No service containers found in the '${environment}' environment.`,
+            specifiedServiceNotFound: (service, environment) => `No service '${service}' found in the '${environment}' environment.`,
+            specifiedContainerNotFound: (service, container, environment) => `No container '${container}' found for the service '${service}' in the '${environment}' environment.`,
+            noContainersFoundForService: (service, environment) => `No containers found for the service '${service}' in the '${environment}' environment.`,
+            specificContainer: (containerKey) => `Container: ${chalk_1.default.bold(containerKey)}`,
+            noInstancesFoundForContainer: (containerKey, service, environment) => `No instances found for the container '${containerKey}' for the service '${service}' in the '${environment}' environment.`
+        }
+    },
     stub: {
         error: (newName, oldName) => `The ${forge(oldName)} command has been deprecated and replaced by ${forge(newName)}.`
     },
     customPrompts: {