@book000/pixivts - v0.61.1
    Preparing search index...

    Interface NovelSearchParams

    Parameters for searching novels.

    interface NovelSearchParams {
        duration?: "within_last_day" | "within_last_week" | "within_last_month";
        endDate?: string;
        filter?: "for_ios" | "for_android";
        offset?: number;
        searchAiType?: 0 | 1;
        searchTarget?:
            | "partial_match_for_tags"
            | "exact_match_for_tags"
            | "title_and_caption"
            | "keyword";
        sort?: "date_desc"
        | "date_asc"
        | "popular_desc";
        startDate?: string;
        word: string;
    }
    Index

    Properties

    duration?: "within_last_day" | "within_last_week" | "within_last_month"

    Date range preset filter (omit for no restriction).

    endDate?: string

    End date for a custom date range (YYYY-MM-DD; requires startDate).

    filter?: "for_ios" | "for_android"

    OS filter to apply (default: "for_ios").

    offset?: number

    Zero-based offset for pagination.

    searchAiType?: 0 | 1

    AI-generated content filter: 0 = hide AI works, 1 = show only AI works.

    searchTarget?:
        | "partial_match_for_tags"
        | "exact_match_for_tags"
        | "title_and_caption"
        | "keyword"

    How to match the keyword against works (default: "partial_match_for_tags").

    sort?: "date_desc" | "date_asc" | "popular_desc"

    Sort order for results (default: "date_desc").

    startDate?: string

    Start date for a custom date range (YYYY-MM-DD; requires endDate).

    word: string

    Search keyword.