feat(orchestrator): observe Page Data validation
This commit is contained in:
@@ -460,6 +460,25 @@ export type OrchestratorShadowRunDetail = {
|
||||
phase?: string;
|
||||
plan?: Record<string, unknown>;
|
||||
result?: Record<string, unknown>;
|
||||
validation?: {
|
||||
version?: string;
|
||||
kind?: string;
|
||||
taskType?: string | null;
|
||||
required?: boolean;
|
||||
verdict?: 'passed' | 'failed' | 'inconclusive';
|
||||
checks?: Array<{
|
||||
id?: string;
|
||||
status?: 'passed' | 'failed' | 'skipped';
|
||||
codes?: string[];
|
||||
}>;
|
||||
metrics?: {
|
||||
pageCount?: number;
|
||||
publicationCount?: number;
|
||||
};
|
||||
source?: string;
|
||||
dataPolicy?: string;
|
||||
observedAt?: number;
|
||||
} | null;
|
||||
} | null;
|
||||
events: Array<{
|
||||
sequence?: number;
|
||||
|
||||
Reference in New Issue
Block a user