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

    Interface FactHit

    A single hit on the public facts Meilisearch index — the union of every field the Tiltify site exposes per record. Loose by design: Tiltify evolves this schema without versioning.

    interface FactHit {
        amount_raised: number;
        auction_eligible: boolean;
        avatar: Avatar | null;
        campaign_fact_public_id?: string;
        cause_avatar?: Avatar | null;
        cause_fact_public_id: string;
        cause_name: string;
        cause_public_id: string;
        cause_slug: string;
        clean_name: string;
        country: string;
        currency: string;
        description: string;
        fact_avatar: Avatar | null;
        fee_amount: boolean;
        fundraising_event_public_id?: string;
        goal: number;
        goal_ratio: number;
        id: string;
        is_campaign: boolean;
        last_donation_at_utc: number;
        live: boolean;
        live_at_utc: number;
        match_count: number;
        milestone_ratio: number;
        name: string;
        parent_clean_name: string;
        parent_name: string;
        plan_tier: number;
        promoted: boolean;
        promoted_at_utc: number;
        public: boolean;
        published: boolean;
        published_at_utc: number;
        region_id: string | null;
        region_public_id: string | null;
        required_fee: boolean;
        required_registration: boolean;
        retired_at_utc: number;
        short_description?: string;
        sort_name: string;
        status: string;
        supportable: boolean;
        supporting_fundraising_event: boolean;
        team_avatar?: Avatar | null;
        team_event_public_id?: string;
        team_name?: string;
        team_public_id?: string;
        total_amount_raised: number;
        type: string;
        url: string;
        user_auction_house: string | null;
        user_avatar: Avatar;
        username: string;
    }
    Index
    amount_raised: number
    auction_eligible: boolean
    avatar: Avatar | null
    campaign_fact_public_id?: string
    cause_avatar?: Avatar | null
    cause_fact_public_id: string
    cause_name: string
    cause_public_id: string
    cause_slug: string
    clean_name: string
    country: string
    currency: string
    description: string
    fact_avatar: Avatar | null
    fee_amount: boolean
    fundraising_event_public_id?: string
    goal: number
    goal_ratio: number
    id: string
    is_campaign: boolean
    last_donation_at_utc: number
    live: boolean
    live_at_utc: number
    match_count: number
    milestone_ratio: number
    name: string
    parent_clean_name: string
    parent_name: string
    plan_tier: number
    promoted: boolean
    promoted_at_utc: number
    public: boolean
    published: boolean
    published_at_utc: number
    region_id: string | null
    region_public_id: string | null
    required_fee: boolean
    required_registration: boolean
    retired_at_utc: number
    short_description?: string
    sort_name: string
    status: string
    supportable: boolean
    supporting_fundraising_event: boolean
    team_avatar?: Avatar | null
    team_event_public_id?: string
    team_name?: string
    team_public_id?: string
    total_amount_raised: number
    type: string
    url: string
    user_auction_house: string | null
    user_avatar: Avatar
    username: string