@rongcloud/engine 5.7.0 → 5.7.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/index.d.ts +108 -15
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1391,7 +1391,8 @@ declare enum LogTagId {
|
|
|
1391
1391
|
P_REGTYP_E = "P-regtype-E",
|
|
1392
1392
|
L_GET_NAVI_T = "L-get_navi-T",
|
|
1393
1393
|
L_GET_NAVI_R = "L-get_navi-R",
|
|
1394
|
-
|
|
1394
|
+
L_REQUEST_T = "L-request-T",
|
|
1395
|
+
L_REQUEST_R = "L-request-R",
|
|
1395
1396
|
L_PARSE_NAVI_E = "L-parse_navi-E",
|
|
1396
1397
|
L_ENV_S = "L-Env-S",
|
|
1397
1398
|
L_GET_INDEX_NAVI_S = "L-get_index_navi-S",
|
|
@@ -1449,6 +1450,7 @@ declare enum LogTagId {
|
|
|
1449
1450
|
L_UNKNOWN_TOPIC_E = "L_UNKNOWN_TOPIC_E",
|
|
1450
1451
|
L_RECV_RMTP_O = "L_RECV_RMTP_O",
|
|
1451
1452
|
L_RECV_RMTP_E = "L_RECV_RMTP_E",
|
|
1453
|
+
L_RECV_S_NTF_O = "L-recv_s_ntf_O",
|
|
1452
1454
|
/** 版本号上报 */
|
|
1453
1455
|
L_VER_REPORT_T = "L-VER_REPORT-T",
|
|
1454
1456
|
/** 版本号上报结果 */
|
|
@@ -1472,6 +1474,37 @@ declare enum ChatroomUserChangeType {
|
|
|
1472
1474
|
JOIN = 1
|
|
1473
1475
|
}
|
|
1474
1476
|
|
|
1477
|
+
/**
|
|
1478
|
+
* 发送状态
|
|
1479
|
+
* @category Enum
|
|
1480
|
+
*/
|
|
1481
|
+
declare enum SentStatus {
|
|
1482
|
+
/**
|
|
1483
|
+
* 发送中。
|
|
1484
|
+
*/
|
|
1485
|
+
SENDING = 10,
|
|
1486
|
+
/**
|
|
1487
|
+
* 发送失败。
|
|
1488
|
+
*/
|
|
1489
|
+
FAILED = 20,
|
|
1490
|
+
/**
|
|
1491
|
+
* 已发送。
|
|
1492
|
+
*/
|
|
1493
|
+
SENT = 30,
|
|
1494
|
+
/**
|
|
1495
|
+
* 对方已接收。
|
|
1496
|
+
*/
|
|
1497
|
+
RECEIVED = 40,
|
|
1498
|
+
/**
|
|
1499
|
+
* 对方已读。
|
|
1500
|
+
*/
|
|
1501
|
+
READ = 50,
|
|
1502
|
+
/**
|
|
1503
|
+
* 对方已销毁。
|
|
1504
|
+
*/
|
|
1505
|
+
DESTROYED = 60
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1475
1508
|
declare enum StoreKeys {
|
|
1476
1509
|
/**
|
|
1477
1510
|
* Navi 数据缓存,暂未使用
|
|
@@ -1856,13 +1889,13 @@ interface IReceivedMessage {
|
|
|
1856
1889
|
*/
|
|
1857
1890
|
receivedStatus: number;
|
|
1858
1891
|
/**
|
|
1859
|
-
*
|
|
1892
|
+
* 消息本地 ID, web 端由 lib 内生成, PC 端由协议栈数据库生成自增ID
|
|
1860
1893
|
*/
|
|
1861
1894
|
messageId?: number;
|
|
1862
1895
|
/**
|
|
1863
|
-
*
|
|
1896
|
+
* 消息发送状态, web 端由 lib 内根据消息状态设置值为 发送中、已发送和发送失败 ,PC 端由协议栈自动维护或用户自己设置
|
|
1864
1897
|
*/
|
|
1865
|
-
sentStatus?:
|
|
1898
|
+
sentStatus?: SentStatus;
|
|
1866
1899
|
/**
|
|
1867
1900
|
* 已读回执信息(导航配置grpRRVer=1时群组类型消息内存在, 其他情况为undefined)
|
|
1868
1901
|
*/
|
|
@@ -2118,6 +2151,37 @@ interface IInsertMsgOptions {
|
|
|
2118
2151
|
expansionMsg?: string;
|
|
2119
2152
|
channelId: string;
|
|
2120
2153
|
}
|
|
2154
|
+
interface IInsertMessage {
|
|
2155
|
+
conversationType: number;
|
|
2156
|
+
targetId: string;
|
|
2157
|
+
channelId: string;
|
|
2158
|
+
messageDirection: number;
|
|
2159
|
+
messageType: string;
|
|
2160
|
+
content: any;
|
|
2161
|
+
messageUId: string;
|
|
2162
|
+
senderUserId: string;
|
|
2163
|
+
sentStatus?: number;
|
|
2164
|
+
sentTime?: number;
|
|
2165
|
+
disableNotification?: boolean;
|
|
2166
|
+
canIncludeExpansion?: boolean;
|
|
2167
|
+
expansion?: {
|
|
2168
|
+
[key: string]: any;
|
|
2169
|
+
} | null;
|
|
2170
|
+
receivedStatus?: number;
|
|
2171
|
+
/**
|
|
2172
|
+
* 插入消息是否计入未读数: true 计数 false 不计数, 默认不计数
|
|
2173
|
+
*/
|
|
2174
|
+
isUnread?: boolean;
|
|
2175
|
+
/**
|
|
2176
|
+
* 消息搜索关键字
|
|
2177
|
+
*/
|
|
2178
|
+
searchContent?: string;
|
|
2179
|
+
/**
|
|
2180
|
+
* 来源
|
|
2181
|
+
*/
|
|
2182
|
+
source?: string;
|
|
2183
|
+
isMentioned?: boolean;
|
|
2184
|
+
}
|
|
2121
2185
|
interface ISendExMsgOptions {
|
|
2122
2186
|
channelId: string;
|
|
2123
2187
|
conversationType: ConversationType;
|
|
@@ -3558,7 +3622,7 @@ declare abstract class AConnectionMgr {
|
|
|
3558
3622
|
* 关闭连接
|
|
3559
3623
|
* @param inReconnect
|
|
3560
3624
|
*/
|
|
3561
|
-
protected abstract close(inReconnect: boolean): void;
|
|
3625
|
+
protected abstract close(inReconnect: boolean, closeDB?: boolean): void;
|
|
3562
3626
|
/**
|
|
3563
3627
|
* 完成一次 ping 过程,并返回响应状态码
|
|
3564
3628
|
* @param timeout 超时时间
|
|
@@ -3567,7 +3631,7 @@ declare abstract class AConnectionMgr {
|
|
|
3567
3631
|
/**
|
|
3568
3632
|
* 业务层主动断开连接时调用
|
|
3569
3633
|
*/
|
|
3570
|
-
disconnect(): Promise<void>;
|
|
3634
|
+
disconnect(closeDB?: boolean): Promise<void>;
|
|
3571
3635
|
/**
|
|
3572
3636
|
* 清理重连计时器
|
|
3573
3637
|
*/
|
|
@@ -3787,7 +3851,7 @@ interface IEngine {
|
|
|
3787
3851
|
/**
|
|
3788
3852
|
* 断开连接
|
|
3789
3853
|
*/
|
|
3790
|
-
disconnect(): void;
|
|
3854
|
+
disconnect(closeDB?: boolean): void;
|
|
3791
3855
|
/**
|
|
3792
3856
|
* 拉取用户级配置数据
|
|
3793
3857
|
*/
|
|
@@ -4977,7 +5041,7 @@ declare class APIContext {
|
|
|
4977
5041
|
getServerTime(): number;
|
|
4978
5042
|
getDeviceId(): string;
|
|
4979
5043
|
getCurrentUserId(): string;
|
|
4980
|
-
getConnectionStatus():
|
|
5044
|
+
getConnectionStatus(): RCConnectionStatus;
|
|
4981
5045
|
get token(): string;
|
|
4982
5046
|
refetchNaviInfo(): IPromiseResult<INaviInfo | null>;
|
|
4983
5047
|
/**
|
|
@@ -4994,7 +5058,7 @@ declare class APIContext {
|
|
|
4994
5058
|
设置 reconnectKickEnable 为 true 时,SDK 重连的时候发现此时已有别的设备连接成功,不再强行踢出已有设备,而是踢出重连设备。
|
|
4995
5059
|
*/
|
|
4996
5060
|
connect(token: string, reconnectKickEnable: boolean, traceId: string): Promise<IConnectResult>;
|
|
4997
|
-
disconnect(): Promise<void>;
|
|
5061
|
+
disconnect(closeDB?: boolean): Promise<void>;
|
|
4998
5062
|
reconnect(reconnectKickEnable?: boolean): Promise<IConnectResult>;
|
|
4999
5063
|
private _getTokenWithoutNavi;
|
|
5000
5064
|
/**
|
|
@@ -5490,6 +5554,11 @@ declare class APIContext {
|
|
|
5490
5554
|
* 向本地插入一条消息,不发送到服务器
|
|
5491
5555
|
*/
|
|
5492
5556
|
insertMessage(conversationType: ConversationType, targetId: string, insertOptions: IInsertMsgOptions): Promise<IAsyncRes<IReceivedMessage>>;
|
|
5557
|
+
batchInsertMessage(messages: IInsertMessage[], checkDuplicate: boolean): Promise<IAsyncRes<boolean>>;
|
|
5558
|
+
/**
|
|
5559
|
+
* 获取会话所有消息数
|
|
5560
|
+
*/
|
|
5561
|
+
getMessageCount(conversationType: ConversationType, targetId: string, channelId?: string): Promise<IAsyncRes<number>>;
|
|
5493
5562
|
/**
|
|
5494
5563
|
* 删除本地消息
|
|
5495
5564
|
*/
|
|
@@ -5583,6 +5652,10 @@ declare class APIContext {
|
|
|
5583
5652
|
getConversationListWithAllChannelByPage(index: number, limit: number): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
5584
5653
|
clearData(): Promise<IAsyncRes<boolean>>;
|
|
5585
5654
|
createLogger(id: string, type: LogType): BasicLogger;
|
|
5655
|
+
/**
|
|
5656
|
+
* 设置融云消息重排开关
|
|
5657
|
+
*/
|
|
5658
|
+
setCheckDuplicateMessage(enableCheck: boolean): Promise<IAsyncRes<boolean>>;
|
|
5586
5659
|
rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: any): Promise<{
|
|
5587
5660
|
code: ErrorCode;
|
|
5588
5661
|
buffer?: Uint8Array;
|
|
@@ -5735,7 +5808,7 @@ declare class PluginContext {
|
|
|
5735
5808
|
/**
|
|
5736
5809
|
* 获取当前连接状态
|
|
5737
5810
|
*/
|
|
5738
|
-
getConnectionStatus():
|
|
5811
|
+
getConnectionStatus(): RCConnectionStatus;
|
|
5739
5812
|
getDeviceId(): string;
|
|
5740
5813
|
/**
|
|
5741
5814
|
* 发送消息
|
|
@@ -6257,8 +6330,9 @@ declare abstract class AEngine {
|
|
|
6257
6330
|
abstract getMessageReader(targetId: string, messageUId: string, channelId?: string): IPromiseResult<IMessageReaderResponse>;
|
|
6258
6331
|
/**
|
|
6259
6332
|
* 断开连接
|
|
6333
|
+
* @param closeDB 是否关闭数据库,默认为 true,仅 Electron 平台有效
|
|
6260
6334
|
*/
|
|
6261
|
-
abstract disconnect(): Promise<void>;
|
|
6335
|
+
abstract disconnect(closeDB?: boolean): Promise<void>;
|
|
6262
6336
|
/**
|
|
6263
6337
|
* 拉取用户级配置数据
|
|
6264
6338
|
*/
|
|
@@ -6562,6 +6636,16 @@ declare abstract class AEngine {
|
|
|
6562
6636
|
* 向本地插入一条消息,不发送到服务器
|
|
6563
6637
|
*/
|
|
6564
6638
|
abstract insertMessage(conversationType: ConversationType, targetId: string, insertOptions: IInsertMsgOptions): IPromiseResult<IReceivedMessage>;
|
|
6639
|
+
/**
|
|
6640
|
+
* 向本地批量插入消息
|
|
6641
|
+
* @param messages
|
|
6642
|
+
* @param checkDuplicate
|
|
6643
|
+
*/
|
|
6644
|
+
abstract batchInsertMessage(messages: IInsertMessage[], checkDuplicate: boolean): IPromiseResult<boolean>;
|
|
6645
|
+
/**
|
|
6646
|
+
* 查询会话消息数
|
|
6647
|
+
*/
|
|
6648
|
+
abstract getMessageCount(conversationType: ConversationType, targetId: string, channelId: string): IPromiseResult<number>;
|
|
6565
6649
|
/**
|
|
6566
6650
|
* 删除本地消息
|
|
6567
6651
|
*/
|
|
@@ -6716,6 +6800,10 @@ declare abstract class AEngine {
|
|
|
6716
6800
|
* 获取应用主进程信息,仅限 Electron 平台可用
|
|
6717
6801
|
*/
|
|
6718
6802
|
abstract getMainProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
6803
|
+
/**
|
|
6804
|
+
* 设置融云消息重排开关
|
|
6805
|
+
*/
|
|
6806
|
+
abstract setCheckDuplicateMessage(enableCheck: boolean): IPromiseResult<boolean>;
|
|
6719
6807
|
/**
|
|
6720
6808
|
* RTC 通用调用接口
|
|
6721
6809
|
* 在非 Comet 协议下,入参 sourceData 应为 ArrayBuffer 数据,返回结果为 Uint8Array 数据
|
|
@@ -7317,12 +7405,17 @@ declare const CPP_PROTOCAL_MSGTYPE_OPTION: {
|
|
|
7317
7405
|
* 状态消息(不存储,不计数,并且上线后不会拉取离线的状态消息)
|
|
7318
7406
|
*/
|
|
7319
7407
|
declare const STATUS_MESSAGE: string[];
|
|
7320
|
-
declare const REAT_TIME_LOG_SIZE
|
|
7408
|
+
declare const REAT_TIME_LOG_SIZE: number;
|
|
7321
7409
|
declare const DB_LOG_MAX_SIZE = 100000;
|
|
7322
7410
|
declare const DB_LOG_FLUSH_FREQUENCY = 3000;
|
|
7323
7411
|
declare const ONE_LOG_SIZE_MAX = 1000;
|
|
7324
|
-
/**
|
|
7325
|
-
declare const
|
|
7412
|
+
/** 日志上报默认策略 */
|
|
7413
|
+
declare const DEFAULT_LOG_POLICY: {
|
|
7414
|
+
url: string;
|
|
7415
|
+
level: number;
|
|
7416
|
+
itv: number;
|
|
7417
|
+
times: number;
|
|
7418
|
+
};
|
|
7326
7419
|
/** SDK 版本号 */
|
|
7327
7420
|
declare const VERSION: string;
|
|
7328
7421
|
/**
|
|
@@ -7342,4 +7435,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
7342
7435
|
*/
|
|
7343
7436
|
declare const version: string;
|
|
7344
7437
|
|
|
7345
|
-
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AssertRules, BasicLogger, BasicNavi, BasicReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, Codec, CodecPBMaps, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, EnableLogL, ErrorCode, EventEmitter, FORMATED_VERSION, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, 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, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviInfo, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPluginGenerator, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptInfo, 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, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, RTCKeyMaps as InnerRTCKeyMaps, ItypingStateListener, KVString,
|
|
7438
|
+
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AssertRules, BasicLogger, BasicNavi, BasicReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, Codec, CodecPBMaps, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DEFAULT_LOG_POLICY, DelayTimer, EnableLogL, ErrorCode, EventEmitter, FORMATED_VERSION, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, 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, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviInfo, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPluginGenerator, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptInfo, 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, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, RTCKeyMaps as InnerRTCKeyMaps, ItypingStateListener, KVString, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, RCConnectionStatus, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, SentStatus, StoreKeys, TagChangeType, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, VERSION, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, deInitLogDB, logger as engineLogger, forEach, getBrowser, getClientMessageId, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, initLogDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, transcsv, usingCppEngine, validate, version };
|