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

    Interface DonationFetchConfig

    Per-call options for donation fetchers (Tiltify + Twitch).

    interface DonationFetchConfig {
        addTestAlertFlag?: boolean;
        addTestTTSFlag?: boolean;
        cachingEnabled?: boolean;
        completedAfter?: string | null;
        completedBefore?: string | null;
    }
    Index
    addTestAlertFlag?: boolean

    Tiltify-only proxy flag that tells the downstream alerter to mark each donation as a test.

    addTestTTSFlag?: boolean

    Tiltify-only proxy flag that tells the downstream TTS to mark each donation as a test.

    cachingEnabled?: boolean

    When false the fetcher appends a cache-busting query param (legacy default behavior).

    completedAfter?: string | null

    ISO-8601 timestamp; only fetch donations completed strictly after this instant.

    completedBefore?: string | null

    ISO-8601 timestamp; only fetch donations completed strictly before this instant.