agent-afk 5.92.0 → 5.92.1

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.
@@ -1,9 +1,10 @@
1
- import type { TraceWriter } from '../../../trace/index.js';
1
+ import type { TraceWriter } from '../../trace/index.js';
2
2
  export declare class TurnTrace {
3
3
  private readonly signal;
4
4
  private readonly traceWriter;
5
+ private readonly provider;
5
6
  private interruptedAt;
6
- constructor(signal: AbortSignal, traceWriter: TraceWriter | undefined);
7
+ constructor(signal: AbortSignal, traceWriter: TraceWriter | undefined, provider: 'anthropic-direct' | 'openai-compatible');
7
8
  private readonly onInterrupt;
8
9
  finish(turnElapsedMs: number): void;
9
10
  }
@@ -84,6 +84,7 @@ export declare class SessionToolDispatcher implements ToolDispatcher {
84
84
  private recordForkReadDenial;
85
85
  private resetDenialBreaker;
86
86
  private runCanUseTool;
87
+ private runPreDispatchGates;
87
88
  execute(call: ToolCall): Promise<ToolResult>;
88
89
  executeBatch(calls: ToolCall[]): Promise<ToolResult[]>;
89
90
  private executeCore;