pub const SELECT_WAITPOINT_TOKEN_BY_ID_SQL: &str = "SELECT token FROM ff_waitpoint_pending \
WHERE partition_key = ?1 AND waitpoint_id = ?2 LIMIT 1";Expand description
Point-read of a waitpoint’s HMAC token, used by the signal-bridge to authenticate signal-resume requests on SQLite deployments. Binds: 1=partition_key (i64), 2=waitpoint_id (BLOB).