issue_tree
    Preparing search index...

    Interface Cache

    The whole cache: data store and resume journal in one object.

    interface Cache {
        commentsDone: string[];
        issues: Record<string, CachedIssue>;
        pendingExternalBlockers: PendingBlocker[];
        phase: ScanPhase;
        repos: Record<string, RepoState>;
        schemaVersion: number;
        updatedAt: string;
    }
    Index

    Properties

    commentsDone: string[]

    Issue keys whose comments have been fully fetched (phase-3 resume marker). Unique keys; order not significant.

    issues: Record<string, CachedIssue>
    pendingExternalBlockers: PendingBlocker[]
    phase: ScanPhase
    repos: Record<string, RepoState>
    schemaVersion: number
    updatedAt: string