@playlive/fundraiser-data
    Preparing search index...

    Interface FetchDonorSpotlightParams

    Params for fetchDonorSpotlight.

    interface FetchDonorSpotlightParams {
        campaignId: string;
        isTeam?: boolean;
        live?: boolean;
        signal?: AbortSignal;
    }
    Index
    campaignId: string

    Tiltify campaign ID whose spotlight to fetch.

    isTeam?: boolean

    Pass true to aggregate over a team campaign.

    live?: boolean

    When true, requests the currently-in-progress spotlight (?live=true). When false (default), requests the last-computed spotlight (?last=true) — useful for post-event snapshots.

    signal?: AbortSignal

    Cancel on React unmount / other lifecycle events.