@playlive/tiltify-search
    Preparing search index...

    Interface RewardHit

    A reward hit as returned by the public rewards Meilisearch index. Tiltify does not document the schema; the shape here mirrors what the marketing site consumes. Treat unknown fields as best-effort.

    interface RewardHit {
        active?: boolean;
        amount?: number;
        campaign_public_id?: string;
        cause_public_id?: string;
        currency?: string;
        description?: string;
        ends_at?: string | null;
        fundraising_event_public_id?: string;
        id: string;
        image?: { alt?: string | null; src: string } | null;
        name?: string;
        public_id?: string;
        quantity?: number | null;
        remaining?: number | null;
        starts_at?: string | null;
        team_public_id?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    active?: boolean
    amount?: number
    campaign_public_id?: string
    cause_public_id?: string
    currency?: string
    description?: string
    ends_at?: string | null
    fundraising_event_public_id?: string
    id: string
    image?: { alt?: string | null; src: string } | null
    name?: string
    public_id?: string
    quantity?: number | null
    remaining?: number | null
    starts_at?: string | null
    team_public_id?: string