RepositoryErrors

Represents errors related to a particular repository and its entities

interface RepositoryErrors {
    branches?: EntityError[];
    commits?: EntityError[];
    errorMessages?: ({
        errorTraceId?: string;
        message: string;
    } & {
        [key: string]: unknown;
    })[];
    pullRequests?: EntityError[];
}

Hierarchy

  • Record<string, unknown>
    • RepositoryErrors

Properties

branches?: EntityError[]

Branches errors

commits?: EntityError[]

Commits errors

errorMessages?: ({
    errorTraceId?: string;
    message: string;
} & {
    [key: string]: unknown;
})[]

Repository errors

pullRequests?: EntityError[]

Pull requests errors