@google/gemini-cli-a2a-server 0.20.0-preview.1 → 0.20.0-preview.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/dist/a2a-server.mjs +6 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -304170,7 +304170,7 @@ function writeToStdout(...args2) {
|
|
|
304170
304170
|
function writeToStderr(...args2) {
|
|
304171
304171
|
return originalStderrWrite(...args2);
|
|
304172
304172
|
}
|
|
304173
|
-
function
|
|
304173
|
+
function createWorkingStdio() {
|
|
304174
304174
|
const inkStdout = new Proxy(process.stdout, {
|
|
304175
304175
|
get(target, prop, receiver) {
|
|
304176
304176
|
if (prop === "write") {
|
|
@@ -304400,7 +304400,7 @@ async function authWithUserCode(client) {
|
|
|
304400
304400
|
const code2 = await new Promise((resolve14, _) => {
|
|
304401
304401
|
const rl = readline.createInterface({
|
|
304402
304402
|
input: process.stdin,
|
|
304403
|
-
output:
|
|
304403
|
+
output: createWorkingStdio().stdout,
|
|
304404
304404
|
terminal: true
|
|
304405
304405
|
});
|
|
304406
304406
|
rl.question("Enter the authorization code: ", (code3) => {
|
|
@@ -307842,8 +307842,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
307842
307842
|
var PointerVector = import_vector.default.PointerVector;
|
|
307843
307843
|
|
|
307844
307844
|
// packages/core/dist/src/generated/git-commit.js
|
|
307845
|
-
var GIT_COMMIT_INFO = "
|
|
307846
|
-
var CLI_VERSION = "0.20.0-preview.
|
|
307845
|
+
var GIT_COMMIT_INFO = "f9997f92c";
|
|
307846
|
+
var CLI_VERSION = "0.20.0-preview.2";
|
|
307847
307847
|
|
|
307848
307848
|
// packages/core/dist/src/ide/detect-ide.js
|
|
307849
307849
|
var IDE_DEFINITIONS = {
|
|
@@ -310901,7 +310901,7 @@ async function createContentGenerator(config3, gcConfig, sessionId2) {
|
|
|
310901
310901
|
if (gcConfig.fakeResponses) {
|
|
310902
310902
|
return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
|
|
310903
310903
|
}
|
|
310904
|
-
const version4 = "0.20.0-preview.
|
|
310904
|
+
const version4 = "0.20.0-preview.2";
|
|
310905
310905
|
const customHeadersEnv = process.env["GEMINI_CLI_CUSTOM_HEADERS"] || void 0;
|
|
310906
310906
|
const userAgent = `GeminiCLI/${version4} (${process.platform}; ${process.arch})`;
|
|
310907
310907
|
const customHeadersMap = parseCustomHeaders(customHeadersEnv);
|
|
@@ -377529,7 +377529,7 @@ async function getClientMetadata() {
|
|
|
377529
377529
|
clientMetadataPromise = (async () => ({
|
|
377530
377530
|
ideName: "IDE_UNSPECIFIED",
|
|
377531
377531
|
pluginType: "GEMINI",
|
|
377532
|
-
ideVersion: "0.20.0-preview.
|
|
377532
|
+
ideVersion: "0.20.0-preview.2",
|
|
377533
377533
|
platform: getPlatform(),
|
|
377534
377534
|
updateChannel: await getReleaseChannel(__dirname5)
|
|
377535
377535
|
}))();
|