@rongcloud/engine 5.3.4 → 5.4.0-enterprise.1

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/index.d.ts CHANGED
@@ -962,7 +962,7 @@ interface ISendMsgOptions {
962
962
  interface IInsertMsgOptions {
963
963
  senderUserId: string;
964
964
  messageType: string;
965
- content: string;
965
+ content: any;
966
966
  messageDirection: number;
967
967
  readStatus?: number;
968
968
  sentStatus?: number;
@@ -3215,6 +3215,13 @@ interface IEngine {
3215
3215
  list: IReceivedMessage[];
3216
3216
  hasMore: boolean;
3217
3217
  }>;
3218
+ /**
3219
+ * 获取指定消息类型的历史消息
3220
+ */
3221
+ getHistoryMessagesByObjectNames(conversationType: ConversationType, targetId: string, timestamp: number, count: number, messageTypes: string[], order: number, channelId: string): Promise<IAsyncRes<{
3222
+ list: IReceivedMessage[];
3223
+ hasMore: boolean;
3224
+ }>>;
3218
3225
  /**
3219
3226
  * 删除历史消息 通过 messageUId
3220
3227
  */
@@ -3268,6 +3275,10 @@ interface IEngine {
3268
3275
  * 会话的业务标识
3269
3276
  */
3270
3277
  channelId?: string): IPromiseResult<IReceivedConversation[]>;
3278
+ /**
3279
+ * 分页获取会话列表,仅 electron中使用
3280
+ */
3281
+ getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): IPromiseResult<IReceivedConversation[]>;
3271
3282
  /**
3272
3283
  * 获取指定会话
3273
3284
  */
@@ -3319,7 +3330,7 @@ interface IEngine {
3319
3330
  * 批量设置会话 置顶、免打扰
3320
3331
  */
3321
3332
  batchSetConversationStatus(statusList: ISetConversationStatusOptions[]): Promise<ErrorCode>;
3322
- sendMessage(conversationType: ConversationType, targetId: string, options: ISendMsgOptions, onBefore?: (messageId: number) => void): IPromiseResult<IReceivedMessage>;
3333
+ sendMessage(conversationType: ConversationType, targetId: string, options: ISendMsgOptions, onBefore?: (messageId: number) => void, traceId?: string): IPromiseResult<IReceivedMessage>;
3323
3334
  /**
3324
3335
  * 断开连接
3325
3336
  */
@@ -3540,7 +3551,7 @@ interface IEngine {
3540
3551
  /**
3541
3552
  * 获取指定人员在黑名单中的状态
3542
3553
  */
3543
- getBlacklistStatus(userId: string): IPromiseResult<string>;
3554
+ getBlacklistStatus(userId: string): IPromiseResult<number>;
3544
3555
  /**
3545
3556
  * 向本地插入一条消息,不发送到服务器
3546
3557
  */
@@ -3548,7 +3559,7 @@ interface IEngine {
3548
3559
  /**
3549
3560
  * 删除本地消息
3550
3561
  */
3551
- deleteMessages(timestamps: number[]): Promise<ErrorCode>;
3562
+ deleteMessages(messageIds: number[]): Promise<ErrorCode>;
3552
3563
  /**
3553
3564
  * 通过时间戳删除本地消息
3554
3565
  */
@@ -3570,9 +3581,10 @@ interface IEngine {
3570
3581
  */
3571
3582
  setMessageSearchField(messageId: number, content: any, searchFiles: string): Promise<ErrorCode>;
3572
3583
  /**
3573
- * 通过关键字搜索会话
3584
+ * 通过关键字与 channelId 搜索所有会话
3574
3585
  */
3575
3586
  searchConversationByContent(keyword: string, customMessageTypes: string[], channelId: string, conversationTypes?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
3587
+ searchConversationByContentWithAllChannel(keyword: string, customMessageTypes: string[], conversationTypes?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
3576
3588
  /**
3577
3589
  * 按内容搜索会话内的消息
3578
3590
  */
@@ -3580,6 +3592,19 @@ interface IEngine {
3580
3592
  messages: IReceivedMessage[];
3581
3593
  count: number;
3582
3594
  }>;
3595
+ /**
3596
+ * 按内容搜索指定会话(不区分 channelId)的消息
3597
+ */
3598
+ searchMessageByContentWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, timestamp: number, count: number): IPromiseResult<{
3599
+ messages: IReceivedMessage[];
3600
+ count: number;
3601
+ }>;
3602
+ /**
3603
+ * 按内容搜索时间范围内指定会话(不区分 channelId)的消息
3604
+ */
3605
+ searchMessageByContentInTimeRangeWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, startTime: number, endTime: number, offset: number, limit: number): IPromiseResult<{
3606
+ messages: IReceivedMessage[];
3607
+ }>;
3583
3608
  /**
3584
3609
  * 获取会话下所有未读的 @ 消息
3585
3610
  */
@@ -3592,6 +3617,10 @@ interface IEngine {
3592
3617
  * 设置消息接收状态
3593
3618
  */
3594
3619
  setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<ErrorCode>;
3620
+ /**
3621
+ * 将自己发送的指定时间之前的消息标记对方已读,状态值为 SentStatus.READ
3622
+ */
3623
+ updateMessageReceiptStatus(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): IPromiseResult<boolean>;
3595
3624
  /**
3596
3625
  * 删除时间戳前的未读数
3597
3626
  */
@@ -3623,6 +3652,7 @@ interface IEngine {
3623
3652
  * 获取所有群聊会话 @ 消息未读数
3624
3653
  */
3625
3654
  getAllUnreadMentionedCount(): Promise<IAsyncRes<number>>;
3655
+ clearData(): Promise<IAsyncRes<boolean>>;
3626
3656
  joinRTCRoom(roomId: string, mode: RTCMode, broadcastType?: number, joinType?: RTCJoinType, innerUserDatas?: IRTCUserData, outerUserDatas?: IRTCUserData): IPromiseResult<IJoinRTCRoomData>;
3627
3657
  quitRTCRoom(roomId: string): Promise<ErrorCode>;
3628
3658
  rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<ErrorCode>;
@@ -4646,11 +4676,19 @@ declare class APIContext {
4646
4676
  list: IReceivedMessage[];
4647
4677
  hasMore: boolean;
4648
4678
  }>>;
4679
+ getHistoryMessagesByObjectNames(conversationType: ConversationType, targetId: string, timestamp: number, count: number, messageTypes: string[], order: number, channelId: string): Promise<IAsyncRes<{
4680
+ list: IReceivedMessage[];
4681
+ hasMore: boolean;
4682
+ }>>;
4649
4683
  /**
4650
4684
  * 获取会话列表
4651
4685
  * @param count 指定获取数量, 不传则获取全部会话列表,默认 `300`
4652
4686
  */
4653
4687
  getConversationList(count?: number, conversationType?: ConversationType, startTime?: number, order?: 0 | 1, channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
4688
+ /**
4689
+ * 分页获取会话列表,仅 electron中使用
4690
+ */
4691
+ getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): Promise<IAsyncRes<IReceivedConversation[]>>;
4654
4692
  /**
4655
4693
  * 获取单一会话数据
4656
4694
  * @param conversationType
@@ -5012,7 +5050,7 @@ declare class APIContext {
5012
5050
  /**
5013
5051
  * 获取指定人员在黑名单中的状态
5014
5052
  */
5015
- getBlacklistStatus(userId: string): Promise<IAsyncRes<string>>;
5053
+ getBlacklistStatus(userId: string): Promise<IAsyncRes<number>>;
5016
5054
  /**
5017
5055
  * 向本地插入一条消息,不发送到服务器
5018
5056
  */
@@ -5020,7 +5058,7 @@ declare class APIContext {
5020
5058
  /**
5021
5059
  * 删除本地消息
5022
5060
  */
5023
- deleteMessages(timestamp: number[]): Promise<ErrorCode>;
5061
+ deleteMessages(messageIds: number[]): Promise<ErrorCode>;
5024
5062
  /**
5025
5063
  * 从本地消息数据库中删除某一会话指定时间之前的消息数据
5026
5064
  */
@@ -5049,6 +5087,10 @@ declare class APIContext {
5049
5087
  * 设置消息接收状态
5050
5088
  */
5051
5089
  setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<ErrorCode>;
5090
+ /**
5091
+ * 将自己发送的指定时间之前的消息标记对方已读,状态值为 SentStatus.READ
5092
+ */
5093
+ setMessageStatusToRead(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<IAsyncRes<boolean>>;
5052
5094
  /**
5053
5095
  * 设置当前用户在线状态
5054
5096
  */
@@ -5064,10 +5106,18 @@ declare class APIContext {
5064
5106
  status: string;
5065
5107
  }>>;
5066
5108
  searchConversationByContent(keyword: string, customMessageTypes?: string[], channelId?: string, conversationTypes?: ConversationType[]): Promise<IAsyncRes<IReceivedConversation[]>>;
5109
+ searchConversationByContentWithAllChannel(keyword: string, customMessageTypes?: string[], conversationTypes?: ConversationType[]): Promise<IAsyncRes<IReceivedConversation[]>>;
5067
5110
  searchMessageByContent(conversationType: ConversationType, targetId: string, keyword: string, timestamp: number, count: number, total: number, channelId?: string): Promise<IAsyncRes<{
5068
5111
  messages: IReceivedMessage[];
5069
5112
  count: number;
5070
5113
  }>>;
5114
+ searchMessageByContentWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, timestamp: number, count: number): Promise<IAsyncRes<{
5115
+ messages: IReceivedMessage[];
5116
+ count: number;
5117
+ }>>;
5118
+ searchMessageByContentInTimeRangeWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, startTime: number, endTime: number, offset: number, limit: number): Promise<IAsyncRes<{
5119
+ messages: IReceivedMessage[];
5120
+ }>>;
5071
5121
  getUnreadMentionedMessages(conversationType: ConversationType, targetId: string, channelId?: string): IReceivedMessage[];
5072
5122
  clearUnreadCountByTimestamp(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<ErrorCode>;
5073
5123
  /**
@@ -5096,6 +5146,7 @@ declare class APIContext {
5096
5146
  }>>;
5097
5147
  getConversationListWithAllChannel(): Promise<IAsyncRes<IReceivedConversation[]>>;
5098
5148
  getConversationListWithAllChannelByPage(index: number, limit: number): Promise<IAsyncRes<IReceivedConversation[]>>;
5149
+ clearData(): Promise<IAsyncRes<boolean>>;
5099
5150
  /**
5100
5151
  * 加入房间
5101
5152
  * @param roomId
@@ -5478,6 +5529,13 @@ declare abstract class AEngine implements IEngine {
5478
5529
  list: IReceivedMessage[];
5479
5530
  hasMore: boolean;
5480
5531
  }>;
5532
+ /**
5533
+ * 获取指定消息类型的历史消息
5534
+ */
5535
+ abstract getHistoryMessagesByObjectNames(conversationType: ConversationType, targetId: string, timestamp: number, count: number, messageTypes: string[], order: number, channelId: string): Promise<IAsyncRes<{
5536
+ list: IReceivedMessage[];
5537
+ hasMore: boolean;
5538
+ }>>;
5481
5539
  /**
5482
5540
  * 删除历史消息 通过 messageUId
5483
5541
  */
@@ -5531,6 +5589,10 @@ declare abstract class AEngine implements IEngine {
5531
5589
  * 会话的业务标识
5532
5590
  */
5533
5591
  channelId?: string): IPromiseResult<IReceivedConversation[]>;
5592
+ /**
5593
+ * 分页获取会话列表,仅 electron中使用
5594
+ */
5595
+ abstract getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): IPromiseResult<IReceivedConversation[]>;
5534
5596
  /**
5535
5597
  * 获取指定会话
5536
5598
  */
@@ -5828,7 +5890,7 @@ declare abstract class AEngine implements IEngine {
5828
5890
  * @param targetId
5829
5891
  * @param options
5830
5892
  */
5831
- abstract sendUltraMessage(targetId: string, options: ISendMsgOptions, traceId?: string): Promise<IAsyncRes>;
5893
+ abstract sendUltraMessage(targetId: string, options: ISendMsgOptions, onSendBefore?: (messageId: number) => void, traceId?: string): Promise<IAsyncRes>;
5832
5894
  /**
5833
5895
  * 超级群消息正在输入中
5834
5896
  * @param options
@@ -5896,7 +5958,7 @@ declare abstract class AEngine implements IEngine {
5896
5958
  /**
5897
5959
  * 获取指定人员在黑名单中的状态
5898
5960
  */
5899
- abstract getBlacklistStatus(userId: string): IPromiseResult<string>;
5961
+ abstract getBlacklistStatus(userId: string): IPromiseResult<number>;
5900
5962
  /**
5901
5963
  * 向本地插入一条消息,不发送到服务器
5902
5964
  */
@@ -5904,7 +5966,7 @@ declare abstract class AEngine implements IEngine {
5904
5966
  /**
5905
5967
  * 删除本地消息
5906
5968
  */
5907
- abstract deleteMessages(timestamps: number[]): Promise<ErrorCode>;
5969
+ abstract deleteMessages(messageIds: number[]): Promise<ErrorCode>;
5908
5970
  /**
5909
5971
  * 通过时间戳删除本地消息
5910
5972
  */
@@ -5929,6 +5991,10 @@ declare abstract class AEngine implements IEngine {
5929
5991
  * 通过关键字搜索会话
5930
5992
  */
5931
5993
  abstract searchConversationByContent(keyword: string, customMessageTypes: string[], channelId: string, conversationTypes?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
5994
+ /**
5995
+ * 通过关键字搜索所有会话
5996
+ */
5997
+ abstract searchConversationByContentWithAllChannel(keyword: string, customMessageTypes: string[], conversationTypes?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
5932
5998
  /**
5933
5999
  * 按内容搜索会话内的消息
5934
6000
  */
@@ -5936,6 +6002,19 @@ declare abstract class AEngine implements IEngine {
5936
6002
  messages: IReceivedMessage[];
5937
6003
  count: number;
5938
6004
  }>;
6005
+ /**
6006
+ * 按内容搜索指定会话(不区分 channelId)的消息
6007
+ */
6008
+ abstract searchMessageByContentWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, timestamp: number, count: number): IPromiseResult<{
6009
+ messages: IReceivedMessage[];
6010
+ count: number;
6011
+ }>;
6012
+ /**
6013
+ * 按内容搜索时间范围内指定会话(不区分 channelId)的消息
6014
+ */
6015
+ abstract searchMessageByContentInTimeRangeWithAllChannel(conversationType: ConversationType, targetId: string, keyword: string, startTime: number, endTime: number, offset: number, limit: number): IPromiseResult<{
6016
+ messages: IReceivedMessage[];
6017
+ }>;
5939
6018
  /**
5940
6019
  * 获取会话下所有未读的 @ 消息
5941
6020
  */
@@ -5948,6 +6027,10 @@ declare abstract class AEngine implements IEngine {
5948
6027
  * 设置消息接收状态
5949
6028
  */
5950
6029
  abstract setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<ErrorCode>;
6030
+ /**
6031
+ * 将自己发送的指定时间之前的消息标记对方已读,状态值为 SentStatus.READ
6032
+ */
6033
+ abstract updateMessageReceiptStatus(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): IPromiseResult<boolean>;
5951
6034
  /**
5952
6035
  * 删除时间戳前的未读数
5953
6036
  */
@@ -6001,6 +6084,7 @@ declare abstract class AEngine implements IEngine {
6001
6084
  * 获取本地全部会话的状态
6002
6085
  */
6003
6086
  abstract getAllConversationState(): Promise<IAsyncRes<IConversationState[]>>;
6087
+ abstract clearData(): Promise<IAsyncRes<boolean>>;
6004
6088
  abstract joinRTCRoom(roomId: string, mode: RTCMode, broadcastType?: number, joinType?: RTCJoinType, innerUserDatas?: IRTCUserData, outerUserDatas?: IRTCUserData): IPromiseResult<IJoinRTCRoomData>;
6005
6089
  abstract quitRTCRoom(roomId: string): Promise<ErrorCode>;
6006
6090
  abstract rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<ErrorCode>;
@@ -6189,6 +6273,7 @@ declare const isHttpUrl: (value: any) => boolean;
6189
6273
  */
6190
6274
  declare const notEmptyObject: (val: Object) => boolean;
6191
6275
  declare const isValidConversationType: (conversation: number) => boolean;
6276
+ declare const isValidChannelId: (value: any) => boolean;
6192
6277
  /**
6193
6278
  * 判断是否是一个有效的文件类型
6194
6279
  */
@@ -6229,7 +6314,7 @@ declare function insertIntoLogCache(logLevel: LogLevel, tagId: string, logObj: a
6229
6314
  * @param level
6230
6315
  * @param args
6231
6316
  */
6232
- declare function _defaultStdout(level: LogLevel, msgTag: string, logContent?: any): void;
6317
+ declare function _defaultStdout(level: LogLevel, msgTag: string, ...logContents: any[]): void;
6233
6318
  /**
6234
6319
  * Trace ID 生成器
6235
6320
  */
@@ -6344,6 +6429,10 @@ declare class Logger {
6344
6429
  }
6345
6430
  declare const _default: Logger;
6346
6431
 
6432
+ declare const randomNum: (min: number, max: number) => number;
6433
+ declare const getUUID: () => string;
6434
+ declare const getUUID22: () => string;
6435
+
6347
6436
  /**
6348
6437
  * 预定义的验证规则,只包含`值类型`数据验证
6349
6438
  * 引用类型数据需使用自定义 validator 校验函数进行校验
@@ -6380,7 +6469,11 @@ declare enum AssertRules {
6380
6469
  /**
6381
6470
  * ChannelId 验证,必须为 String 且不超过 20 位 且不能包含下划线
6382
6471
  */
6383
- CHANNEL_ID = 7
6472
+ CHANNEL_ID = 7,
6473
+ /**
6474
+ * 类型为会话
6475
+ */
6476
+ CONVERSATION = 8
6384
6477
  }
6385
6478
  declare class RCAssertError extends Error {
6386
6479
  constructor(message?: string);
@@ -6581,4 +6674,4 @@ declare const ONE_LOG_SIZE_MAX = 1000;
6581
6674
  */
6582
6675
  declare const version: string;
6583
6676
 
6584
- export { AEngine, APIContext, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType as ChatroomMemberChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogExtensions, ILogInfo, ILogInit, IM_CHATROOM_PULL_INTERVAL_TIME, IM_COMET_PULLMSG_TIMEOUT, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageListnenr, IMessageReader, IMessageReaderResponse, IMetionedData, INaviInfo, IPluginGenerator, IPromiseResult, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptInfo, IRealTimeLog, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStorage, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraExMsgOptions, IUltraGroupOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogSource, LogTagId, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, _default as engineLogger, forEach, formatConnectResponseCode, getBrowser, getMimeKey, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, usingCppEngine, validate, version };
6677
+ export { AEngine, APIContext, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType as ChatroomMemberChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogExtensions, ILogInfo, ILogInit, IM_CHATROOM_PULL_INTERVAL_TIME, IM_COMET_PULLMSG_TIMEOUT, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageListnenr, IMessageReader, IMessageReaderResponse, IMetionedData, INaviInfo, IPluginGenerator, IPromiseResult, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptInfo, IRealTimeLog, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStorage, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraExMsgOptions, IUltraGroupOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogSource, LogTagId, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, _default as engineLogger, forEach, formatConnectResponseCode, getBrowser, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, randomNum, todo, usingCppEngine, validate, version };