feat(communication): housekeeping mute-user + kick-user composers

OutgoingHeader 9104 HousekeepingMuteUserComposer — (userId, reason,
minutes). 9105 HousekeepingKickUserComposer — (userId, reason). Both
ride the existing HousekeepingActionResultEvent for the ack, so no
new parser is needed.

vitest 138/138, `yarn compile:fast` clean.
This commit is contained in:
simoleo89
2026-05-24 11:00:05 +02:00
committed by simoleo89
parent c9d8f32e62
commit 370b1fc100
5 changed files with 49 additions and 1 deletions
@@ -528,4 +528,6 @@ export class OutgoingHeader
public static HOUSEKEEPING_FIND_USER_BY_ID = 9101;
public static HOUSEKEEPING_BAN_USER = 9102;
public static HOUSEKEEPING_UNBAN_USER = 9103;
public static HOUSEKEEPING_MUTE_USER = 9104;
public static HOUSEKEEPING_KICK_USER = 9105;
}