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

    Function fetchTiltifyCurrentEvents

    • Fetch the cause-level list of current fundraising events (first 100).

      Wraps tiltify.GetCurrentEvents(), which reads public/causes/{causeId}/fundraising_events?limit=100 — i.e. every event Tiltify still lists for the St. Jude cause, published or not, across every year. Callers that want only the in-flight Play Live season should pipe the result through import("../projections").selectCurrentFundraisingEvents.

      Errors are swallowed to [], matching the sibling list fetchers (fetchTiltifyEventCampaigns, fetchTiltifyMilestones) — an event picker that can't reach Tiltify should render empty, not throw.

      Returns Promise<TiltifyFundraisingEvent[]>

      Every fundraising event Tiltify returns for the configured cause, in Tiltify's own order. Empty array on any failure.

      https://v5api.tiltify.com/api/public/openapi (operation getCauseFundraisingEvents)

      const events = await fetchTiltifyCurrentEvents();
      const thisSeason = selectCurrentFundraisingEvents(events);