@google/gemini-cli-a2a-server 0.27.1 → 0.27.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 +7 -10
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -121622,13 +121622,13 @@ var require_path = __commonJS({
|
|
|
121622
121622
|
"node_modules/@protobufjs/path/index.js"(exports2) {
|
|
121623
121623
|
"use strict";
|
|
121624
121624
|
var path80 = exports2;
|
|
121625
|
-
var
|
|
121625
|
+
var isAbsolute5 = (
|
|
121626
121626
|
/**
|
|
121627
121627
|
* Tests if the specified path is absolute.
|
|
121628
121628
|
* @param {string} path Path to test
|
|
121629
121629
|
* @returns {boolean} `true` if path is absolute
|
|
121630
121630
|
*/
|
|
121631
|
-
path80.isAbsolute = function
|
|
121631
|
+
path80.isAbsolute = function isAbsolute6(path81) {
|
|
121632
121632
|
return /^(?:\/|\w+:)/.test(path81);
|
|
121633
121633
|
}
|
|
121634
121634
|
);
|
|
@@ -121640,7 +121640,7 @@ var require_path = __commonJS({
|
|
|
121640
121640
|
*/
|
|
121641
121641
|
path80.normalize = function normalize6(path81) {
|
|
121642
121642
|
path81 = path81.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
121643
|
-
var parts2 = path81.split("/"), absolute =
|
|
121643
|
+
var parts2 = path81.split("/"), absolute = isAbsolute5(path81), prefix = "";
|
|
121644
121644
|
if (absolute)
|
|
121645
121645
|
prefix = parts2.shift() + "/";
|
|
121646
121646
|
for (var i4 = 0; i4 < parts2.length; ) {
|
|
@@ -121662,7 +121662,7 @@ var require_path = __commonJS({
|
|
|
121662
121662
|
path80.resolve = function resolve15(originPath, includePath, alreadyNormalized) {
|
|
121663
121663
|
if (!alreadyNormalized)
|
|
121664
121664
|
includePath = normalize5(includePath);
|
|
121665
|
-
if (
|
|
121665
|
+
if (isAbsolute5(includePath))
|
|
121666
121666
|
return includePath;
|
|
121667
121667
|
if (!alreadyNormalized)
|
|
121668
121668
|
originPath = normalize5(originPath);
|
|
@@ -326593,7 +326593,7 @@ var __filename = fileURLToPath5(import.meta.url);
|
|
|
326593
326593
|
var __dirname3 = path20.dirname(__filename);
|
|
326594
326594
|
async function getVersion() {
|
|
326595
326595
|
const pkgJson = await getPackageJson(__dirname3);
|
|
326596
|
-
return "0.27.
|
|
326596
|
+
return "0.27.2";
|
|
326597
326597
|
}
|
|
326598
326598
|
|
|
326599
326599
|
// packages/core/dist/src/code_assist/experiments/client_metadata.js
|
|
@@ -330012,8 +330012,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
330012
330012
|
var PointerVector = import_vector.default.PointerVector;
|
|
330013
330013
|
|
|
330014
330014
|
// packages/core/dist/src/generated/git-commit.js
|
|
330015
|
-
var GIT_COMMIT_INFO = "
|
|
330016
|
-
var CLI_VERSION = "0.27.
|
|
330015
|
+
var GIT_COMMIT_INFO = "3d2d44d74";
|
|
330016
|
+
var CLI_VERSION = "0.27.2";
|
|
330017
330017
|
|
|
330018
330018
|
// packages/core/dist/src/ide/detect-ide.js
|
|
330019
330019
|
var IDE_DEFINITIONS = {
|
|
@@ -404704,9 +404704,6 @@ var Config = class {
|
|
|
404704
404704
|
* @returns true if the path is allowed, false otherwise.
|
|
404705
404705
|
*/
|
|
404706
404706
|
isPathAllowed(absolutePath) {
|
|
404707
|
-
if (this.interactive && path70.isAbsolute(absolutePath)) {
|
|
404708
|
-
return true;
|
|
404709
|
-
}
|
|
404710
404707
|
const realpath3 = (p) => {
|
|
404711
404708
|
let resolved;
|
|
404712
404709
|
try {
|