fss-link 1.0.72 → 1.0.73
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 -2
- 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.73";
|
|
22383
22383
|
const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
|
|
22384
22384
|
const baseHeaders = {
|
|
22385
22385
|
"User-Agent": userAgent
|
|
@@ -373535,7 +373535,7 @@ async function getPackageJson() {
|
|
|
373535
373535
|
// packages/cli/src/utils/version.ts
|
|
373536
373536
|
async function getCliVersion() {
|
|
373537
373537
|
const pkgJson = await getPackageJson();
|
|
373538
|
-
return "1.0.
|
|
373538
|
+
return "1.0.73";
|
|
373539
373539
|
}
|
|
373540
373540
|
|
|
373541
373541
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -407652,6 +407652,8 @@ main().catch((error) => {
|
|
|
407652
407652
|
console.error("An unexpected critical error occurred:");
|
|
407653
407653
|
console.error(String(error));
|
|
407654
407654
|
if (error instanceof Error) {
|
|
407655
|
+
console.error("Error name:", error.name);
|
|
407656
|
+
console.error("Error message:", error.message);
|
|
407655
407657
|
console.error("Error stack:", error.stack);
|
|
407656
407658
|
}
|
|
407657
407659
|
if (error && typeof error === "object" && "stack" in error) {
|
|
@@ -407659,6 +407661,12 @@ main().catch((error) => {
|
|
|
407659
407661
|
}
|
|
407660
407662
|
console.error("Error type:", typeof error);
|
|
407661
407663
|
console.error("Error constructor:", error?.constructor?.name);
|
|
407664
|
+
console.error("Error JSON:", JSON.stringify(error, null, 2));
|
|
407665
|
+
if (String(error) === "Statement closed") {
|
|
407666
|
+
console.error("*** THIS IS THE SQL.JS STATEMENT CLOSED ERROR ***");
|
|
407667
|
+
console.error("*** CALL STACK AT TIME OF ERROR ***");
|
|
407668
|
+
console.trace();
|
|
407669
|
+
}
|
|
407662
407670
|
process.exit(1);
|
|
407663
407671
|
});
|
|
407664
407672
|
/**
|