fss-link 1.0.67 → 1.0.68
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/bundle/fss-link.js +10 -6
- package/package.json +1 -1
package/bundle/fss-link.js
CHANGED
|
@@ -22379,7 +22379,7 @@ function createContentGeneratorConfig(config, authType) {
|
|
|
22379
22379
|
return contentGeneratorConfig;
|
|
22380
22380
|
}
|
|
22381
22381
|
async function createContentGenerator(config, gcConfig, sessionId2) {
|
|
22382
|
-
const version = "1.0.
|
|
22382
|
+
const version = "1.0.68";
|
|
22383
22383
|
const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
|
|
22384
22384
|
const baseHeaders = {
|
|
22385
22385
|
"User-Agent": userAgent
|
|
@@ -373525,7 +373525,7 @@ async function getPackageJson() {
|
|
|
373525
373525
|
// packages/cli/src/utils/version.ts
|
|
373526
373526
|
async function getCliVersion() {
|
|
373527
373527
|
const pkgJson = await getPackageJson();
|
|
373528
|
-
return "1.0.
|
|
373528
|
+
return "1.0.68";
|
|
373529
373529
|
}
|
|
373530
373530
|
|
|
373531
373531
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -373577,7 +373577,7 @@ import open4 from "open";
|
|
|
373577
373577
|
import process11 from "node:process";
|
|
373578
373578
|
|
|
373579
373579
|
// packages/cli/src/generated/git-commit.ts
|
|
373580
|
-
var GIT_COMMIT_INFO = "
|
|
373580
|
+
var GIT_COMMIT_INFO = "801292da";
|
|
373581
373581
|
|
|
373582
373582
|
// packages/cli/src/ui/commands/bugCommand.ts
|
|
373583
373583
|
init_dist2();
|
|
@@ -407642,11 +407642,15 @@ function setWindowTitle(title, settings) {
|
|
|
407642
407642
|
// packages/cli/index.ts
|
|
407643
407643
|
main().catch((error) => {
|
|
407644
407644
|
console.error("An unexpected critical error occurred:");
|
|
407645
|
+
console.error(String(error));
|
|
407645
407646
|
if (error instanceof Error) {
|
|
407646
|
-
console.error(error.stack);
|
|
407647
|
-
}
|
|
407648
|
-
|
|
407647
|
+
console.error("Error stack:", error.stack);
|
|
407648
|
+
}
|
|
407649
|
+
if (error && typeof error === "object" && "stack" in error) {
|
|
407650
|
+
console.error("Object stack:", error.stack);
|
|
407649
407651
|
}
|
|
407652
|
+
console.error("Error type:", typeof error);
|
|
407653
|
+
console.error("Error constructor:", error?.constructor?.name);
|
|
407650
407654
|
process.exit(1);
|
|
407651
407655
|
});
|
|
407652
407656
|
/**
|