show timed_out tasks in history (#395)

This commit is contained in:
Salih Altun
2024-05-30 21:49:15 +03:00
committed by GitHub
parent e2259e94cf
commit fdd127a202
3 changed files with 7 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ export const Status = {
Terminated: "terminated",
Completed: "completed",
Queued: "queued",
TimedOut: "timed_out",
} as const;
export type Status = (typeof Status)[keyof typeof Status];