@oss-autopilot/core - v3.14.5
    Preparing search index...

    Interface BatchVerificationResult

    Per-item outcome of a batched verification run. Aligned by index with the input items. Error isolation: one item's failure lands as { error } and never aborts the batch, so a single NOT_FOUND (or transient network error) does not poison every other entry — unlike an aliased mega-query would.

    interface BatchVerificationResult {
        error?: unknown;
        params: VerifyIssueParams;
        verification?: IssueVerification;
    }
    Index

    Properties

    error?: unknown

    Present when fetchIssueVerification threw for this item.

    verification?: IssueVerification

    Present when verification succeeded for this item.