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

    Interface VerifiedLinkedPR

    interface VerifiedLinkedPR {
        author: string | null;
        isDraft: boolean;
        isOwn: boolean;
        linkType: LinkedPRLinkType;
        number: number;
        state: "closed" | "open" | "merged";
        title: string;
        updatedAt: string | null;
        url: string;
    }
    Index

    Properties

    author: string | null

    PR author login; null for ghost (deleted) accounts.

    isDraft: boolean
    isOwn: boolean

    True when the PR author is the authenticated user (case-insensitive).

    closing = the PR's closingIssuesReferences names this issue (a real claim). cross-referenced = timeline mention only (NOT a claim).

    number: number
    state: "closed" | "open" | "merged"

    Lowercase normalization of GraphQL's OPEN/CLOSED/MERGED union.

    title: string
    updatedAt: string | null
    url: string