@google/gemini-cli-a2a-server 0.21.0-nightly.20251220.41a1a3eed → 0.21.0-nightly.20251221.8feeffb29
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 +11 -7
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -310224,7 +310224,7 @@ var __filename = fileURLToPath4(import.meta.url);
|
|
|
310224
310224
|
var __dirname3 = path20.dirname(__filename);
|
|
310225
310225
|
async function getVersion() {
|
|
310226
310226
|
const pkgJson = await getPackageJson(__dirname3);
|
|
310227
|
-
return "0.21.0-nightly.
|
|
310227
|
+
return "0.21.0-nightly.20251221.8feeffb29";
|
|
310228
310228
|
}
|
|
310229
310229
|
|
|
310230
310230
|
// packages/core/dist/src/code_assist/experiments/client_metadata.js
|
|
@@ -312991,8 +312991,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
312991
312991
|
var PointerVector = import_vector.default.PointerVector;
|
|
312992
312992
|
|
|
312993
312993
|
// packages/core/dist/src/generated/git-commit.js
|
|
312994
|
-
var GIT_COMMIT_INFO = "
|
|
312995
|
-
var CLI_VERSION = "0.21.0-nightly.
|
|
312994
|
+
var GIT_COMMIT_INFO = "8feeffb29";
|
|
312995
|
+
var CLI_VERSION = "0.21.0-nightly.20251221.8feeffb29";
|
|
312996
312996
|
|
|
312997
312997
|
// packages/core/dist/src/ide/detect-ide.js
|
|
312998
312998
|
var IDE_DEFINITIONS = {
|
|
@@ -353218,8 +353218,9 @@ var EditToolInvocation = class extends BaseToolInvocation {
|
|
|
353218
353218
|
onConfirm: async (outcome) => {
|
|
353219
353219
|
if (outcome === ToolConfirmationOutcome.ProceedAlways) {
|
|
353220
353220
|
this.config.setApprovalMode(ApprovalMode.AUTO_EDIT);
|
|
353221
|
+
} else {
|
|
353222
|
+
await this.publishPolicyUpdate(outcome);
|
|
353221
353223
|
}
|
|
353222
|
-
await this.publishPolicyUpdate(outcome);
|
|
353223
353224
|
if (ideConfirmation) {
|
|
353224
353225
|
const result = await ideConfirmation;
|
|
353225
353226
|
if (result.status === "accepted" && result.content) {
|
|
@@ -355394,8 +355395,9 @@ var EditToolInvocation2 = class extends BaseToolInvocation {
|
|
|
355394
355395
|
onConfirm: async (outcome) => {
|
|
355395
355396
|
if (outcome === ToolConfirmationOutcome.ProceedAlways) {
|
|
355396
355397
|
this.config.setApprovalMode(ApprovalMode.AUTO_EDIT);
|
|
355398
|
+
} else {
|
|
355399
|
+
await this.publishPolicyUpdate(outcome);
|
|
355397
355400
|
}
|
|
355398
|
-
await this.publishPolicyUpdate(outcome);
|
|
355399
355401
|
if (ideConfirmation) {
|
|
355400
355402
|
const result = await ideConfirmation;
|
|
355401
355403
|
if (result.status === "accepted" && result.content) {
|
|
@@ -361798,8 +361800,9 @@ var WriteFileToolInvocation = class extends BaseToolInvocation {
|
|
|
361798
361800
|
onConfirm: async (outcome) => {
|
|
361799
361801
|
if (outcome === ToolConfirmationOutcome.ProceedAlways) {
|
|
361800
361802
|
this.config.setApprovalMode(ApprovalMode.AUTO_EDIT);
|
|
361803
|
+
} else {
|
|
361804
|
+
await this.publishPolicyUpdate(outcome);
|
|
361801
361805
|
}
|
|
361802
|
-
await this.publishPolicyUpdate(outcome);
|
|
361803
361806
|
if (ideConfirmation) {
|
|
361804
361807
|
const result = await ideConfirmation;
|
|
361805
361808
|
if (result.status === "accepted" && result.content) {
|
|
@@ -367067,8 +367070,9 @@ ${textContent2}
|
|
|
367067
367070
|
onConfirm: async (outcome) => {
|
|
367068
367071
|
if (outcome === ToolConfirmationOutcome.ProceedAlways) {
|
|
367069
367072
|
this.config.setApprovalMode(ApprovalMode.AUTO_EDIT);
|
|
367073
|
+
} else {
|
|
367074
|
+
await this.publishPolicyUpdate(outcome);
|
|
367070
367075
|
}
|
|
367071
|
-
await this.publishPolicyUpdate(outcome);
|
|
367072
367076
|
}
|
|
367073
367077
|
};
|
|
367074
367078
|
return confirmationDetails;
|