fss-link 1.0.69 → 1.0.70

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.
@@ -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.69";
22382
+ const version = "1.0.70";
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.69";
373528
+ return "1.0.70";
373529
373529
  }
373530
373530
 
373531
373531
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -397355,7 +397355,9 @@ init_dist2();
397355
397355
  var validateAuthMethod = (authMethod) => {
397356
397356
  loadEnvironment();
397357
397357
  const modelManager = getModelManager();
397358
- modelManager.initializeFromStore();
397358
+ modelManager.initializeFromStore().catch((error) => {
397359
+ console.warn("Failed to initialize model database in validateAuthMethod:", error);
397360
+ });
397359
397361
  if (authMethod === AuthType.LOGIN_WITH_GOOGLE || authMethod === AuthType.CLOUD_SHELL) {
397360
397362
  return null;
397361
397363
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fss-link",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },