@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.
- package/dist/generated/openapi.d.ts +8 -0
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/modules/runs.d.ts +51 -0
- package/dist/modules/runs.d.ts.map +1 -1
- package/dist/modules/runs.js +10 -0
- package/package.json +1 -1
- package/src/generated/openapi.ts +8 -0
- package/src/generated/swagger.json +18 -0
- package/src/modules/runs.ts +64 -0
|
@@ -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;
|