mbus-backend
    Preparing search index...

    Type Alias RemindersToTrigger

    result of ReminderSubscriptons.process

    type RemindersToTrigger = {
        atTheStop: Map<Key<BaseEvent>, Set<RegistrationToken>>;
        delayed: Map<Key<DelayEvent>, Set<RegistrationToken>>;
        disappeared: Map<Key<BaseEvent>, Set<RegistrationToken>>;
        reminder: Map<Key<ThresholdEvent>, Set<RegistrationToken>>;
        updated: Set<RegistrationToken>;
    }
    Index
    atTheStop: Map<Key<BaseEvent>, Set<RegistrationToken>>

    can be sent in bulk based off of what route and stop

    delayed: Map<Key<DelayEvent>, Set<RegistrationToken>>

    can be sent in bulk based off of route, stop, delay amount, arrival time (or vid?)

    disappeared: Map<Key<BaseEvent>, Set<RegistrationToken>>

    can be sent in bulk based off of route and stop

    reminder: Map<Key<ThresholdEvent>, Set<RegistrationToken>>

    can be sent in bulk based off of route, stop, and threshold (or route, stop, and prdctdn)

    updated: Set<RegistrationToken>