Skip to main content

Features

Public A/B props read API (#1539) Applications can now watch and read boolean A/B props the library doesn’t already consume, so a server gate like AURA_PINNED_CHATS_BENEFIT_ACTIVE (the WhatsApp Plus pinned-chats limit) is reachable from user code. Previously the props cache kept only flags in the library’s internal WATCHED set and dropped everything else while the catalog streamed in, so an application had no way to learn a server gate it cared about. New builder methods and client accessor:
The cache exposes the underlying truthy parsing as AbPropsCache::get_bool, which is_enabled now reuses so both paths agree on what counts as "1", "true", or "enabled".