internetarchive-ts - v0.1.0
    Preparing search index...

    Type Alias IaAdvancedSearchParamsBeta

    type IaAdvancedSearchParams = {
        cursor?: string;
        from?: number;
        output?: IaQueryOutput;
        page?: number;
        q: string;
        rows?: number;
        scope?: IaScope;
        scroll?: boolean;
        size?: number;
        total_only?: boolean;
        [key: `sort[${string}]` | `sort[${number}]`]: string;
        [key: `fl[${string}]` | `fl[${number}]`]: string;
    }

    Indexable

    • [key: `sort[${string}]` | `sort[${number}]`]: string
    • [key: `fl[${string}]` | `fl[${number}]`]: string
    Index

    Properties

    cursor?: string
    from?: number
    output?: IaQueryOutput
    page?: number
    q: string
    rows?: number
    scope?: IaScope

    The scope of the query. Possible values are 'standard' or 'all'. The 'all' scope requires authorization

    scroll?: boolean
    size?: number

    Specifies how many results to return per page, positive integer

    100

    10000

    total_only?: boolean