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

    Interface CauseOrEventFilterableFields

    Filterable fields observed on the causes, fundraising_events, and combined causes_and_fes indices. Reflects the filters the Tiltify site itself sends (e.g. public = true, type != team_event).

    interface CauseOrEventFilterableFields {
        cause_fact_public_id?: string;
        cause_public_id?: string;
        fundraising_event_public_id?: string;
        name?: string;
        public?: boolean;
        slug?: string;
        status?: string;
        supportable?: boolean;
        type?: string;
        [key: string]: string | number | boolean | undefined;
    }

    Indexable

    • [key: string]: string | number | boolean | undefined
    Index
    cause_fact_public_id?: string
    cause_public_id?: string
    fundraising_event_public_id?: string
    name?: string
    public?: boolean
    slug?: string
    status?: string
    supportable?: boolean
    type?: string