@rongcloud/engine 5.9.3 → 5.9.4
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 +56 -9
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -829,6 +829,11 @@ declare enum ErrorCode {
|
|
|
829
829
|
* 已被对方加入黑名单,消息发送失败
|
|
830
830
|
*/
|
|
831
831
|
REJECTED_BY_BLACKLIST = 405,
|
|
832
|
+
/**
|
|
833
|
+
* 在单聊中已被禁言
|
|
834
|
+
* @since 5.9.4
|
|
835
|
+
*/
|
|
836
|
+
FORBIDDEN_IN_PRIVATE = 20106,
|
|
832
837
|
/**
|
|
833
838
|
* 系统会话不支持发送该消息
|
|
834
839
|
* @since 5.8.2
|
|
@@ -2662,6 +2667,7 @@ interface IAndroidPushConfig {
|
|
|
2662
2667
|
* 国内版仅 MIUI12 以上版本支持,以下版本均不支持;国际版支持。
|
|
2663
2668
|
* 图片要求:大小 120 * 120px,格式为 png 或者 jpg 格式。
|
|
2664
2669
|
* @since 5.7.3 版本开始支持
|
|
2670
|
+
* @deprecated 由于小米官方已停止支持该能力,该字段已失效
|
|
2665
2671
|
*/
|
|
2666
2672
|
miLargeIconUrl?: string;
|
|
2667
2673
|
/**
|
|
@@ -2764,6 +2770,24 @@ interface IPushConfig {
|
|
|
2764
2770
|
templateId?: string;
|
|
2765
2771
|
}
|
|
2766
2772
|
|
|
2773
|
+
/**
|
|
2774
|
+
* 已读回执响应信息
|
|
2775
|
+
* @category Interface
|
|
2776
|
+
*/
|
|
2777
|
+
interface IReadReceiptResponseInfo {
|
|
2778
|
+
/**
|
|
2779
|
+
* 是否已发送已读回执
|
|
2780
|
+
*/
|
|
2781
|
+
isReceiptRequestMessage?: boolean;
|
|
2782
|
+
/**
|
|
2783
|
+
* 是否已发送响应, 仅 Electron 平台有效
|
|
2784
|
+
*/
|
|
2785
|
+
hasRespond?: boolean;
|
|
2786
|
+
/**
|
|
2787
|
+
* 已发送响应的 userIds
|
|
2788
|
+
*/
|
|
2789
|
+
readerList?: string[];
|
|
2790
|
+
}
|
|
2767
2791
|
/**
|
|
2768
2792
|
* 已读回执数据结构
|
|
2769
2793
|
* @category Interface
|
|
@@ -2951,7 +2975,7 @@ interface IReceivedMessage {
|
|
|
2951
2975
|
*/
|
|
2952
2976
|
messageDirection: MessageDirection;
|
|
2953
2977
|
/**
|
|
2954
|
-
*
|
|
2978
|
+
* 是否为离线消息, 在超级群中不适用
|
|
2955
2979
|
*/
|
|
2956
2980
|
isOffLineMessage: boolean;
|
|
2957
2981
|
/**
|
|
@@ -3016,9 +3040,10 @@ interface IReceivedMessage {
|
|
|
3016
3040
|
*/
|
|
3017
3041
|
sentStatus?: SentStatus;
|
|
3018
3042
|
/**
|
|
3019
|
-
*
|
|
3043
|
+
* 群已读回执信息(导航配置 grpRRVer = 0 时为 IReadReceiptResponseInfo,
|
|
3044
|
+
* grpRRVer >= 1时为 IReadReceiptInfo)
|
|
3020
3045
|
*/
|
|
3021
|
-
readReceiptInfo?: IReadReceiptInfo;
|
|
3046
|
+
readReceiptInfo?: IReadReceiptInfo | IReadReceiptResponseInfo;
|
|
3022
3047
|
/**
|
|
3023
3048
|
* 推送扩展
|
|
3024
3049
|
*/
|
|
@@ -3671,6 +3696,7 @@ interface ISetConversationStatusOptions {
|
|
|
3671
3696
|
notificationStatus?: number;
|
|
3672
3697
|
notificationLevel?: number;
|
|
3673
3698
|
channelId?: string;
|
|
3699
|
+
isUpdateTime?: boolean;
|
|
3674
3700
|
}
|
|
3675
3701
|
interface IUpdatedConversation {
|
|
3676
3702
|
updatedItems: {
|
|
@@ -4157,7 +4183,7 @@ interface IRuntime {
|
|
|
4157
4183
|
* 拓展方法定义,便于 electron-solution 实现时保持接口类型推导可用
|
|
4158
4184
|
*/
|
|
4159
4185
|
interface IExtraMethod {
|
|
4160
|
-
getConversationsByPage(conversationTypes: ConversationType[], sentTime: number, count: number, channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
4186
|
+
getConversationsByPage(conversationTypes: ConversationType[], sentTime: number, count: number, channelId?: string, topPriority?: boolean): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
4161
4187
|
getHistoryMessagesByObjectNames(conversationType: ConversationType, targetId: string, sentTime: number, count: number, objectNames: string[], desc: 0 | 1, tag: string): Promise<IAsyncRes<{
|
|
4162
4188
|
list: IReceivedMessage[];
|
|
4163
4189
|
hasMore: boolean;
|
|
@@ -4671,6 +4697,10 @@ declare abstract class BasicStatisticReporter {
|
|
|
4671
4697
|
* 实时日志仅获取当前时间 - 10s 以前的日志上报,避免多页面并行写库造成数据遗漏
|
|
4672
4698
|
*/
|
|
4673
4699
|
checkStart(navi: INaviInfo): Promise<void>;
|
|
4700
|
+
/**
|
|
4701
|
+
* 降低圈复杂度 - 将获实时日志上传逻辑抽离
|
|
4702
|
+
*/
|
|
4703
|
+
private _sendLogs2Realtime;
|
|
4674
4704
|
/**
|
|
4675
4705
|
* 实时日志上报
|
|
4676
4706
|
* @override IndexDBReporter 重载此方法,增加同设备多页面多端时进程竞争检测
|
|
@@ -5387,7 +5417,7 @@ interface IEngine {
|
|
|
5387
5417
|
/**
|
|
5388
5418
|
* 分页获取会话列表,仅 electron中使用
|
|
5389
5419
|
*/
|
|
5390
|
-
getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): IPromiseResult<IReceivedConversation[]>;
|
|
5420
|
+
getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string, topPriority: boolean): IPromiseResult<IReceivedConversation[]>;
|
|
5391
5421
|
/**
|
|
5392
5422
|
* 获取指定会话
|
|
5393
5423
|
*/
|
|
@@ -6273,6 +6303,10 @@ declare abstract class BasicReporter {
|
|
|
6273
6303
|
* 实时日志仅获取当前时间 - 10s 以前的日志上报,避免多页面并行写库造成数据遗漏
|
|
6274
6304
|
*/
|
|
6275
6305
|
checkStart(navi: INaviInfo): Promise<void>;
|
|
6306
|
+
/**
|
|
6307
|
+
* 降低圈复杂度 - 将获实时日志上传逻辑抽离
|
|
6308
|
+
*/
|
|
6309
|
+
private _sendLogs2Realtime;
|
|
6276
6310
|
/**
|
|
6277
6311
|
* 实时日志上报
|
|
6278
6312
|
* @override IndexDBReporter 重载此方法,增加同设备多页面多端时进程竞争检测
|
|
@@ -6910,6 +6944,11 @@ declare class APIContext {
|
|
|
6910
6944
|
*/
|
|
6911
6945
|
registerRTCSignalingListener(listener?: (buffer: Uint8Array) => void): void;
|
|
6912
6946
|
checkSearchPropsMsg(messageType: string, msgContent: any): IAsyncRes;
|
|
6947
|
+
/**
|
|
6948
|
+
* 降低圈复杂度 - 将扩展验证的结果抽离
|
|
6949
|
+
* @param expansion
|
|
6950
|
+
*/
|
|
6951
|
+
private _handleExpansioResult;
|
|
6913
6952
|
/**
|
|
6914
6953
|
* 发送消息
|
|
6915
6954
|
* @param conversationType
|
|
@@ -6993,7 +7032,7 @@ declare class APIContext {
|
|
|
6993
7032
|
/**
|
|
6994
7033
|
* 分页获取会话列表,仅 electron中使用
|
|
6995
7034
|
*/
|
|
6996
|
-
getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
7035
|
+
getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string, topPriority: boolean): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
6997
7036
|
/**
|
|
6998
7037
|
* 获取单一会话数据
|
|
6999
7038
|
* @param conversationType
|
|
@@ -7062,7 +7101,7 @@ declare class APIContext {
|
|
|
7062
7101
|
*/
|
|
7063
7102
|
setConversationNotificationLevel(conversationType: ConversationType, targetId: string, notificationLevel?: NotificationLevel, channelId?: string): Promise<ErrorCode>;
|
|
7064
7103
|
batchSetConversationNotificationLevel(conversations: IConversationOption[], notificationLevel: NotificationLevel): Promise<ErrorCode>;
|
|
7065
|
-
setConversationStatus(conversationType: ConversationType, targetId: string, isTop?: boolean, notificationStatus?: 1 | 2, channelId?: string): Promise<ErrorCode>;
|
|
7104
|
+
setConversationStatus(conversationType: ConversationType, targetId: string, isTop?: boolean, notificationStatus?: 1 | 2, channelId?: string, isUpdateTime?: boolean): Promise<ErrorCode>;
|
|
7066
7105
|
batchSetConversationToTop(conversations: IConversationOption[], isTop: boolean, isCreateConversation?: boolean): Promise<ErrorCode>;
|
|
7067
7106
|
saveConversationMessageDraft(conversationType: ConversationType, targetId: string, draft: string, channelId?: string): Promise<ErrorCode>;
|
|
7068
7107
|
getConversationMessageDraft(conversationType: ConversationType, targetId: string, channelId?: string): Promise<IAsyncRes<string>>;
|
|
@@ -8088,7 +8127,7 @@ declare abstract class AEngine {
|
|
|
8088
8127
|
/**
|
|
8089
8128
|
* 分页获取会话列表,仅 electron中使用
|
|
8090
8129
|
*/
|
|
8091
|
-
abstract getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): IPromiseResult<IReceivedConversation[]>;
|
|
8130
|
+
abstract getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string, topPriority: boolean): IPromiseResult<IReceivedConversation[]>;
|
|
8092
8131
|
/**
|
|
8093
8132
|
* 获取指定会话
|
|
8094
8133
|
*/
|
|
@@ -9250,6 +9289,10 @@ declare const MAX_UPLOAD_FILE_SIZE: number;
|
|
|
9250
9289
|
declare const UPLOAD_FILE_CHUNK_SIZE: number;
|
|
9251
9290
|
declare const STATIC_CONFIG_CACHE_TIME: number;
|
|
9252
9291
|
declare const RC_DEFAULT_USER = "rongcloudsystem";
|
|
9292
|
+
/**
|
|
9293
|
+
* 已读回执缓存时间
|
|
9294
|
+
*/
|
|
9295
|
+
declare const READ_RECEIPT_CATCH_TIME: number;
|
|
9253
9296
|
/**
|
|
9254
9297
|
* localStorage 中的 key 值
|
|
9255
9298
|
*/
|
|
@@ -9312,6 +9355,10 @@ declare const LOCAL_STORAGE_KEYS: {
|
|
|
9312
9355
|
* 云控配置存储
|
|
9313
9356
|
*/
|
|
9314
9357
|
CLOUD_CONTROL_KEY: (appKey: string) => string;
|
|
9358
|
+
/**
|
|
9359
|
+
* 已读回执存储
|
|
9360
|
+
*/
|
|
9361
|
+
READ_RECEIPT_KEY: (appkey: string, curUserId: string) => string;
|
|
9315
9362
|
};
|
|
9316
9363
|
|
|
9317
9364
|
interface ICloudConfig {
|
|
@@ -9494,4 +9541,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
9494
9541
|
*/
|
|
9495
9542
|
declare const version: string;
|
|
9496
9543
|
|
|
9497
|
-
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BaseCloudController, BasicLogger, BasicNavi, BasicReporter, BasicStaticConfigManager, BasicStatistic, BasicStatisticReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectReason, ConnectType, ConnectionStatus, Content, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, EventEmitter, FORMATED_VERSION, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBaseStatisticsData, IBlockedMessageInfo, ICancelRoomPKOptions, IChannelAndUserGroupChangeData, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICloudController, ICombineV2MessageContent, ICombinedMessage, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IFirstUnreadMessageInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupReadReceiptData, IInsertMessage, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogger, IMRTRConfig, IM_CHATROOM_PULL_INTERVAL_TIME, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviContextInfo, INaviInfo, INetwork, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUploadTask, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NaviCacheType, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PluginContext, ProtocalType, PushImportanceHonor, RCAssertError, RCConnectionStatus, RC_DEFAULT_USER, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATIC_CONFIG_CACHE_TIME, STATIC_CONFIG_IV, STATIC_CONFIG_KEY, STATUS_MESSAGE, SentStatus, StatisticL, StatisticsTag, StatisticsVersion, StoreKeys, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, VERSION, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, getBrowser, getClientMessageId, getDeviceId, getMessageUIdHash, getMimeKey, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isStartCloudController, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, unInitStatisticDB, urlCenter, usingCppEngine, validate, version };
|
|
9544
|
+
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BaseCloudController, BasicLogger, BasicNavi, BasicReporter, BasicStaticConfigManager, BasicStatistic, BasicStatisticReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectReason, ConnectType, ConnectionStatus, Content, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, EventEmitter, FORMATED_VERSION, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBaseStatisticsData, IBlockedMessageInfo, ICancelRoomPKOptions, IChannelAndUserGroupChangeData, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICloudController, ICombineV2MessageContent, ICombinedMessage, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IFirstUnreadMessageInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupReadReceiptData, IInsertMessage, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogger, IMRTRConfig, IM_CHATROOM_PULL_INTERVAL_TIME, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviContextInfo, INaviInfo, INetwork, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUploadTask, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NaviCacheType, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PluginContext, ProtocalType, PushImportanceHonor, RCAssertError, RCConnectionStatus, RC_DEFAULT_USER, READ_RECEIPT_CATCH_TIME, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATIC_CONFIG_CACHE_TIME, STATIC_CONFIG_IV, STATIC_CONFIG_KEY, STATUS_MESSAGE, SentStatus, StatisticL, StatisticsTag, StatisticsVersion, StoreKeys, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, VERSION, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, getBrowser, getClientMessageId, getDeviceId, getMessageUIdHash, getMimeKey, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isStartCloudController, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, unInitStatisticDB, urlCenter, usingCppEngine, validate, version };
|