fss-link 1.0.75 → 1.0.77
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 +21 -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.77";
|
|
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.77";
|
|
373539
373539
|
}
|
|
373540
373540
|
|
|
373541
373541
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -407374,6 +407374,14 @@ function toPermissionOptions(confirmation) {
|
|
|
407374
407374
|
|
|
407375
407375
|
// packages/cli/src/gemini.tsx
|
|
407376
407376
|
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
407377
|
+
console.log("\u{1F527} Starting module imports - if error happens during this, we found the culprit");
|
|
407378
|
+
console.log("\u{1F527} Importing React...");
|
|
407379
|
+
console.log("\u{1F527} Importing ink...");
|
|
407380
|
+
console.log("\u{1F527} Importing AppWrapper...");
|
|
407381
|
+
console.log("\u{1F527} Importing config modules...");
|
|
407382
|
+
console.log("\u{1F527} Importing settings...");
|
|
407383
|
+
console.log("\u{1F527} Importing other modules...");
|
|
407384
|
+
console.log("\u{1F527} All imports completed successfully");
|
|
407377
407385
|
function validateDnsResolutionOrder(order) {
|
|
407378
407386
|
const defaultValue = "ipv4first";
|
|
407379
407387
|
if (order === void 0) {
|
|
@@ -407440,6 +407448,7 @@ ${reason.stack}` : ""}`;
|
|
|
407440
407448
|
});
|
|
407441
407449
|
}
|
|
407442
407450
|
async function main() {
|
|
407451
|
+
console.log("\u{1F527} MAIN FUNCTION STARTED - if error happens before this, it is during module loading");
|
|
407443
407452
|
setupUnhandledRejectionHandler();
|
|
407444
407453
|
console.log("\u{1F527} EMERGENCY: Database initialization temporarily disabled for debugging");
|
|
407445
407454
|
const workspaceRoot = process.cwd();
|
|
@@ -407644,6 +407653,16 @@ function setWindowTitle(title, settings) {
|
|
|
407644
407653
|
}
|
|
407645
407654
|
|
|
407646
407655
|
// packages/cli/index.ts
|
|
407656
|
+
process.on("unhandledRejection", (reason, promise2) => {
|
|
407657
|
+
if (String(reason) === "Statement closed") {
|
|
407658
|
+
console.warn("\u26A0\uFE0F SUPPRESSED: SQL Statement closed error during startup - continuing execution");
|
|
407659
|
+
return;
|
|
407660
|
+
}
|
|
407661
|
+
console.error("Unhandled rejection:", reason);
|
|
407662
|
+
});
|
|
407663
|
+
console.log("\u{1F527} INDEX.TS: Starting import of gemini.js");
|
|
407664
|
+
console.log("\u{1F527} INDEX.TS: gemini.js import completed");
|
|
407665
|
+
console.log("\u{1F527} INDEX.TS: All imports completed, calling main()");
|
|
407647
407666
|
main().catch((error) => {
|
|
407648
407667
|
console.error("An unexpected critical error occurred:");
|
|
407649
407668
|
console.error(String(error));
|