Files
Nitro_Render_V3/packages/communication/src/messages/incoming/housekeeping/HousekeepingRoomDetailEvent.ts
T
simoleo89 597cd2402f 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.
2026-05-24 16:26:07 +02:00

17 lines
476 B
TypeScript

import { IMessageEvent } from '@nitrots/api';
import { MessageEvent } from '@nitrots/events';
import { HousekeepingRoomDetailParser } from '../../parser';
export class HousekeepingRoomDetailEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, HousekeepingRoomDetailParser);
}
public getParser(): HousekeepingRoomDetailParser
{
return this.parser as HousekeepingRoomDetailParser;
}
}