Riksdagsmonitor Intelligence Platform - v0.7.19
    Preparing search index...

    Interface OrchestratorResult

    Aggregate result produced by the orchestrator after running all pipelines.

    interface OrchestratorResult {
        allSucceeded: boolean;
        totalFiles: number;
        results: Record<string, PipelineResult>;
        warnings: string[];
        durationMs: number;
    }
    Index

    Properties

    allSucceeded: boolean

    true when every pipeline in the run reported success.

    totalFiles: number

    Total number of files written across all pipelines.

    results: Record<string, PipelineResult>

    Individual results keyed by pipeline name.

    warnings: string[]

    Warnings collected across all pipelines.

    durationMs: number

    Total wall-clock time for the orchestrator run (ms).