impel-cli 0.18.6 → 0.18.7
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/package.json +1 -1
- package/src/commands/status.js +8 -2
package/package.json
CHANGED
package/src/commands/status.js
CHANGED
|
@@ -106,7 +106,9 @@ export async function cmdStatus(overrides = {}) {
|
|
|
106
106
|
} catch (error) {
|
|
107
107
|
console.log(`Authentication check: unavailable (${error?.message || error})`);
|
|
108
108
|
console.log(`Current CLI tenant: ${config.tenantId || "not selected"}`);
|
|
109
|
-
console.log(
|
|
109
|
+
console.log(RUNTIME_BRAND.tenant.defaultId
|
|
110
|
+
? `Run \`${RUNTIME_BRAND.cli.command} setup\` to refresh authentication and repair the local tenant.`
|
|
111
|
+
: "Run `impel setup` to refresh authentication, then `impel update` to repair local tenants.");
|
|
110
112
|
if (RUNTIME_BRAND.cli.packageName === "impel-cli") io.maybePrintUpdateNotice();
|
|
111
113
|
return;
|
|
112
114
|
}
|
|
@@ -142,6 +144,10 @@ export async function cmdStatus(overrides = {}) {
|
|
|
142
144
|
+ `Claude app ${desktop.claude.app}, ChatGPT app ${desktop.codex.app}`,
|
|
143
145
|
);
|
|
144
146
|
}
|
|
145
|
-
if (incomplete)
|
|
147
|
+
if (incomplete) {
|
|
148
|
+
console.log(RUNTIME_BRAND.tenant.defaultId
|
|
149
|
+
? `Repair or finish missing tenant surfaces with: ${RUNTIME_BRAND.cli.command} setup`
|
|
150
|
+
: "Repair or finish missing tenant surfaces with: impel update");
|
|
151
|
+
}
|
|
146
152
|
if (RUNTIME_BRAND.cli.packageName === "impel-cli") io.maybePrintUpdateNotice();
|
|
147
153
|
}
|