@insforge/cli 0.1.53 → 0.1.54
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2230,7 +2230,7 @@ function registerProjectLinkCommand(program2) {
|
|
|
2230
2230
|
if (err instanceof CLIError && (err.exitCode === 5 || err.exitCode === 4 || err.message.includes("not found"))) {
|
|
2231
2231
|
const identity = creds.user?.email ?? creds.user?.name ?? "unknown user";
|
|
2232
2232
|
throw new CLIError(
|
|
2233
|
-
`
|
|
2233
|
+
`No access to project ${projectId} as ${identity}. Double-check the project ID, or run \`npx @insforge/cli logout\` to switch accounts.`,
|
|
2234
2234
|
5,
|
|
2235
2235
|
"PERMISSION_DENIED"
|
|
2236
2236
|
);
|
|
@@ -5081,7 +5081,7 @@ function registerDiagnoseCommands(diagnoseCmd2) {
|
|
|
5081
5081
|
const s = !json ? clack10.spinner() : null;
|
|
5082
5082
|
s?.start("Collecting diagnostic data...");
|
|
5083
5083
|
const data2 = await collectDiagnosticData(projectId, ossMode, apiUrl);
|
|
5084
|
-
const cliVersion = "0.1.
|
|
5084
|
+
const cliVersion = "0.1.54";
|
|
5085
5085
|
s?.stop("Data collected");
|
|
5086
5086
|
if (!json) {
|
|
5087
5087
|
console.log(`
|