@rongcloud/engine 5.9.8 → 5.9.9

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
@@ -1712,6 +1712,13 @@ declare enum ErrorCode {
1712
1712
  * 开发者接口调用时传入的 MessageExpansion 非法
1713
1713
  */
1714
1714
  INVALID_PARAMETER_MESSAGE_EXPANSION = 34220,
1715
+ /**
1716
+ * 34225
1717
+ * RCConversationIdentifier 参数非法。 可能原因:开发者调用接口传入的 RCConversationIdentifier 参数类型不对或者参数为空
1718
+ * @solution conversation is not valid
1719
+ * @since 5.9.9
1720
+ */
1721
+ INVALID_PARAMETER_CONVERSATION = 34225,
1715
1722
  /**
1716
1723
  * 34228
1717
1724
  * PushNotificationLevel 无效
@@ -1877,6 +1884,13 @@ declare enum ErrorCode {
1877
1884
  * @since 5.9.8
1878
1885
  */
1879
1886
  INVALID_PARAMETER_CONVERSATION_TYPE_LIST = 34284,
1887
+ /**
1888
+ * 34287
1889
+ * 开发者调用接口传入的 ConversationIdentifier 数组参数为空、数组长度为 0或超过限制、包含 null 或非法对象
1890
+ * @solution 传入的 ConversationList 数组参数为空、数组长度为 0或超过限制、包含 null 或非法对象
1891
+ * @since 5.9.9
1892
+ */
1893
+ INVALID_PARAMETER_CONVERSATION_LIST = 34287,
1880
1894
  /**
1881
1895
  * 34288
1882
1896
  * 开发者调用接口传入的 ClearMessageOption 数组参数为空、数组长度为 0或超过限制、包含 null 或非法对象
@@ -2791,7 +2805,8 @@ declare enum LogTagId {
2791
2805
  L_PULL_SUBSCRIBED_USER_RELATION_T = "L-pull_subscribed_user_relation-T",
2792
2806
  L_PULL_SUBSCRIBED_USER_RELATION_R = "L-pull_subscribed_user_relation-R",
2793
2807
  L_PULL_SUBSCRIBED_USER_STATUS_T = "L-pull_subscribed_user_status-T",
2794
- L_PULL_SUBSCRIBED_USER_STATUS_R = "L-pull_subscribed_user_status-R"
2808
+ L_PULL_SUBSCRIBED_USER_STATUS_R = "L-pull_subscribed_user_status-R",
2809
+ L_PARSE_JSON_E = "L-parse_json-E"
2795
2810
  }
2796
2811
 
2797
2812
  /** 统计数据标签 */
@@ -4742,6 +4757,7 @@ interface INaviRequestOption {
4742
4757
  token: string;
4743
4758
  platform: string;
4744
4759
  protocol?: string;
4760
+ mac?: string;
4745
4761
  }
4746
4762
  interface IServerAddressData {
4747
4763
  addr: string;
@@ -5396,6 +5412,7 @@ declare type INaviCache = {
5396
5412
  token: string;
5397
5413
  naviInfo: INaviInfo;
5398
5414
  timestamp: number;
5415
+ environment: string;
5399
5416
  };
5400
5417
  /**
5401
5418
  * 导航数据管理类,负责管理导航有效期、导航请求、导航缓存
@@ -5412,6 +5429,11 @@ declare abstract class BasicNavi {
5412
5429
  * 当前进行中的导航请求
5413
5430
  */
5414
5431
  private crtRequest;
5432
+ /**
5433
+ * 内外网环境
5434
+ */
5435
+ protected _environment: string;
5436
+ protected getCatchKey(token: string): string;
5415
5437
  /**
5416
5438
  * 请求导航数据
5417
5439
  * @param token
@@ -5505,7 +5527,7 @@ declare class WebsocketStaticConfigManager extends BasicStaticConfigManager {
5505
5527
  */
5506
5528
  declare class WebSocketNavi extends BasicNavi {
5507
5529
  private runtime;
5508
- constructor(appkey: string, logger: BasicLogger, statisticLog: BasicStatistic, runtime: IRuntime, staticConfigManager: WebsocketStaticConfigManager);
5530
+ constructor(appkey: string, logger: BasicLogger, statisticLog: BasicStatistic, runtime: IRuntime, staticConfigManager: WebsocketStaticConfigManager, environment?: string);
5509
5531
  protected httpRequest(uri: string, appkey: string, token: string, traceId: string, finished: boolean): IPromiseResult<INaviInfo>;
5510
5532
  protected httpRequestV2(uri: string, appkey: string, token: string, traceId: string, finished: boolean): IPromiseResult<INaviInfo>;
5511
5533
  protected getNaviCache(formatedToken: string): INaviCache | null;
@@ -7267,6 +7289,10 @@ interface IAPIContextOption {
7267
7289
  * 自定义上传地址
7268
7290
  */
7269
7291
  uploadDomain?: string;
7292
+ /**
7293
+ * 私有云环境配置
7294
+ */
7295
+ environment?: string;
7270
7296
  }
7271
7297
 
7272
7298
  interface IPluginGenerator<API, InitOption> {
@@ -8240,6 +8266,8 @@ declare class APIContext {
8240
8266
  * 获取会话免打扰状态
8241
8267
  */
8242
8268
  getConversationNotificationLevel(conversationType: ConversationType, targetId: string, channelId?: string): Promise<IAsyncRes<NotificationLevel>>;
8269
+ setConversationTypeNotificationLevel(conversationType: ConversationType, level: NotificationLevel): Promise<IAsyncRes<void>>;
8270
+ getConversationTypeNotificationLevel(conversationType: ConversationType): Promise<IAsyncRes<NotificationLevel>>;
8243
8271
  /**
8244
8272
  * 获取会话免打扰状态
8245
8273
  */
@@ -8253,10 +8281,15 @@ declare class APIContext {
8253
8281
  clearData(): Promise<IAsyncRes<boolean>>;
8254
8282
  createLogger(id: string, type: LogType): BasicLogger;
8255
8283
  createStatisticLogger(id: string, type: LogType): BasicStatistic;
8284
+ getConversations(conversationList: IConversationOption[]): Promise<IAsyncRes<IReceivedConversation[]>>;
8256
8285
  /**
8257
8286
  * 设置融云消息重排开关
8258
8287
  */
8259
8288
  setCheckDuplicateMessage(enableCheck: boolean): Promise<IAsyncRes<boolean>>;
8289
+ /**
8290
+ * 设置聊天室消息重排开关
8291
+ */
8292
+ setCheckChatRoomDuplicateMessage(enableCheck: boolean): Promise<IAsyncRes<boolean>>;
8260
8293
  rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: any): Promise<{
8261
8294
  code: ErrorCode;
8262
8295
  buffer?: Uint8Array;
@@ -9361,6 +9394,8 @@ declare abstract class AEngine {
9361
9394
  * 旧:getConversationNotificationStatus
9362
9395
  */
9363
9396
  abstract getConversationNotificationLevel(conversationType: ConversationType, targetId: string, channelId: string): IPromiseResult<NotificationLevel>;
9397
+ abstract setConversationTypeNotificationLevel(conversationType: ConversationType, level: NotificationLevel): Promise<IAsyncRes<void>>;
9398
+ abstract getConversationTypeNotificationLevel(conversationType: ConversationType): Promise<IAsyncRes<NotificationLevel>>;
9364
9399
  /**
9365
9400
  * 协议栈获取远端历史消息
9366
9401
  */
@@ -9425,6 +9460,10 @@ declare abstract class AEngine {
9425
9460
  * 设置融云消息重排开关
9426
9461
  */
9427
9462
  abstract setCheckDuplicateMessage(enableCheck: boolean): IPromiseResult<boolean>;
9463
+ /**
9464
+ * 设置聊天室消息重排开关
9465
+ */
9466
+ abstract setCheckChatRoomDuplicateMessage(enableCheck: boolean): IPromiseResult<boolean>;
9428
9467
  /**
9429
9468
  * RTC 通用调用接口
9430
9469
  * 在非 Comet 协议下,入参 sourceData 应为 ArrayBuffer 数据,返回结果为 Uint8Array 数据
@@ -9491,6 +9530,7 @@ declare abstract class AEngine {
9491
9530
  * @param afterCount
9492
9531
  */
9493
9532
  abstract getMessagesByTimestamp(conversation: IConversationOption, timestamp: number, beforeCount: number, afterCount: number): IPromiseResult<IReceivedMessage[]>;
9533
+ abstract getConversations(conversations: IConversationOption[]): Promise<IAsyncRes<IReceivedConversation[]>>;
9494
9534
  }
9495
9535
 
9496
9536
  interface IUrlCenterInitOption {
@@ -9629,6 +9669,8 @@ interface IErrorCodeKey {
9629
9669
  subscribePageSize: number;
9630
9670
  beforeCount: number;
9631
9671
  afterCount: number;
9672
+ conversationList: number;
9673
+ conversationTypeNotSupport: number;
9632
9674
  }
9633
9675
 
9634
9676
  declare const ErrorCodeMap: IErrorCodeKey;
@@ -9734,7 +9776,10 @@ declare class ValidatorManage<T> {
9734
9776
  * @param required 是否必填
9735
9777
  * @param message 自定义错误信息
9736
9778
  */
9737
- validate(key: keyof IErrorCodeKey, value: any, validator: AssertRules | ((value?: any) => boolean), required?: boolean, message?: string): this;
9779
+ validate(key: keyof IErrorCodeKey, value: any, validator: AssertRules | ((value?: any) => {
9780
+ errorKey?: keyof IErrorCodeKey;
9781
+ valid: boolean;
9782
+ }) | ((value?: any) => boolean), required?: boolean, message?: string): this;
9738
9783
  private _getValidationResult;
9739
9784
  /**
9740
9785
  * 内部验证接口是否完成初始化,若未完成初始化,返回状态码 `ErrorCode.BIZ_ERROR_CLIENT_NOT_INIT`
@@ -9879,7 +9924,10 @@ declare const isArray: (arr: unknown) => boolean;
9879
9924
  declare const isLimitedArray: (option: {
9880
9925
  minLength?: number | undefined;
9881
9926
  maxLength?: number | undefined;
9882
- itemValidator?: ((val: unknown) => boolean) | undefined;
9927
+ itemValidator?: ((val: unknown) => boolean) | ((val: unknown) => {
9928
+ errorKey?: keyof IErrorCodeKey;
9929
+ valid: boolean;
9930
+ }) | undefined;
9883
9931
  }) => (arr: any[]) => boolean;
9884
9932
  /**
9885
9933
  * 有限制的字符串
@@ -9954,6 +10002,15 @@ declare const isValidFileType: (fileType: number) => boolean;
9954
10002
  declare const isValidExpansion: (expansion: {
9955
10003
  [key: string]: string;
9956
10004
  } | undefined) => IIsValidExpansion;
10005
+ /**
10006
+ * @param conversation 会话信息
10007
+ * @param conversationTypeList 接口支持的会话类型列表,不传则不校验
10008
+ * @returns
10009
+ */
10010
+ declare const isValidConversation: (conversation: any, conversationTypeList?: ConversationType[] | undefined) => {
10011
+ errorKey?: keyof IErrorCodeKey | undefined;
10012
+ valid: boolean;
10013
+ };
9957
10014
 
9958
10015
  /**
9959
10016
  * @deprecated
@@ -10068,6 +10125,7 @@ declare function fixUrlProtocol(url: string, protocol?: EConnectProtocol): strin
10068
10125
  * @param messageUId
10069
10126
  */
10070
10127
  declare function getMessageUIdHash(messageUId?: string): number;
10128
+ declare const getMinionURL: (naviInfo: INaviInfo, logger: BasicLogger) => string;
10071
10129
 
10072
10130
  declare function httpRequest(options: IRequest): SuspendablePromise<IResponse>;
10073
10131
 
@@ -10461,4 +10519,4 @@ declare type AbsCodec<T> = Codec<T>;
10461
10519
  */
10462
10520
  declare const version: string;
10463
10521
 
10464
- 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, ErrorCodeMap, 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, IServerAddressData, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, 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, OnlineStatus, OperateStatus, PlatformInfo, 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, SubscribeOperationType, SubscribeType, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, VERSION, ValidatorManage, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, completeSubscriptionPlatformStatus, 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, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isStartCloudController, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, unInitStatisticDB, urlCenter, usingCppEngine, validate, validators, version };
10522
+ 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, ErrorCodeMap, 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, IServerAddressData, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, 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, OnlineStatus, OperateStatus, PlatformInfo, 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, SubscribeOperationType, SubscribeType, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, VERSION, ValidatorManage, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, completeSubscriptionPlatformStatus, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, getBrowser, getClientMessageId, getDeviceId, getMessageUIdHash, getMimeKey, getMinionURL, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isStartCloudController, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversation, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, unInitStatisticDB, urlCenter, usingCppEngine, validate, validators, version };