fss-link 1.5.1 → 1.5.2
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 +7 -4
- package/package.json +1 -1
package/bundle/fss-link.js
CHANGED
|
@@ -22379,7 +22379,7 @@ async function createContentGeneratorConfig(config, authType) {
|
|
|
22379
22379
|
async function createContentGenerator(config, gcConfig, sessionId2) {
|
|
22380
22380
|
if (DEBUG_CONTENT)
|
|
22381
22381
|
console.log(`\u{1F41B} DEBUG createContentGenerator: authType=${config.authType}, apiKey=${config.apiKey}, baseUrl=${config.baseUrl}`);
|
|
22382
|
-
const version = "1.5.
|
|
22382
|
+
const version = "1.5.2";
|
|
22383
22383
|
const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
|
|
22384
22384
|
const baseHeaders = {
|
|
22385
22385
|
"User-Agent": userAgent
|
|
@@ -50437,7 +50437,7 @@ Co-authored-by: ${gitCoAuthorSettings.name} <${gitCoAuthorSettings.email}>`;
|
|
|
50437
50437
|
description: "(OPTIONAL) Directory to run the command in, if not the project root directory. Must be relative to the project root directory and must already exist."
|
|
50438
50438
|
}
|
|
50439
50439
|
},
|
|
50440
|
-
required: ["command"
|
|
50440
|
+
required: ["command"]
|
|
50441
50441
|
},
|
|
50442
50442
|
false,
|
|
50443
50443
|
// output is not markdown
|
|
@@ -50456,6 +50456,9 @@ Co-authored-by: ${gitCoAuthorSettings.name} <${gitCoAuthorSettings.email}>`;
|
|
|
50456
50456
|
// Override build method to preprocess parameters before validation
|
|
50457
50457
|
build(params) {
|
|
50458
50458
|
const processedParams = { ...params };
|
|
50459
|
+
if (processedParams.is_background === void 0 || processedParams.is_background === null) {
|
|
50460
|
+
processedParams.is_background = false;
|
|
50461
|
+
}
|
|
50459
50462
|
if (typeof processedParams.is_background === "string") {
|
|
50460
50463
|
const boolStr = processedParams.is_background.toLowerCase();
|
|
50461
50464
|
if (boolStr === "false") {
|
|
@@ -96359,7 +96362,7 @@ async function getPackageJson() {
|
|
|
96359
96362
|
// packages/cli/src/utils/version.ts
|
|
96360
96363
|
async function getCliVersion() {
|
|
96361
96364
|
const pkgJson = await getPackageJson();
|
|
96362
|
-
return "1.5.
|
|
96365
|
+
return "1.5.2";
|
|
96363
96366
|
}
|
|
96364
96367
|
|
|
96365
96368
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -96411,7 +96414,7 @@ import open4 from "open";
|
|
|
96411
96414
|
import process11 from "node:process";
|
|
96412
96415
|
|
|
96413
96416
|
// packages/cli/src/generated/git-commit.ts
|
|
96414
|
-
var GIT_COMMIT_INFO = "
|
|
96417
|
+
var GIT_COMMIT_INFO = "9c5ce749";
|
|
96415
96418
|
|
|
96416
96419
|
// packages/cli/src/ui/commands/bugCommand.ts
|
|
96417
96420
|
init_dist2();
|