@ctrl/plex
    Preparing search index...

    Interface WatchlistOptions

    interface WatchlistOptions {
        filter?: WatchlistFilter;
        filters?: Readonly<Record<string, boolean | number | string>>;
        includeCollections?: boolean;
        includeExternalMedia?: boolean;
        limit?: number;
        sort?:
            | "titleSort:asc"
            | "titleSort:desc"
            | "originallyAvailableAt:asc"
            | "originallyAvailableAt:desc"
            | "rating:asc"
            | "rating:desc"
            | "watchlistedAt:asc"
            | "watchlistedAt:desc";
        type?: "movie"
        | "show";
    }
    Index
    filters?: Readonly<Record<string, boolean | number | string>>

    Provider-specific filters not covered by the common options.

    includeCollections?: boolean
    includeExternalMedia?: boolean
    limit?: number
    sort?:
        | "titleSort:asc"
        | "titleSort:desc"
        | "originallyAvailableAt:asc"
        | "originallyAvailableAt:desc"
        | "rating:asc"
        | "rating:desc"
        | "watchlistedAt:asc"
        | "watchlistedAt:desc"
    type?: "movie" | "show"