cyberdesk 2.2.26 → 2.2.27
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.
|
@@ -921,7 +921,7 @@ export type RunResponseWithIncludes = {
|
|
|
921
921
|
* Notes:
|
|
922
922
|
* - If `file_inputs` are provided, existing input attachments are replaced.
|
|
923
923
|
* - Prior outputs, history, and output attachments are always cleared as part of retry.
|
|
924
|
-
* - Retry is only allowed for terminal runs (success, error, or cancelled).
|
|
924
|
+
* - Retry is only allowed for terminal runs (success, task_failed, error, or cancelled).
|
|
925
925
|
*/
|
|
926
926
|
export type RunRetry = {
|
|
927
927
|
/**
|
|
@@ -969,7 +969,7 @@ export type RunRetry = {
|
|
|
969
969
|
*/
|
|
970
970
|
release_session_after?: boolean | null;
|
|
971
971
|
};
|
|
972
|
-
export type RunStatus = 'scheduling' | 'running' | 'success' | 'cancelled' | 'error';
|
|
972
|
+
export type RunStatus = 'scheduling' | 'running' | 'success' | 'cancelled' | 'task_failed' | 'error';
|
|
973
973
|
/**
|
|
974
974
|
* Schema for updating a run
|
|
975
975
|
*/
|