This commit is contained in:
Louis Knight-Webb
2025-06-20 22:39:06 +01:00
parent f777b438f5
commit 9c06c7fab3
18 changed files with 1129 additions and 209 deletions

View File

@@ -40,7 +40,7 @@ export type TaskAttempt = { id: string, task_id: string, worktree_path: string,
export type CreateTaskAttempt = { task_id: string, worktree_path: string, merge_commit: string | null, executor: string | null, };
export type UpdateTaskAttempt = { worktree_path: string | null, merge_commit: string | null, };
export type UpdateTaskAttempt = Record<string, never>;
export type TaskAttemptActivity = { id: string, task_attempt_id: string, status: TaskAttemptStatus, note: string | null, created_at: string, };