@dyyz1993/pi-coding-agent 0.74.11 → 0.74.12

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.
@@ -528,6 +528,7 @@ export class AgentSession {
528
528
  toolCallId: event.toolCallId,
529
529
  toolName: event.toolName,
530
530
  args: event.args,
531
+ timestamp: event.timestamp,
531
532
  };
532
533
  await this._extensionRunner.emit(extensionEvent);
533
534
  }
@@ -548,6 +549,8 @@ export class AgentSession {
548
549
  toolName: event.toolName,
549
550
  result: event.result,
550
551
  isError: event.isError,
552
+ timestamp: event.timestamp,
553
+ durationMs: event.durationMs,
551
554
  };
552
555
  await this._extensionRunner.emit(extensionEvent);
553
556
  }