markmv - v1.39.2
    Preparing search index...

    Interface ContentFreshnessInfo

    Information about content freshness.

    interface ContentFreshnessInfo {
        url: string;
        isFresh: boolean;
        lastModified?: Date;
        ageMs?: number;
        thresholdMs: number;
        stalePatterns: string[];
        contentHash?: string;
        previousContentHash?: string;
        hasContentChanged?: boolean;
        warning?: string;
        suggestion?: string;
    }
    Index
    url: string

    URL being checked

    isFresh: boolean

    Whether content is considered fresh

    lastModified?: Date

    Last modified date if available

    ageMs?: number

    Age of content in milliseconds

    thresholdMs: number

    Staleness threshold that was applied

    stalePatterns: string[]

    Detected stale patterns in content

    contentHash?: string

    Content hash for change detection

    previousContentHash?: string

    Previous content hash if available

    hasContentChanged?: boolean

    Whether content has significantly changed

    warning?: string

    Warning message if content appears stale

    suggestion?: string

    Suggestion for addressing staleness