@hysc/meeting 2.6.54 → 2.6.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,8 +15,9 @@ export default class BMChatVM {
15
15
  * 发送聊天消息
16
16
  * @param talkMsg 聊天信息
17
17
  */
18
- sendMessage(talkMsg: string, userId: string | undefined): Promise<void>;
18
+ sendMessage(talkMsg: string, userId: string | undefined, lostNet: boolean): Promise<void>;
19
19
  addMessage(info: BMMessageInfo, isParticipantNotice: boolean): void;
20
+ updateMessageListWatcher(messageList: Array<BMMessageInfo>): void;
20
21
  /**
21
22
  * 获取历史消息
22
23
  */
@@ -501,7 +501,7 @@ export default class BMRoom {
501
501
  * 发送聊天室消息
502
502
  * @param msg
503
503
  */
504
- sendChatMessage(msg: string, userId: string | undefined): Promise<any>;
504
+ sendChatMessage(msg: string, userId: string | undefined, lostNet: boolean): Promise<any>;
505
505
  /**
506
506
  * 获取聊天室消息
507
507
  */