fss-link 1.2.16 → 1.2.18

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.
@@ -22343,7 +22343,7 @@ async function createContentGeneratorConfig(config, authType) {
22343
22343
  async function createContentGenerator(config, gcConfig, sessionId2) {
22344
22344
  if (DEBUG_CONTENT)
22345
22345
  console.log(`\u{1F41B} DEBUG createContentGenerator: authType=${config.authType}, apiKey=${config.apiKey}, baseUrl=${config.baseUrl}`);
22346
- const version = "1.2.16";
22346
+ const version = "1.2.18";
22347
22347
  const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
22348
22348
  const baseHeaders = {
22349
22349
  "User-Agent": userAgent
@@ -95410,7 +95410,7 @@ async function getPackageJson() {
95410
95410
  // packages/cli/src/utils/version.ts
95411
95411
  async function getCliVersion() {
95412
95412
  const pkgJson = await getPackageJson();
95413
- return "1.2.16";
95413
+ return "1.2.18";
95414
95414
  }
95415
95415
 
95416
95416
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -95462,7 +95462,7 @@ import open4 from "open";
95462
95462
  import process11 from "node:process";
95463
95463
 
95464
95464
  // packages/cli/src/generated/git-commit.ts
95465
- var GIT_COMMIT_INFO = "a766b474";
95465
+ var GIT_COMMIT_INFO = "ac38c742";
95466
95466
 
95467
95467
  // packages/cli/src/ui/commands/bugCommand.ts
95468
95468
  init_dist2();
@@ -127916,7 +127916,6 @@ async function runNonInteractive(config, input, prompt_id) {
127916
127916
  abortController.signal,
127917
127917
  prompt_id
127918
127918
  );
127919
- let hasFinishedEvent = false;
127920
127919
  for await (const event of responseStream) {
127921
127920
  if (abortController.signal.aborted) {
127922
127921
  console.error("Operation cancelled.");
@@ -127932,8 +127931,6 @@ async function runNonInteractive(config, input, prompt_id) {
127932
127931
  id: toolCallRequest.callId
127933
127932
  };
127934
127933
  functionCalls.push(fc);
127935
- } else if (event.type === GeminiEventType.Finished) {
127936
- hasFinishedEvent = true;
127937
127934
  }
127938
127935
  }
127939
127936
  if (functionCalls.length > 0) {
@@ -127969,9 +127966,6 @@ async function runNonInteractive(config, input, prompt_id) {
127969
127966
  }
127970
127967
  }
127971
127968
  currentMessages = [{ role: "user", parts: toolResponseParts }];
127972
- } else if (hasFinishedEvent) {
127973
- process.stdout.write("\n");
127974
- return;
127975
127969
  } else {
127976
127970
  process.stdout.write("\n");
127977
127971
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fss-link",
3
- "version": "1.2.16",
3
+ "version": "1.2.18",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },