@rongcloud/engine 5.9.2 → 5.9.3

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
@@ -617,10 +617,6 @@ interface ILogData {
617
617
  * 日志标签,如 `L-INIT-O`
618
618
  */
619
619
  tag: string;
620
- /**
621
- * logger 实例 Id,用于确定日志由谁埋点,如 `RCEngien` 为 engine 包埋点日志
622
- */
623
- loggerId: string;
624
620
  /**
625
621
  * 日志生成时间
626
622
  */
@@ -645,6 +641,10 @@ interface ILogData {
645
641
  * 事务跟踪 ID
646
642
  */
647
643
  traceId?: string;
644
+ /**
645
+ * logger 实例 Id,用于确定日志由谁埋点,如 `RCEngien` 为 engine 包埋点日志
646
+ */
647
+ loggerId?: string;
648
648
  }
649
649
 
650
650
  /**
@@ -2327,7 +2327,8 @@ declare enum LogTagId {
2327
2327
  L_CLOUD_SET_CACHE_O = "L-cloud_set_cache-O",
2328
2328
  L_CLOUD_GET_CACHE_O = "L-cloud_get_cache-O",
2329
2329
  L_CLOUD_MSG_NTF_O = "L-cloud_msg_ntf-O",
2330
- L_CLOUD_SET_AREA_CODE_O = "L-cloud_set_area_code-O"
2330
+ L_CLOUD_SET_AREA_CODE_O = "L-cloud_set_area_code-O",
2331
+ L_CLOUD_SET_MRTR_O = "L-cloud_set_mrtr-O"
2331
2332
  }
2332
2333
 
2333
2334
  /** 统计数据标签 */
@@ -2341,7 +2342,10 @@ declare enum StatisticsTag {
2341
2342
  IM_NETWORK_CHANGE = "IM-stats_network_change-S",
2342
2343
  /** 云控配置埋点 */
2343
2344
  L_CLOUD_INFO_FETCH_T = "L-cloud_info_fetch-T",
2344
- L_CLOUD_INFO_FETCH_R = "L-cloud_info_fetch-R"
2345
+ L_CLOUD_INFO_FETCH_R = "L-cloud_info_fetch-R",
2346
+ /** 消息延时率埋点 */
2347
+ IM_MSG_SEND = "IM-msg_send-S",
2348
+ IM_MSG_RECEIVE = "IM-msg_receive-S"
2345
2349
  }
2346
2350
 
2347
2351
  /**
@@ -2877,6 +2881,29 @@ interface ISyncReadStatusData extends IConversationOption {
2877
2881
  */
2878
2882
  timestamp: number;
2879
2883
  }
2884
+ /**
2885
+ * 消息的接收状态详情
2886
+ * 该字段只适用 Electron 平台,只有 isRetrieved 只对 web 平台有效
2887
+ * @since 5.9.3
2888
+ */
2889
+ interface IReceivedStatusInfo {
2890
+ /**
2891
+ * 是否已读取的状态
2892
+ */
2893
+ isRead?: boolean;
2894
+ /**
2895
+ * 是否已被收听的状态
2896
+ */
2897
+ isListened?: boolean;
2898
+ /**
2899
+ * 文件是否已经下载的状态
2900
+ */
2901
+ isDownload?: boolean;
2902
+ /**
2903
+ * 是否已被收取过的状态
2904
+ */
2905
+ isRetrieved?: boolean;
2906
+ }
2880
2907
  /**
2881
2908
  * 从服务端接收到的消息数据
2882
2909
  * @category Interface
@@ -2971,8 +2998,15 @@ interface IReceivedMessage {
2971
2998
  } | null;
2972
2999
  /**
2973
3000
  * 消息接收状态
3001
+ * 只能表示单一状态,推荐使用 receivedStatusInfo 来判断接收消息状态
3002
+ * @deprecated
2974
3003
  */
2975
3004
  receivedStatus: number;
3005
+ /**
3006
+ * 消息接收状态详情
3007
+ * 推荐使用, receivedStatusInfo 值更详细,能同时表示多个接收状态
3008
+ */
3009
+ receivedStatusInfo: IReceivedStatusInfo;
2976
3010
  /**
2977
3011
  * 消息本地 ID, web 端由 lib 内生成, PC 端由协议栈数据库生成自增ID
2978
3012
  */
