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

    Interface ListMoveTierOutput

    Move an issue between Pursue / Maybe / Skip sections of a curated list (#1107).

    interface ListMoveTierOutput {
        count: number;
        filePath: string;
        fromTier?: string;
        moved: boolean;
        reason?: string;
        toTier: Tier;
        url: string;
    }
    Index

    Properties

    count: number

    Number of matching entries moved. Should normally be 1; >1 means the list contained duplicate entries (all moved).

    filePath: string

    Fully-resolved file path that was inspected.

    fromTier?: string

    The tier the issue was moved out of, if it had one. Absent when not found or already in target.

    moved: boolean

    Whether anything moved (false when the URL isn't in the list, or it was already in the target tier).

    reason?: string

    Human-readable explanation when moved is false.

    toTier: Tier

    The target tier (always normalized to one of pursue/maybe/skip).

    url: string

    The issue URL that was searched for.