@rongcloud/engine 5.6.1-beem-alpha.5 → 5.6.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 +77 -32
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -403,23 +403,23 @@ declare class IndexDBLogger extends BasicLogger {
|
|
|
403
403
|
*/
|
|
404
404
|
interface ILogDB {
|
|
405
405
|
/**
|
|
406
|
-
*
|
|
406
|
+
* 获取实时日志上报的时间戳记录。
|
|
407
|
+
* 时间戳不以人为维度记录,避免换账户登录时,一次拉取巨量的历史日志。
|
|
407
408
|
*/
|
|
408
|
-
getTimestamp4RealtimeLog(
|
|
409
|
+
getTimestamp4RealtimeLog(): number;
|
|
409
410
|
/**
|
|
410
411
|
* 设置实时日志上报的时间戳记录
|
|
411
|
-
* @param userId 当前用户 ID
|
|
412
412
|
* @param timestamp
|
|
413
413
|
*/
|
|
414
|
-
setTimestamp4RealtimeLog(
|
|
414
|
+
setTimestamp4RealtimeLog(timestamp: number): void;
|
|
415
415
|
/**
|
|
416
416
|
* 根据时间戳和日志等级获取全量日志
|
|
417
417
|
* @param startTime
|
|
418
418
|
* @param endTime
|
|
419
419
|
* @param level
|
|
420
|
-
* @param
|
|
420
|
+
* @param realtimeReport 是否实时上报。实时上报时,需要取质量数据日志
|
|
421
421
|
*/
|
|
422
|
-
getLogs(startTime: number, endTime: number, level: LogL,
|
|
422
|
+
getLogs(startTime: number, endTime: number, level: LogL, realtimeReport: boolean): Promise<{
|
|
423
423
|
logs: ILogData[];
|
|
424
424
|
dbReady: boolean;
|
|
425
425
|
}>;
|
|
@@ -1148,7 +1148,11 @@ declare enum ConnectionStatus {
|
|
|
1148
1148
|
/**
|
|
1149
1149
|
* 证书过期,SDK不会重连
|
|
1150
1150
|
*/
|
|
1151
|
-
RC_LICENSE_EXPIRED = 31030
|
|
1151
|
+
RC_LICENSE_EXPIRED = 31030,
|
|
1152
|
+
/**
|
|
1153
|
+
* Token 错误。
|
|
1154
|
+
*/
|
|
1155
|
+
RC_CONN_USER_OR_PASSWD_ERROR = 31004
|
|
1152
1156
|
}
|
|
1153
1157
|
|
|
1154
1158
|
/**
|
|
@@ -1328,6 +1332,14 @@ declare enum MessageType {
|
|
|
1328
1332
|
* 撤回消息
|
|
1329
1333
|
*/
|
|
1330
1334
|
RECALL = "RC:RcCmd",
|
|
1335
|
+
/**
|
|
1336
|
+
* 撤回通知消息
|
|
1337
|
+
*
|
|
1338
|
+
* 融云定义了 ObjectName 为 `RC:RcNtf` 的撤回通知消息
|
|
1339
|
+
*
|
|
1340
|
+
* PC: recallMessage 会替换聊天记录中的原始消息为一条 objectName 为 `RC:RcNtf` 的撤回通知消息
|
|
1341
|
+
*/
|
|
1342
|
+
RECALL_NOTIFICATION_MESSAGE = "RC:RcNtf",
|
|
1331
1343
|
/**
|
|
1332
1344
|
* 已读同步状态消息
|
|
1333
1345
|
*/
|
|
@@ -1515,7 +1527,6 @@ declare enum LogTagId {
|
|
|
1515
1527
|
L_DESTROY_O = "L_DESTROY_O",
|
|
1516
1528
|
A_CONNECT_T = "A-connect-T",
|
|
1517
1529
|
A_CONNECT_R = "A-connect-R",
|
|
1518
|
-
A_CONNECT_S = "A-connect-S",
|
|
1519
1530
|
A_DISCONNECT_O = "A-disconnect-O",
|
|
1520
1531
|
A_RECONNECT_T = "A-reconnect-T",
|
|
1521
1532
|
A_RECONNECT_R = "A_RECONNECT_R",
|
|
@@ -1532,6 +1543,10 @@ declare enum LogTagId {
|
|
|
1532
1543
|
* 用于保留迁移前的日志,后续删除
|
|
1533
1544
|
*/
|
|
1534
1545
|
O = "L-original-O",
|
|
1546
|
+
/**
|
|
1547
|
+
* 测试日志,不入库,因此不需要关注 TAG,避免调试 TAG 膨胀
|
|
1548
|
+
*/
|
|
1549
|
+
T = "L-TEST-O",
|
|
1535
1550
|
/** 插件安装 */
|
|
1536
1551
|
L_INSTALL_PLUGIN_T = "L-INSTALL_PLUGIN-T",
|
|
1537
1552
|
/** 插件安装结果 */
|
|
@@ -1545,15 +1560,20 @@ declare enum LogTagId {
|
|
|
1545
1560
|
L_PULL_MSG_T = "L-pull_msg-T",
|
|
1546
1561
|
L_PULL_MSG_R = "L-pull_msg-R",
|
|
1547
1562
|
L_PULL_MSG_O = "L-pull_msg-O",
|
|
1548
|
-
A_PULL_MSG_O = "A-pull_msg-O",
|
|
1549
1563
|
L_PULL_ULTRA_MSG_T = "L-pull_ultra_msg-T",
|
|
1550
1564
|
L_PULL_ULTRA_MSG_R = "L-pull_ultra_msg-R",
|
|
1551
1565
|
L_PULL_CHATROOM_KV_T = "L-pull_chatroom_kv-T",
|
|
1552
1566
|
L_PULL_CHATROOM_KV_R = "L-pull_chatroom_kv-R",
|
|
1553
1567
|
L_PULL_CHATROOM_MSG_T = "L-pull_chatroom_msg-T",
|
|
1554
1568
|
L_PULL_CHATROOM_MSG_R = "L-pull_chatroom_msg-R",
|
|
1555
|
-
|
|
1556
|
-
|
|
1569
|
+
/**
|
|
1570
|
+
* 接收到多端同步消息
|
|
1571
|
+
*/
|
|
1572
|
+
L_RECV_MULTI_SYNC_MSG_O = "L-recv_multi_sync_msg-O",
|
|
1573
|
+
/**
|
|
1574
|
+
* 接收到直发消息
|
|
1575
|
+
*/
|
|
1576
|
+
L_RECV_S_MSG_O = "L-recv_s_msg-O",
|
|
1557
1577
|
A_DELETE_MESSAGES_S = "A-delete_messages-S",
|
|
1558
1578
|
P_DELETE_MSG_S = "P-delete_msg-S",
|
|
1559
1579
|
L_PULL_CONVERSATION_S = "L-pull_conversation-S",
|
|
@@ -1585,9 +1605,12 @@ declare enum LogTagId {
|
|
|
1585
1605
|
A_GET_HISTORY_MSG_R = "A-get_history_msg-R",
|
|
1586
1606
|
L_GET_HISTORY_MSG_T = "L-get_history_msg-T",
|
|
1587
1607
|
L_GET_HISTORY_MSG_R = "L-get_history_msg-R",
|
|
1608
|
+
A_GET_PRIVATE_MESSAGE_DELIVER_TIME_E = "A-get_privage_message_deliver_time-E",
|
|
1609
|
+
A_GET_GROUP_MESSAGE_DELIVER_LIST_E = "A-get_group_message_deliver_list-E",
|
|
1588
1610
|
A_CALLBACK_O = "A-callback-O",
|
|
1589
1611
|
A_CALLBACK_E = "A-callback-E",
|
|
1590
1612
|
L_CALLBACK_E = "L-callback-E",
|
|
1613
|
+
A_GET_TOP_CONVERSATION_LIST_E = "A-get_top_conversation_list-E",
|
|
1591
1614
|
/**
|
|
1592
1615
|
* PB 数据编码错误
|
|
1593
1616
|
*/
|
|
@@ -1616,7 +1639,12 @@ declare enum LogTagId {
|
|
|
1616
1639
|
/** 版本号上报 */
|
|
1617
1640
|
L_VER_REPORT_T = "L-VER_REPORT-T",
|
|
1618
1641
|
/** 版本号上报结果 */
|
|
1619
|
-
L_VER_REPORT_R = "L-VER_REPORT-R"
|
|
1642
|
+
L_VER_REPORT_R = "L-VER_REPORT-R",
|
|
1643
|
+
/** 跨进程阻塞调用 */
|
|
1644
|
+
L_CALL_MAIN_SYNC_O = "L_CALL_MAIN_SYNC_O",
|
|
1645
|
+
/** 未知的通知 */
|
|
1646
|
+
L_UNSUPPORT_NTF_FROM_MAIN_E = "L_UNSUPPORT_NTF_FROM_MAIN_E",
|
|
1647
|
+
A_SET_MSG_CONTENT_O = "A_SET_MSG_CONTENT_O"
|
|
1620
1648
|
}
|
|
1621
1649
|
|
|
1622
1650
|
/**
|
|
@@ -2419,6 +2447,13 @@ interface IUltraUnreadMsg {
|
|
|
2419
2447
|
mentionedType?: number;
|
|
2420
2448
|
}
|
|
2421
2449
|
|
|
2450
|
+
interface IMentionInfo {
|
|
2451
|
+
type: MentionedType;
|
|
2452
|
+
/**
|
|
2453
|
+
* 被 @ 的用户 Id 列表,仅在 `type` 为 `2` 时有效
|
|
2454
|
+
*/
|
|
2455
|
+
userIdList: string[];
|
|
2456
|
+
}
|
|
2422
2457
|
/**
|
|
2423
2458
|
* 从服务器拉取到的会话数据结构
|
|
2424
2459
|
* @category Interface
|
|
@@ -2454,16 +2489,7 @@ interface IReceivedConversation {
|
|
|
2454
2489
|
/**
|
|
2455
2490
|
* 消息中的 @ 数据,仅在 `conversationType` 为 `ConversationType.GROUP` 时有效
|
|
2456
2491
|
*/
|
|
2457
|
-
mentionedInfo?:
|
|
2458
|
-
/**
|
|
2459
|
-
* `@ 类型,其中 1 为 @ 所有人,2 为 @ 部分人`
|
|
2460
|
-
*/
|
|
2461
|
-
type: 1 | 2;
|
|
2462
|
-
/**
|
|
2463
|
-
* 被 @ 的用户 Id 列表,仅在 `type` 为 `2` 时有效
|
|
2464
|
-
*/
|
|
2465
|
-
userIdList: string[];
|
|
2466
|
-
} | null;
|
|
2492
|
+
mentionedInfo?: IMentionInfo | null;
|
|
2467
2493
|
/**
|
|
2468
2494
|
* 会话免打扰状态
|
|
2469
2495
|
* @description
|
|
@@ -3866,7 +3892,7 @@ interface IEngine {
|
|
|
3866
3892
|
/**
|
|
3867
3893
|
* 获取消息
|
|
3868
3894
|
*/
|
|
3869
|
-
getMessage(messageId: number): IPromiseResult<IReceivedMessage>;
|
|
3895
|
+
getMessage(messageId: number | string): IPromiseResult<IReceivedMessage>;
|
|
3870
3896
|
/**
|
|
3871
3897
|
* 设置消息内容
|
|
3872
3898
|
*/
|
|
@@ -3938,7 +3964,7 @@ interface IEngine {
|
|
|
3938
3964
|
/**
|
|
3939
3965
|
* 无差别获取本地置顶列表
|
|
3940
3966
|
*/
|
|
3941
|
-
getTopConversationList(): Promise<IAsyncRes<
|
|
3967
|
+
getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
3942
3968
|
/**
|
|
3943
3969
|
* 获取单个群聊会话 @ 消息未读数
|
|
3944
3970
|
*/
|
|
@@ -4189,24 +4215,44 @@ interface IEndRoomPKOptions {
|
|
|
4189
4215
|
/**
|
|
4190
4216
|
* 消息送达相关接口
|
|
4191
4217
|
*/
|
|
4218
|
+
/**
|
|
4219
|
+
* 送达的用户信息
|
|
4220
|
+
* @hidden
|
|
4221
|
+
*/
|
|
4192
4222
|
interface IDeliveredUser {
|
|
4193
4223
|
time: number;
|
|
4194
4224
|
userId: string;
|
|
4195
4225
|
}
|
|
4226
|
+
/**
|
|
4227
|
+
* 获取群组消息送达的状态信息
|
|
4228
|
+
* @hidden
|
|
4229
|
+
*/
|
|
4196
4230
|
interface IGroupMessageDeliverInfo {
|
|
4197
4231
|
totalCount: number;
|
|
4198
4232
|
list: IDeliveredUser[];
|
|
4199
4233
|
}
|
|
4234
|
+
/**
|
|
4235
|
+
* 单聊消息送达通知数据
|
|
4236
|
+
* @hidden
|
|
4237
|
+
*/
|
|
4200
4238
|
interface IMessageDeliver {
|
|
4201
4239
|
deliverTime: number;
|
|
4202
4240
|
messageUId: string;
|
|
4203
4241
|
objectName: string;
|
|
4204
4242
|
targetId: string;
|
|
4205
4243
|
}
|
|
4244
|
+
/**
|
|
4245
|
+
* 群组消息送达通知数据信息
|
|
4246
|
+
* @hidden
|
|
4247
|
+
*/
|
|
4206
4248
|
interface IGroupMessageDeliveredStatusInfo {
|
|
4207
4249
|
MessageUId: string;
|
|
4208
4250
|
deliveryCount: number;
|
|
4209
4251
|
}
|
|
4252
|
+
/**
|
|
4253
|
+
* 群组消息送达通知数据
|
|
4254
|
+
* @hidden
|
|
4255
|
+
*/
|
|
4210
4256
|
interface IGroupMessageDeliverStatus {
|
|
4211
4257
|
totalCount: number;
|
|
4212
4258
|
list: IGroupMessageDeliveredStatusInfo[];
|
|
@@ -4387,7 +4433,7 @@ declare class IndexDBReporter extends BasicReporter {
|
|
|
4387
4433
|
* 初始化 DB 模块,按 APPKEY 分库,后续需要将日志与业务数据库也分开
|
|
4388
4434
|
* @param appkey
|
|
4389
4435
|
* @param logger
|
|
4390
|
-
* @param expireTime 日志有效期,单位 `h`,默认为 `
|
|
4436
|
+
* @param expireTime 日志有效期,单位 `h`,默认为 `168h`
|
|
4391
4437
|
*/
|
|
4392
4438
|
declare const initLogDB: (appkey: string, logger: ILogger, expireTime?: number) => void;
|
|
4393
4439
|
/**
|
|
@@ -5095,7 +5141,7 @@ interface IAPIContextOption {
|
|
|
5095
5141
|
*/
|
|
5096
5142
|
__reportLogLevel?: EnableLogL;
|
|
5097
5143
|
/**
|
|
5098
|
-
* IndexDB
|
|
5144
|
+
* IndexDB 数据库内的日志有效期,单位为小时,有效值为 `24` - `168`,默认 IndexDB 内日志数据有效期 168 小时
|
|
5099
5145
|
*/
|
|
5100
5146
|
logExpireTime?: number;
|
|
5101
5147
|
}
|
|
@@ -5701,7 +5747,7 @@ declare class APIContext {
|
|
|
5701
5747
|
/**
|
|
5702
5748
|
* 获取所有本地置顶列表
|
|
5703
5749
|
*/
|
|
5704
|
-
getTopConversationList(): Promise<IAsyncRes<
|
|
5750
|
+
getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
5705
5751
|
getUnreadMentionedCount(conversation: IConversationOption): Promise<IAsyncRes<number>>;
|
|
5706
5752
|
/**
|
|
5707
5753
|
* 获取所有群聊会话 @ 消息未读数
|
|
@@ -5836,7 +5882,7 @@ declare class APIContext {
|
|
|
5836
5882
|
/**
|
|
5837
5883
|
* 获取本地消息
|
|
5838
5884
|
*/
|
|
5839
|
-
getMessage(messageId: number): Promise<IAsyncRes<IReceivedMessage>>;
|
|
5885
|
+
getMessage(messageId: number | string): Promise<IAsyncRes<IReceivedMessage>>;
|
|
5840
5886
|
/**
|
|
5841
5887
|
* 设置消息内容
|
|
5842
5888
|
*/
|
|
@@ -6361,7 +6407,6 @@ declare abstract class AEngine implements IEngine {
|
|
|
6361
6407
|
*/
|
|
6362
6408
|
registerRTCSignalingListener(listener: ((buffer: Uint8Array) => void) | undefined): void;
|
|
6363
6409
|
abstract requestNaviInfo(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
6364
|
-
abstract updateNaviInfo(naviInfo: INaviInfo): void;
|
|
6365
6410
|
/**
|
|
6366
6411
|
* 为非 engine 包创建 logger 工具实例
|
|
6367
6412
|
*/
|
|
@@ -6897,7 +6942,7 @@ declare abstract class AEngine implements IEngine {
|
|
|
6897
6942
|
/**
|
|
6898
6943
|
* 获取消息
|
|
6899
6944
|
*/
|
|
6900
|
-
abstract getMessage(messageId: number): IPromiseResult<IReceivedMessage>;
|
|
6945
|
+
abstract getMessage(messageId: number | string): IPromiseResult<IReceivedMessage>;
|
|
6901
6946
|
/**
|
|
6902
6947
|
* 设置消息内容
|
|
6903
6948
|
*/
|
|
@@ -7002,7 +7047,7 @@ declare abstract class AEngine implements IEngine {
|
|
|
7002
7047
|
/**
|
|
7003
7048
|
* 无差别获取本地置顶列表
|
|
7004
7049
|
*/
|
|
7005
|
-
abstract getTopConversationList(): Promise<IAsyncRes<
|
|
7050
|
+
abstract getTopConversationList(conversationTypes: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
7006
7051
|
/**
|
|
7007
7052
|
* 获取单个群聊会话 @ 消息未读数
|
|
7008
7053
|
*/
|
|
@@ -7647,4 +7692,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
7647
7692
|
*/
|
|
7648
7693
|
declare const version: string;
|
|
7649
7694
|
|
|
7650
|
-
export { AEngine, APIContext, AbsCodec, AppStorage, AssertRules, BasicLogger, BasicReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, Codec, CodecPBMaps, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, EnableLogL, ErrorCode, EventEmitter, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBigdataLogInit, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IInitBigDataOption, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogExtensions, ILogInfo, ILogInit, 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, INaviInfo, IOSInfo, IOperateStatusNotify, IPluginGenerator, IProcessInfo, 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, 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, LOG_REPORT_URI, 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, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, StoreKeys, TagChangeType, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, deInitLogDB, logger as engineLogger, forEach, formatConnectResponseCode, getBrowser, getClientMessageId, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, initLogDB, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, transcsv, usingCppEngine, validate, version };
|
|
7695
|
+
export { AEngine, APIContext, AbsCodec, AppStorage, AssertRules, BasicLogger, BasicReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, Codec, CodecPBMaps, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, EnableLogL, ErrorCode, EventEmitter, FileType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBigdataLogInit, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IInitBigDataOption, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogExtensions, ILogInfo, ILogInit, 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, INaviInfo, IOSInfo, IOperateStatusNotify, IPluginGenerator, IProcessInfo, 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, 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, LOG_REPORT_URI, 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, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, StoreKeys, TagChangeType, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, deInitLogDB, logger as engineLogger, forEach, formatConnectResponseCode, getBrowser, getClientMessageId, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, initLogDB, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, transcsv, usingCppEngine, validate, version };
|