Member Junction
    Preparing search index...

    Interface ProviderSearchResult

    Result from a single provider's search attempt

    interface ProviderSearchResult {
        errorMessage?: string;
        hasMore: boolean;
        nextPageToken?: string;
        providerID: string;
        providerName: string;
        results: FileSearchResult[];
        success: boolean;
        totalMatches?: number;
    }
    Index

    Properties

    errorMessage?: string

    Error message if search failed or provider doesn't support search

    hasMore: boolean

    Whether there are more results available

    nextPageToken?: string

    Pagination token for this provider

    providerID: string

    Provider ID

    providerName: string

    Provider name for display

    results: FileSearchResult[]

    Search results (empty array if failed)

    success: boolean

    Whether this provider's search succeeded

    totalMatches?: number

    Total matches from this provider