feat: ship agent-first mission control v0.2.57
This commit is contained in:
@@ -9,7 +9,7 @@ public sealed record DashboardAgentInfo(
|
||||
string? CurrentTask,
|
||||
string? Description,
|
||||
string[] Tags,
|
||||
int Progress = 0,
|
||||
double? Progress = null,
|
||||
int Workload = 0,
|
||||
string? Goal = null,
|
||||
string RoleBadge = "badge-slate",
|
||||
@@ -18,7 +18,10 @@ public sealed record DashboardAgentInfo(
|
||||
string? StatusDetail = null,
|
||||
string? Elapsed = null,
|
||||
string? Think = null,
|
||||
string? Next = null
|
||||
string? Next = null,
|
||||
long? TotalTokens = null,
|
||||
decimal? CostUsd = null,
|
||||
DateTimeOffset? TelemetryAt = null
|
||||
);
|
||||
|
||||
public sealed record MessageEntry(
|
||||
@@ -99,7 +102,9 @@ public sealed record DashboardTaskDto(
|
||||
List<DashboardTaskDto>? ChildTasks = null,
|
||||
int ChildTaskCount = 0,
|
||||
int OpenChildTaskCount = 0,
|
||||
bool HasVisibleDelegation = false
|
||||
bool HasVisibleDelegation = false,
|
||||
Guid? ProjectId = null,
|
||||
OperationResultDto? Operation = null
|
||||
);
|
||||
|
||||
public sealed record CreateDashboardTaskRequest(
|
||||
@@ -175,7 +180,8 @@ public sealed record ResetStaleRequest(
|
||||
);
|
||||
|
||||
public sealed record ResetStaleResponse(
|
||||
int ResetCount
|
||||
int ResetCount,
|
||||
OperationResultDto? Operation = null
|
||||
);
|
||||
|
||||
public sealed record PostActivityRequest(
|
||||
@@ -201,9 +207,14 @@ public sealed record AgentWorkflowOverview(
|
||||
|
||||
public sealed record NotificationDto(
|
||||
Guid Id, string Type, string Title, string? Message,
|
||||
string ForUser, Guid? TaskId, bool IsRead, DateTimeOffset CreatedAt
|
||||
string ForUser, Guid? TaskId, bool IsRead, DateTimeOffset CreatedAt,
|
||||
OperationResultDto? Operation = null
|
||||
);
|
||||
|
||||
public sealed record NotificationReadAllResultDto(
|
||||
int Marked,
|
||||
OperationResultDto Operation);
|
||||
|
||||
public sealed record UnreadCountDto(int Count);
|
||||
|
||||
public sealed record LiveUpdateEnvelope(
|
||||
|
||||
Reference in New Issue
Block a user