@google/gemini-cli-a2a-server 0.19.2 → 0.19.3
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/dist/a2a-server.mjs +20 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -307803,8 +307803,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
307803
307803
|
var PointerVector = import_vector.default.PointerVector;
|
|
307804
307804
|
|
|
307805
307805
|
// packages/core/dist/src/generated/git-commit.js
|
|
307806
|
-
var GIT_COMMIT_INFO = "
|
|
307807
|
-
var CLI_VERSION = "0.19.
|
|
307806
|
+
var GIT_COMMIT_INFO = "ee6b01f9c";
|
|
307807
|
+
var CLI_VERSION = "0.19.3";
|
|
307808
307808
|
|
|
307809
307809
|
// packages/core/dist/src/ide/detect-ide.js
|
|
307810
307810
|
var IDE_DEFINITIONS = {
|
|
@@ -310731,7 +310731,7 @@ async function createContentGenerator(config3, gcConfig, sessionId2) {
|
|
|
310731
310731
|
if (gcConfig.fakeResponses) {
|
|
310732
310732
|
return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
|
|
310733
310733
|
}
|
|
310734
|
-
const version4 = "0.19.
|
|
310734
|
+
const version4 = "0.19.3";
|
|
310735
310735
|
const customHeadersEnv = process.env["GEMINI_CLI_CUSTOM_HEADERS"] || void 0;
|
|
310736
310736
|
const userAgent = `GeminiCLI/${version4} (${process.platform}; ${process.arch})`;
|
|
310737
310737
|
const customHeadersMap = parseCustomHeaders(customHeadersEnv);
|
|
@@ -354703,8 +354703,22 @@ var getFullBufferText = (terminal) => {
|
|
|
354703
354703
|
const lines = [];
|
|
354704
354704
|
for (let i4 = 0; i4 < buffer.length; i4++) {
|
|
354705
354705
|
const line = buffer.getLine(i4);
|
|
354706
|
-
|
|
354707
|
-
|
|
354706
|
+
if (!line) {
|
|
354707
|
+
continue;
|
|
354708
|
+
}
|
|
354709
|
+
let trimRight = true;
|
|
354710
|
+
if (i4 + 1 < buffer.length) {
|
|
354711
|
+
const nextLine = buffer.getLine(i4 + 1);
|
|
354712
|
+
if (nextLine?.isWrapped) {
|
|
354713
|
+
trimRight = false;
|
|
354714
|
+
}
|
|
354715
|
+
}
|
|
354716
|
+
const lineContent = line.translateToString(trimRight);
|
|
354717
|
+
if (line.isWrapped && lines.length > 0) {
|
|
354718
|
+
lines[lines.length - 1] += lineContent;
|
|
354719
|
+
} else {
|
|
354720
|
+
lines.push(lineContent);
|
|
354721
|
+
}
|
|
354708
354722
|
}
|
|
354709
354723
|
while (lines.length > 0 && lines[lines.length - 1] === "") {
|
|
354710
354724
|
lines.pop();
|
|
@@ -373919,7 +373933,7 @@ async function getClientMetadata() {
|
|
|
373919
373933
|
clientMetadataPromise = (async () => ({
|
|
373920
373934
|
ideName: "IDE_UNSPECIFIED",
|
|
373921
373935
|
pluginType: "GEMINI",
|
|
373922
|
-
ideVersion: "0.19.
|
|
373936
|
+
ideVersion: "0.19.3",
|
|
373923
373937
|
platform: getPlatform(),
|
|
373924
373938
|
updateChannel: await getReleaseChannel(__dirname5)
|
|
373925
373939
|
}))();
|