feat(FN-4640): complete Step 6 — dashboard sandbox audit surface
Fusion-Task-Id: FN-4640 Fusion-Task-Lineage: 4a91265f-1714-4854-b08d-7ddb06074253
This commit is contained in:
committed by
gsxdsm
parent
e4769ea889
commit
ad73d76586
@@ -5021,7 +5021,7 @@ export function stopAgentRun(
|
||||
// ── Run-Audit & Timeline API ────────────────────────────────────────────────
|
||||
|
||||
/** Valid domain filters for run-audit queries. */
|
||||
export type RunAuditDomainFilter = "database" | "git" | "filesystem";
|
||||
export type RunAuditDomainFilter = "database" | "git" | "filesystem" | "sandbox";
|
||||
|
||||
/** Filter options for run-audit queries. */
|
||||
export interface RunAuditFilters {
|
||||
@@ -5042,7 +5042,7 @@ export interface NormalizedRunAuditEvent {
|
||||
id: string;
|
||||
timestamp: string;
|
||||
taskId?: string;
|
||||
domain: "database" | "git" | "filesystem";
|
||||
domain: "database" | "git" | "filesystem" | "sandbox";
|
||||
mutationType: string;
|
||||
target: string;
|
||||
summary: string;
|
||||
@@ -5086,6 +5086,7 @@ export interface RunTimelineResponse {
|
||||
database: NormalizedRunAuditEvent[];
|
||||
git: NormalizedRunAuditEvent[];
|
||||
filesystem: NormalizedRunAuditEvent[];
|
||||
sandbox: NormalizedRunAuditEvent[];
|
||||
};
|
||||
counts: {
|
||||
auditEvents: number;
|
||||
|
||||
Reference in New Issue
Block a user