feat(communication): housekeeping hotel alert + dashboard + audit log

Outgoing 9127-9129: send-hotel-alert (message string), get-dashboard
(no args), list-action-log (limit int).

Incoming 9206 HousekeepingDashboardEvent + 9207 ActionLogEvent with
matching parsers and data classes. Dashboard is a flat one-shot
parse — no count prefix; action log uses the standard "count + N
entries" list pattern.

Closes the HK packet surface — yarn compile:fast clean.
This commit is contained in:
simoleo89
2026-05-24 11:52:41 +02:00
committed by simoleo89
parent 386bf79ddc
commit 5dd5b26bbe
14 changed files with 212 additions and 4 deletions
@@ -545,4 +545,7 @@ export class OutgoingHeader
public static HOUSEKEEPING_GIVE_CURRENCY = 9118;
public static HOUSEKEEPING_GRANT_ITEM = 9119;
public static HOUSEKEEPING_SET_HC_SUBSCRIPTION = 9120;
public static HOUSEKEEPING_SEND_HOTEL_ALERT = 9121;
public static HOUSEKEEPING_GET_DASHBOARD = 9122;
public static HOUSEKEEPING_LIST_ACTION_LOG = 9123;
}