@google/gemini-cli-a2a-server 0.52.0 → 0.53.0

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.
@@ -30,7 +30,9 @@ export declare class CoderAgentExecutor implements AgentExecutor {
30
30
  private initializationPromises;
31
31
  private explicitlyCanceledTasks;
32
32
  constructor(taskStore?: TaskStore | undefined);
33
- private getConfig;
33
+ private getConfigWithEnv;
34
+ private runInIsolatedEnv;
35
+ private cleanupAndEvictTask;
34
36
  /**
35
37
  * Reconstructs TaskWrapper from SDKTask.
36
38
  */
@@ -38,7 +40,6 @@ export declare class CoderAgentExecutor implements AgentExecutor {
38
40
  createTask(taskId: string, contextId: string, agentSettingsInput?: AgentSettings, eventBus?: ExecutionEventBus): Promise<TaskWrapper>;
39
41
  getTask(taskId: string): TaskWrapper | undefined;
40
42
  getAllTasks(): TaskWrapper[];
41
- private cleanupAndEvictTask;
42
43
  cancelTask: (taskId: string, eventBus: ExecutionEventBus) => Promise<void>;
43
44
  execute(requestContext: RequestContext, eventBus: ExecutionEventBus): Promise<void>;
44
45
  }