@agent-os-sdk/client 0.9.24 → 0.9.25

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.
@@ -11642,12 +11642,20 @@ export interface components {
11642
11642
  /** Format: uuid */
11643
11643
  agent_id?: string;
11644
11644
  /** Format: uuid */
11645
+ bundle_id?: string;
11646
+ /** Format: uuid */
11645
11647
  thread_id?: string | null;
11646
11648
  status?: string | null;
11647
11649
  /** Format: date-time */
11648
11650
  created_at?: string;
11649
11651
  /** Format: date-time */
11652
+ started_at?: string | null;
11653
+ /** Format: date-time */
11650
11654
  completed_at?: string | null;
11655
+ /** Format: int32 */
11656
+ attempt_count?: number;
11657
+ /** Format: int32 */
11658
+ current_attempt_no?: number | null;
11651
11659
  };
11652
11660
  RunListResponse: {
11653
11661
  items?: components["schemas"]["RunListItem"][] | null;