feat: ship agent-first mission control v0.2.57
This commit is contained in:
@@ -6,17 +6,26 @@ public sealed record IncidentSummary(
|
||||
string? Date,
|
||||
string Severity,
|
||||
string Excerpt,
|
||||
long Size);
|
||||
long Size,
|
||||
string SourceAgentId,
|
||||
string WorkspacePath);
|
||||
|
||||
public sealed record IncidentDetail(
|
||||
string Name,
|
||||
string Title,
|
||||
string? Date,
|
||||
string Content,
|
||||
long Size);
|
||||
long Size,
|
||||
string SourceAgentId,
|
||||
string WorkspacePath);
|
||||
|
||||
public interface IIncidentService
|
||||
{
|
||||
Task<IReadOnlyList<IncidentSummary>> GetAllAsync();
|
||||
Task<IncidentDetail?> GetByNameAsync(string name);
|
||||
Task<IReadOnlyList<IncidentSummary>> GetAllAsync(
|
||||
string agentId = "iris",
|
||||
CancellationToken cancellationToken = default);
|
||||
Task<IncidentDetail?> GetByNameAsync(
|
||||
string name,
|
||||
string agentId = "iris",
|
||||
CancellationToken cancellationToken = default);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user