You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
feat(communication): housekeeping rooms domain — 7 composers + 2 events
* Outgoing 9110-9116: find-room-by-id, search-rooms (exact|prefix), room-state (open|close toggle), mute-room, kick-all-from-room, transfer-room-ownership, delete-room. * Incoming 9202 HousekeepingRoomDetailEvent + 9203 RoomListEvent. * HousekeepingRoomData parser data class with the 11 IHousekeepingRoom fields. Single-room and list events share the same data class via composition. `yarn compile:fast` clean.
This commit is contained in:
@@ -534,4 +534,11 @@ export class OutgoingHeader
|
||||
public static HOUSEKEEPING_SET_USER_RANK = 9107;
|
||||
public static HOUSEKEEPING_TRADE_LOCK_USER = 9108;
|
||||
public static HOUSEKEEPING_RESET_USER_PASSWORD = 9109;
|
||||
public static HOUSEKEEPING_FIND_ROOM_BY_ID = 9110;
|
||||
public static HOUSEKEEPING_SEARCH_ROOMS = 9111;
|
||||
public static HOUSEKEEPING_ROOM_STATE = 9112;
|
||||
public static HOUSEKEEPING_MUTE_ROOM = 9113;
|
||||
public static HOUSEKEEPING_KICK_ALL_FROM_ROOM = 9114;
|
||||
public static HOUSEKEEPING_TRANSFER_ROOM_OWNERSHIP = 9115;
|
||||
public static HOUSEKEEPING_DELETE_ROOM = 9116;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user