nexus-agents - v2.80.0
    Preparing search index...

    Interface ScmPullRequestDetail

    Extended PR with file diffs and stats. Used by IScmReviewer.

    interface ScmPullRequestDetail {
        number: number;
        title: string;
        body: string;
        author: string;
        base: string;
        head: string;
        url: string;
        draft: boolean;
        authorAssociation: string;
        labels: readonly string[];
        files: readonly ScmFileChange[];
        additions: number;
        deletions: number;
        headSha: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    number: number
    title: string
    body: string
    author: string
    base: string
    head: string
    url: string
    draft: boolean
    authorAssociation: string
    labels: readonly string[]
    files: readonly ScmFileChange[]
    additions: number
    deletions: number
    headSha: string