@google/gemini-cli-a2a-server 0.14.0-preview.0 → 0.15.0-nightly.20251107.cd27cae8
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 +5 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -295902,8 +295902,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
295902
295902
|
var PointerVector = import_vector.default.PointerVector;
|
|
295903
295903
|
|
|
295904
295904
|
// packages/core/dist/src/generated/git-commit.js
|
|
295905
|
-
var GIT_COMMIT_INFO = "
|
|
295906
|
-
var CLI_VERSION = "0.
|
|
295905
|
+
var GIT_COMMIT_INFO = "cd27cae8";
|
|
295906
|
+
var CLI_VERSION = "0.15.0-nightly.20251107.cd27cae8";
|
|
295907
295907
|
|
|
295908
295908
|
// packages/core/dist/src/ide/detect-ide.js
|
|
295909
295909
|
var IDE_DEFINITIONS = {
|
|
@@ -295948,7 +295948,7 @@ function verifyVSCode(ide, ideProcessInfo) {
|
|
|
295948
295948
|
if (ide.name !== IDE_DEFINITIONS.vscode.name) {
|
|
295949
295949
|
return ide;
|
|
295950
295950
|
}
|
|
295951
|
-
if (ideProcessInfo.command.toLowerCase().includes("code")) {
|
|
295951
|
+
if (!ideProcessInfo.command || ideProcessInfo.command.toLowerCase().includes("code")) {
|
|
295952
295952
|
return IDE_DEFINITIONS.vscode;
|
|
295953
295953
|
}
|
|
295954
295954
|
return IDE_DEFINITIONS.vscodefork;
|
|
@@ -298713,7 +298713,7 @@ async function createContentGenerator(config2, gcConfig, sessionId2) {
|
|
|
298713
298713
|
if (gcConfig.fakeResponses) {
|
|
298714
298714
|
return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
|
|
298715
298715
|
}
|
|
298716
|
-
const version3 = "0.
|
|
298716
|
+
const version3 = "0.15.0-nightly.20251107.cd27cae8";
|
|
298717
298717
|
const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
|
|
298718
298718
|
const baseHeaders = {
|
|
298719
298719
|
"User-Agent": userAgent
|
|
@@ -354935,7 +354935,7 @@ async function getClientMetadata() {
|
|
|
354935
354935
|
if (!clientMetadataPromise) {
|
|
354936
354936
|
clientMetadataPromise = (async () => ({
|
|
354937
354937
|
ideName: "GEMINI_CLI",
|
|
354938
|
-
ideVersion: "0.
|
|
354938
|
+
ideVersion: "0.15.0-nightly.20251107.cd27cae8",
|
|
354939
354939
|
platform: getPlatform(),
|
|
354940
354940
|
updateChannel: await getReleaseChannel(__dirname5)
|
|
354941
354941
|
}))();
|