@rongcloud/engine 4.5.1 → 4.5.2

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.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
- * RCEngine - v4.5.1
3
- * CommitId - 54768e91ebac53c7cb4ee3239563db82ff1dffcc
4
- * Thu Nov 04 2021 11:41:16 GMT+0800 (China Standard Time)
2
+ * RCEngine - v4.5.2
3
+ * CommitId - ba81ca4a531f2c59a5e2f0cecb5e05aab7e03210
4
+ * Thu Nov 25 2021 10:37:04 GMT+0800 (China Standard Time)
5
5
  * ©2020 RongCloud, Inc. All rights reserved.
6
6
  */
7
7
  /**
@@ -365,6 +365,13 @@ interface IConversationOption {
365
365
  targetId: string;
366
366
  channelId?: string;
367
367
  }
368
+ interface IServerRTCRoomEntry {
369
+ key: string;
370
+ value: string;
371
+ status: number;
372
+ timestamp: number;
373
+ uid: string;
374
+ }
368
375
  interface IChrmKVEntry {
369
376
  key: string;
370
377
  value?: string;
@@ -432,13 +439,6 @@ interface IGetConversationListOption {
432
439
  interface IClearMsgOption {
433
440
  timestamp?: number;
434
441
  }
435
- interface IServerRTCRoomEntry {
436
- key: string;
437
- value: string;
438
- status: number;
439
- timestamp: number;
440
- uid: string;
441
- }
442
442
 
443
443
  /**
444
444
  * 聊天室 kv 存储操作类型. 对方操作, 己方收到消息(RC:chrmKVNotiMsg)中会带入此值. 根据此值判断是删除还是更新
@@ -2306,6 +2306,7 @@ interface IJoinRTCRoomData extends IRTCUsers {
2306
2306
  key: string;
2307
2307
  value: string;
2308
2308
  }[];
2309
+ kvEntries: IServerRTCRoomEntry[];
2309
2310
  }
2310
2311
 
2311
2312
  /**