feat(communication): housekeeping set-rank + trade-lock + reset-password composers

Three composers closing out the users-domain HK actions:
* OutgoingHeader 9107 HousekeepingSetUserRankComposer (userId, rankId)
* OutgoingHeader 9108 HousekeepingTradeLockUserComposer (userId, hours, reason)
* OutgoingHeader 9109 HousekeepingResetUserPasswordComposer (userId)

All three ride the existing HousekeepingActionResultEvent for the ack.
This commit is contained in:
simoleo89
2026-05-24 11:17:47 +02:00
committed by simoleo89
parent fbe8a02a72
commit c6c6cfe04b
6 changed files with 73 additions and 1 deletions
@@ -531,4 +531,7 @@ export class OutgoingHeader
public static HOUSEKEEPING_MUTE_USER = 9104;
public static HOUSEKEEPING_KICK_USER = 9105;
public static HOUSEKEEPING_FORCE_DISCONNECT_USER = 9106;
public static HOUSEKEEPING_SET_USER_RANK = 9107;
public static HOUSEKEEPING_TRADE_LOCK_USER = 9108;
public static HOUSEKEEPING_RESET_USER_PASSWORD = 9109;
}