@relayfx/sdk 0.6.1 → 0.7.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.
@@ -527,6 +527,7 @@ __export2(exports_execution_schema, {
527
527
  ExecutionEventSequence: () => ExecutionEventSequence,
528
528
  ExecutionEvent: () => ExecutionEvent,
529
529
  Execution: () => Execution,
530
+ CompactionStartedEventData: () => CompactionStartedEventData,
530
531
  CompactionCommittedEventData: () => CompactionCommittedEventData,
531
532
  ChildRunPreset: () => ChildRunPreset2,
532
533
  ChildRunOverride: () => ChildRunOverride,
@@ -675,6 +676,7 @@ var ExecutionEventType = Schema7.Literals([
675
676
  "model.toolcall.delta",
676
677
  "model.output.completed",
677
678
  "model.usage.reported",
679
+ "agent.compaction.started",
678
680
  "agent.compaction.committed",
679
681
  "budget.exceeded",
680
682
  "tool.call.requested",
@@ -712,6 +714,10 @@ var ExecutionEventType = Schema7.Literals([
712
714
  "workspace.lease.released",
713
715
  "workspace.lease.failed"
714
716
  ]).annotate({ identifier: "Relay.ExecutionEventType" });
717
+ var CompactionStartedEventData = Schema7.Struct({
718
+ turn: Schema7.Finite,
719
+ overflow: Schema7.Boolean
720
+ }).annotate({ identifier: "Relay.CompactionStartedEventData" });
715
721
  var CompactionCommittedEventData = Schema7.Struct({
716
722
  checkpoint_id: SessionEntryId,
717
723
  session_id: SessionId,