@oss-autopilot/core - v3.14.5
    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. Also populated on the already-in-target no-op; absent when the source block sat under no tier header.

    moved: boolean

    Whether anything moved (false only when the entry was already in the target tier — a URL missing from the list entirely throws instead, #1355).

    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.