@@ -3238,6 +3272,7 @@ interface IInsertMsgOptions {
3238
3272
  content: any;
3239
3273
  messageDirection: number;
3240
3274
  readStatus?: number;
3275
+ receivedStatusInfo?: IReceivedStatusInfo;
3241
3276
  sentStatus?: number;
3242
3277
  sentTime?: number;
3243
3278
  searchContent?: string;
@@ -3265,6 +3300,7 @@ interface IInsertMessage {
3265
3300
  [key: string]: any;
3266
3301
  } | null;
3267
3302
  receivedStatus?: number;
3303
+ receivedStatusInfo?: IReceivedStatusInfo;
3268
3304
  /**
3269
3305
  * 插入消息是否计入未读数: true 计数 false 不计数, 默认不计数
3270
3306
  */
@@ -6479,7 +6515,7 @@ interface IWatcher {
6479
6515
  * 群聊消息送达状态通知
6480
6516
  */
6481
6517
  groupMessageDeliveredStatus?: IGroupMessageDeliveredStatusListener;
6482
- readReceiptReceived?: (conversation: IConversationOption, messageUId: string, sentTime: number) => void;
6518
+ readReceiptReceived?: (conversation: IConversationOption, message: string, sentTime: number, senderUserId: string) => void;
6483
6519
  messageReceiptRequest?: (conversation: IConversationOption, messageUId: string, senderUserId: string) => void;
6484
6520
  messageReceiptResponse?: (conversation: IConversationOption, receivedUserId: string, messageUIdList: string[]) => void;
6485
6521
  /**
@@ -7147,7 +7183,7 @@ declare class APIContext {
7147
7183
  * 方法已废弃,推荐使用 `getChatroomHistoryMessages` 替代
7148
7184
  * @deprecated
7149
7185
  */
7150
- getChatRoomHistoryMessages: (roomId: string, count?: number, order?: 0 | 1, timestamp?: number) => Promise<IAsyncRes<{
7186
+ getChatRoomHistoryMessages: (roomId: string, count?: number | undefined, order?: 0 | 1 | undefined, timestamp?: number | undefined) => Promise<IAsyncRes<{
7151
7187
  list: IReceivedMessage[];
7152
7188
  hasMore: boolean;
7153
7189
  }>>;
@@ -9077,6 +9113,11 @@ declare const getbundleId: () => string;
9077
9113
  */
9078
9114
  declare const decryptCBC: (data: string, key: string, iv: string) => Promise<string>;
9079
9115
  declare function fixUrlProtocol(url: string, protocol?: EConnectProtocol): string;
9116
+ /**
9117
+ * 根据消息id计算出哈希值,用作与云控返回的采样率做模运算(取余运算)
9118
+ * @param messageUId
9119
+ */
9120
+ declare function getMessageUIdHash(messageUId: string): number;
9080
9121
 
9081
9122
  declare function httpRequest(options: IRequest): SuspendablePromise<IResponse>;
9082
9123
 
@@ -9113,6 +9154,16 @@ declare const getBrowser: (runtime: IRuntime) => {
9113
9154
  version: any;
9114
9155
  };
9115
9156
  declare const clone: (target: any) => any;
9157
+ /**
9158
+ * 将接收状态枚举值转换为接收转态详情
9159
+ * @param status 状态枚举值
9160
+ */
9161
+ declare const transformReceivedStatusInfo: (status: ReceivedStatus) => IReceivedStatusInfo;
9162
+ /**
9163
+ * 将接收状态详情转换为接收转态枚举值
9164
+ * @param status 状态枚举值
9165
+ */
9166
+ declare const transformReceivedStatusFlag: (receivedStatusInfo: IReceivedStatusInfo) => number;
9116
9167
 
9117
9168
  /**
9118
9169
  * Navi 缓存数据有效时长,单位毫秒
@@ -9324,6 +9375,13 @@ interface IUploadTask {
9324
9375
  */
9325
9376
  userId?: string;
9326
9377
  }
9378
+ interface IMRTRConfig {
9379
+ chatroom: number;
9380
+ group: number;
9381
+ private: number;
9382
+ ultraGroup: number;
9383
+ temporary: boolean;
9384
+ }
9327
9385
  interface ICloudController {
9328
9386
  /**
9329
9387
  * 云控配置
@@ -9341,6 +9399,12 @@ interface ICloudController {
9341
9399
  * 最后一次请求时间
9342
9400
  */
9343
9401
  lastRequestTime: number;
9402
+ /**
9403
+ * 消息采样率,用于采样率规则,后面的数值代表计算采样率的分母
9404
+ * 1 代表 100% 0.1 代表 10% 0.001 代表 1%
9405
+ * 0 代表不抽样
9406
+ */
9407
+ mrtr: IMRTRConfig;
9344
9408
  /**
9345
9409
  * 区域码
9346
9410
  */
@@ -9406,6 +9470,16 @@ declare abstract class BaseCloudController {
9406
9470
  private logCmdMsgTasks;
9407
9471
  protected dataHandle(data: ICloudController): void;
9408
9472
  request(uri: string, invoker: InvokerType, token?: string): Promise<number>;
9473
+ /**
9474
+ * 设置消息采样率
9475
+ * @param data IMRTRConfig
9476
+ */
9477
+ protected abstract setMRTRConfig(data: IMRTRConfig): void;
9478
+ /**
9479
+ * 将服务端返回数据进行转换
9480
+ * @param data
9481
+ */
9482
+ private _handleMrtrData;
9409
9483
  }
9410
9484
 
9411
9485
  /**
@@ -9420,4 +9494,4 @@ declare type AbsCodec<T> = Codec<T>;
9420
9494
  */
9421
9495
  declare const version: string;
9422
9496
 
9423
- 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, 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, 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, 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, unInitStatisticDB, urlCenter, usingCppEngine, validate, version };
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 };