feat: ship agent-first mission control v0.2.57
This commit is contained in:
@@ -32,6 +32,13 @@ public interface ITaskService
|
||||
|
||||
// Task Board
|
||||
Task<BoardResponse> GetBoardAsync(CancellationToken ct = default);
|
||||
Task<TaskBoardPageDto> GetBoardPageAsync(
|
||||
int doneLimit = 50,
|
||||
string? doneCursor = null,
|
||||
CancellationToken ct = default);
|
||||
Task<TaskBoardCardDto?> GetBoardCardAsync(
|
||||
Guid id,
|
||||
CancellationToken ct = default);
|
||||
Task<TaskOperationResult> MoveTaskAsync(Guid id, string newState, CancellationToken ct = default);
|
||||
Task<int> ResetStaleAsync(int staleHours, CancellationToken ct = default);
|
||||
Task<int> ResetStaleInProgressTasksAsync(TimeSpan staleThreshold, CancellationToken ct = default);
|
||||
|
||||
Reference in New Issue
Block a user