@rongcloud/engine 5.6.0-beem → 5.6.0-enterprise.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 +109 -51
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -350,32 +350,6 @@ interface ILogData {
|
|
|
350
350
|
*/
|
|
351
351
|
traceId?: string;
|
|
352
352
|
}
|
|
353
|
-
/**
|
|
354
|
-
* 日志数据库接口
|
|
355
|
-
*/
|
|
356
|
-
interface ILogDB {
|
|
357
|
-
/**
|
|
358
|
-
* 获取实时日志上报的时间戳记录
|
|
359
|
-
*/
|
|
360
|
-
getTimestamp4RealtimeLog(userId: string): Promise<number>;
|
|
361
|
-
/**
|
|
362
|
-
* 设置实时日志上报的时间戳记录
|
|
363
|
-
* @param userId 当前用户 ID
|
|
364
|
-
* @param timestamp
|
|
365
|
-
*/
|
|
366
|
-
setTimestamp4RealtimeLog(userId: string, timestamp: number): Promise<void>;
|
|
367
|
-
/**
|
|
368
|
-
* 根据时间戳和日志等级获取全量日志
|
|
369
|
-
* @param startTime
|
|
370
|
-
* @param endTime
|
|
371
|
-
* @param level
|
|
372
|
-
* @param includeStatistics 是否包含质量统计日志
|
|
373
|
-
*/
|
|
374
|
-
getLogs(startTime: number, endTime: number, level: LogL, includeStatistics: boolean): Promise<{
|
|
375
|
-
logs: ILogData[];
|
|
376
|
-
dbReady: boolean;
|
|
377
|
-
}>;
|
|
378
|
-
}
|
|
379
353
|
|
|
380
354
|
/**
|
|
381
355
|
* Logger 抽象基类,定义日志采集接口与进程内打印,
|
|
@@ -424,6 +398,33 @@ declare class IndexDBLogger extends BasicLogger {
|
|
|
424
398
|
protected flush(data: ILogData): void;
|
|
425
399
|
}
|
|
426
400
|
|
|
401
|
+
/**
|
|
402
|
+
* 日志数据库接口
|
|
403
|
+
*/
|
|
404
|
+
interface ILogDB {
|
|
405
|
+
/**
|
|
406
|
+
* 获取实时日志上报的时间戳记录。
|
|
407
|
+
* 时间戳不以人为维度记录,避免换账户登录时,一次拉取巨量的历史日志。
|
|
408
|
+
*/
|
|
409
|
+
getTimestamp4RealtimeLog(): number;
|
|
410
|
+
/**
|
|
411
|
+
* 设置实时日志上报的时间戳记录
|
|
412
|
+
* @param timestamp
|
|
413
|
+
*/
|
|
414
|
+
setTimestamp4RealtimeLog(timestamp: number): void;
|
|
415
|
+
/**
|
|
416
|
+
* 根据时间戳和日志等级获取全量日志
|
|
417
|
+
* @param startTime
|
|
418
|
+
* @param endTime
|
|
419
|
+
* @param level
|
|
420
|
+
* @param realtimeReport 是否实时上报。实时上报时,需要取质量数据日志
|
|
421
|
+
*/
|
|
422
|
+
getLogs(startTime: number, endTime: number, level: LogL, realtimeReport: boolean): Promise<{
|
|
423
|
+
logs: ILogData[];
|
|
424
|
+
dbReady: boolean;
|
|
425
|
+
}>;
|
|
426
|
+
}
|
|
427
|
+
|
|
427
428
|
/**
|
|
428
429
|
* 消息被拦截类型
|
|
429
430
|
* @category Enum
|
|
@@ -1147,7 +1148,11 @@ declare enum ConnectionStatus {
|
|
|
1147
1148
|
/**
|
|
1148
1149
|
* 证书过期,SDK不会重连
|
|
1149
1150
|
*/
|
|
1150
|
-
RC_LICENSE_EXPIRED = 31030
|
|
1151
|
+
RC_LICENSE_EXPIRED = 31030,
|
|
1152
|
+
/**
|
|
1153
|
+
* Token 错误。
|
|
1154
|
+
*/
|
|
1155
|
+
RC_CONN_USER_OR_PASSWD_ERROR = 31004
|
|
1151
1156
|
}
|
|
1152
1157
|
|
|
1153
1158
|
/**
|
|
@@ -1514,7 +1519,6 @@ declare enum LogTagId {
|
|
|
1514
1519
|
L_DESTROY_O = "L_DESTROY_O",
|
|
1515
1520
|
A_CONNECT_T = "A-connect-T",
|
|
1516
1521
|
A_CONNECT_R = "A-connect-R",
|
|
1517
|
-
A_CONNECT_S = "A-connect-S",
|
|
1518
1522
|
A_DISCONNECT_O = "A-disconnect-O",
|
|
1519
1523
|
A_RECONNECT_T = "A-reconnect-T",
|
|
1520
1524
|
A_RECONNECT_R = "A_RECONNECT_R",
|
|
@@ -1531,6 +1535,10 @@ declare enum LogTagId {
|
|
|
1531
1535
|
* 用于保留迁移前的日志,后续删除
|
|
1532
1536
|
*/
|
|
1533
1537
|
O = "L-original-O",
|
|
1538
|
+
/**
|
|
1539
|
+
* 测试日志,不入库,因此不需要关注 TAG,避免调试 TAG 膨胀
|
|
1540
|
+
*/
|
|
1541
|
+
T = "L-TEST-O",
|
|
1534
1542
|
/** 插件安装 */
|
|
1535
1543
|
L_INSTALL_PLUGIN_T = "L-INSTALL_PLUGIN-T",
|
|
1536
1544
|
/** 插件安装结果 */
|
|
@@ -1544,15 +1552,20 @@ declare enum LogTagId {
|
|
|
1544
1552
|
L_PULL_MSG_T = "L-pull_msg-T",
|
|
1545
1553
|
L_PULL_MSG_R = "L-pull_msg-R",
|
|
1546
1554
|
L_PULL_MSG_O = "L-pull_msg-O",
|
|
1547
|
-
A_PULL_MSG_O = "A-pull_msg-O",
|
|
1548
1555
|
L_PULL_ULTRA_MSG_T = "L-pull_ultra_msg-T",
|
|
1549
1556
|
L_PULL_ULTRA_MSG_R = "L-pull_ultra_msg-R",
|
|
1550
1557
|
L_PULL_CHATROOM_KV_T = "L-pull_chatroom_kv-T",
|
|
1551
1558
|
L_PULL_CHATROOM_KV_R = "L-pull_chatroom_kv-R",
|
|
1552
1559
|
L_PULL_CHATROOM_MSG_T = "L-pull_chatroom_msg-T",
|
|
1553
1560
|
L_PULL_CHATROOM_MSG_R = "L-pull_chatroom_msg-R",
|
|
1554
|
-
|
|
1555
|
-
|
|
1561
|
+
/**
|
|
1562
|
+
* 接收到多端同步消息
|
|
1563
|
+
*/
|
|
1564
|
+
L_RECV_MULTI_SYNC_MSG_O = "L-recv_multi_sync_msg-O",
|
|
1565
|
+
/**
|
|
1566
|
+
* 接收到直发消息
|
|
1567
|
+
*/
|
|
1568
|
+
L_RECV_S_MSG_O = "L-recv_s_msg-O",
|
|
1556
1569
|
A_DELETE_MESSAGES_S = "A-delete_messages-S",
|
|
1557
1570
|
P_DELETE_MSG_S = "P-delete_msg-S",
|
|
1558
1571
|
L_PULL_CONVERSATION_S = "L-pull_conversation-S",
|
|
@@ -1584,9 +1597,12 @@ declare enum LogTagId {
|
|
|
1584
1597
|
A_GET_HISTORY_MSG_R = "A-get_history_msg-R",
|
|
1585
1598
|
L_GET_HISTORY_MSG_T = "L-get_history_msg-T",
|
|
1586
1599
|
L_GET_HISTORY_MSG_R = "L-get_history_msg-R",
|
|
1600
|
+
A_GET_PRIVATE_MESSAGE_DELIVER_TIME_E = "A-get_privage_message_deliver_time-E",
|
|
1601
|
+
A_GET_GROUP_MESSAGE_DELIVER_LIST_E = "A-get_group_message_deliver_list-E",
|
|
1587
1602
|
A_CALLBACK_O = "A-callback-O",
|
|
1588
1603
|
A_CALLBACK_E = "A-callback-E",
|
|
1589
1604
|
L_CALLBACK_E = "L-callback-E",
|
|
1605
|
+
A_GET_TOP_CONVERSATION_LIST_E = "A-get_top_conversation_list-E",
|
|
1590
1606
|
/**
|
|
1591
1607
|
* PB 数据编码错误
|
|
1592
1608
|
*/
|
|
@@ -1606,6 +1622,7 @@ declare enum LogTagId {
|
|
|
1606
1622
|
L_LOGDB_ABORT_S = "L-logDB_abort-S",
|
|
1607
1623
|
/** 实时日志上报 */
|
|
1608
1624
|
L_REALTIME_LOG_R = "L_REALTIME_LOG_R",
|
|
1625
|
+
L_REALTIME_LOG_O = "L_REALTIME_LOG_O",
|
|
1609
1626
|
/** 实时日志上报结果 */
|
|
1610
1627
|
L_REALTIME_LOG_T = "L_REALTIME_LOG_T",
|
|
1611
1628
|
L_UNKNOWN_TOPIC_E = "L_UNKNOWN_TOPIC_E",
|
|
@@ -1614,7 +1631,12 @@ declare enum LogTagId {
|
|
|
1614
1631
|
/** 版本号上报 */
|
|
1615
1632
|
L_VER_REPORT_T = "L-VER_REPORT-T",
|
|
1616
1633
|
/** 版本号上报结果 */
|
|
1617
|
-
L_VER_REPORT_R = "L-VER_REPORT-R"
|
|
1634
|
+
L_VER_REPORT_R = "L-VER_REPORT-R",
|
|
1635
|
+
/** 跨进程阻塞调用 */
|
|
1636
|
+
L_CALL_MAIN_SYNC_O = "L_CALL_MAIN_SYNC_O",
|
|
1637
|
+
/** 未知的通知 */
|
|
1638
|
+
L_UNSUPPORT_NTF_FROM_MAIN_E = "L_UNSUPPORT_NTF_FROM_MAIN_E",
|
|
1639
|
+
A_SET_MSG_CONTENT_O = "A_SET_MSG_CONTENT_O"
|
|
1618
1640
|
}
|
|
1619
1641
|
|
|
1620
1642
|
/**
|
|
@@ -2417,6 +2439,13 @@ interface IUltraUnreadMsg {
|
|
|
2417
2439
|
mentionedType?: number;
|
|
2418
2440
|
}
|
|
2419
2441
|
|
|
2442
|
+
interface IMentionInfo {
|
|
2443
|
+
type: MentionedType;
|
|
2444
|
+
/**
|
|
2445
|
+
* 被 @ 的用户 Id 列表,仅在 `type` 为 `2` 时有效
|
|
2446
|
+
*/
|
|
2447
|
+
userIdList: string[];
|
|
2448
|
+
}
|
|
2420
2449
|
/**
|
|
2421
2450
|
* 从服务器拉取到的会话数据结构
|
|
2422
2451
|
* @category Interface
|
|
@@ -2452,16 +2481,7 @@ interface IReceivedConversation {
|
|
|
2452
2481
|
/**
|
|
2453
2482
|
* 消息中的 @ 数据,仅在 `conversationType` 为 `ConversationType.GROUP` 时有效
|
|
2454
2483
|
*/
|
|
2455
|
-
mentionedInfo?:
|
|
2456
|
-
/**
|
|
2457
|
-
* `@ 类型,其中 1 为 @ 所有人,2 为 @ 部分人`
|
|
2458
|
-
*/
|
|
2459
|
-
type: 1 | 2;
|
|
2460
|
-
/**
|
|
2461
|
-
* 被 @ 的用户 Id 列表,仅在 `type` 为 `2` 时有效
|
|
2462
|
-
*/
|
|
2463
|
-
userIdList: string[];
|
|
2464
|
-
} | null;
|
|
2484
|
+
mentionedInfo?: IMentionInfo | null;
|
|
2465
2485
|
/**
|
|
2466
2486
|
* 会话免打扰状态
|
|
2467
2487
|
* @description
|
|
@@ -3936,7 +3956,7 @@ interface IEngine {
|
|
|
3936
3956
|
/**
|
|
3937
3957
|
* 无差别获取本地置顶列表
|
|
3938
3958
|
*/
|
|
3939
|
-
getTopConversationList(): Promise<IAsyncRes<
|
|
3959
|
+
getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
3940
3960
|
/**
|
|
3941
3961
|
* 获取单个群聊会话 @ 消息未读数
|
|
3942
3962
|
*/
|
|
@@ -4187,24 +4207,44 @@ interface IEndRoomPKOptions {
|
|
|
4187
4207
|
/**
|
|
4188
4208
|
* 消息送达相关接口
|
|
4189
4209
|
*/
|
|
4210
|
+
/**
|
|
4211
|
+
* 送达的用户信息
|
|
4212
|
+
* @hidden
|
|
4213
|
+
*/
|
|
4190
4214
|
interface IDeliveredUser {
|
|
4191
4215
|
time: number;
|
|
4192
4216
|
userId: string;
|
|
4193
4217
|
}
|
|
4218
|
+
/**
|
|
4219
|
+
* 获取群组消息送达的状态信息
|
|
4220
|
+
* @hidden
|
|
4221
|
+
*/
|
|
4194
4222
|
interface IGroupMessageDeliverInfo {
|
|
4195
4223
|
totalCount: number;
|
|
4196
4224
|
list: IDeliveredUser[];
|
|
4197
4225
|
}
|
|
4226
|
+
/**
|
|
4227
|
+
* 单聊消息送达通知数据
|
|
4228
|
+
* @hidden
|
|
4229
|
+
*/
|
|
4198
4230
|
interface IMessageDeliver {
|
|
4199
4231
|
deliverTime: number;
|
|
4200
4232
|
messageUId: string;
|
|
4201
4233
|
objectName: string;
|
|
4202
4234
|
targetId: string;
|
|
4203
4235
|
}
|
|
4236
|
+
/**
|
|
4237
|
+
* 群组消息送达通知数据信息
|
|
4238
|
+
* @hidden
|
|
4239
|
+
*/
|
|
4204
4240
|
interface IGroupMessageDeliveredStatusInfo {
|
|
4205
4241
|
MessageUId: string;
|
|
4206
4242
|
deliveryCount: number;
|
|
4207
4243
|
}
|
|
4244
|
+
/**
|
|
4245
|
+
* 群组消息送达通知数据
|
|
4246
|
+
* @hidden
|
|
4247
|
+
*/
|
|
4208
4248
|
interface IGroupMessageDeliverStatus {
|
|
4209
4249
|
totalCount: number;
|
|
4210
4250
|
list: IGroupMessageDeliveredStatusInfo[];
|
|
@@ -4316,8 +4356,11 @@ declare abstract class BasicReporter {
|
|
|
4316
4356
|
* 实时日志上报
|
|
4317
4357
|
* @override IndexDBReporter 重载此方法,增加同设备多页面多端时进程竞争检测
|
|
4318
4358
|
*/
|
|
4319
|
-
protected realtimeReport(
|
|
4320
|
-
|
|
4359
|
+
protected realtimeReport(uri: string, level: LogL, itv: number): Promise<void>;
|
|
4360
|
+
protected abstract compressLogs(logs: ILogData[]): Promise<{
|
|
4361
|
+
success: boolean;
|
|
4362
|
+
data: string;
|
|
4363
|
+
}>;
|
|
4321
4364
|
/**
|
|
4322
4365
|
* 处理下消息拉日志,以拉取包含 `LogL.DEBUG` 级别的全量日志
|
|
4323
4366
|
* @param startTime 拉取起始时间
|
|
@@ -4328,7 +4371,6 @@ declare abstract class BasicReporter {
|
|
|
4328
4371
|
* @param messageUId 消息 messageUId
|
|
4329
4372
|
*/
|
|
4330
4373
|
report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string): Promise<void>;
|
|
4331
|
-
private transcsv;
|
|
4332
4374
|
/**
|
|
4333
4375
|
* 以 `POST` 方法向服务发送日志数据
|
|
4334
4376
|
* @param url
|
|
@@ -4357,6 +4399,10 @@ declare class IndexDBReporter extends BasicReporter {
|
|
|
4357
4399
|
* @override 重写实现
|
|
4358
4400
|
*/
|
|
4359
4401
|
checkStart(navi: INaviInfo): Promise<void>;
|
|
4402
|
+
protected compressLogs(logs: ILogData[]): Promise<{
|
|
4403
|
+
success: boolean;
|
|
4404
|
+
data: string;
|
|
4405
|
+
}>;
|
|
4360
4406
|
/**
|
|
4361
4407
|
* 进程竞争检测,检查是否为执行上报的进程
|
|
4362
4408
|
* @param callback
|
|
@@ -4378,14 +4424,23 @@ declare class IndexDBReporter extends BasicReporter {
|
|
|
4378
4424
|
/**
|
|
4379
4425
|
* 初始化 DB 模块,按 APPKEY 分库,后续需要将日志与业务数据库也分开
|
|
4380
4426
|
* @param appkey
|
|
4427
|
+
* @param logger
|
|
4428
|
+
* @param expireTime 日志有效期,单位 `h`,默认为 `168h`
|
|
4381
4429
|
*/
|
|
4382
|
-
declare const initLogDB: (appkey: string, logger: ILogger) => void;
|
|
4430
|
+
declare const initLogDB: (appkey: string, logger: ILogger, expireTime?: number) => void;
|
|
4383
4431
|
/**
|
|
4384
4432
|
* IndexDB 日志数据库反初始化,在切换 APPKEY 时调用
|
|
4385
4433
|
* @returns
|
|
4386
4434
|
*/
|
|
4387
4435
|
declare const deInitLogDB: () => Promise<void>;
|
|
4388
4436
|
|
|
4437
|
+
/**
|
|
4438
|
+
* 日志数据转为 csv 结构数据
|
|
4439
|
+
* @param log
|
|
4440
|
+
* @returns
|
|
4441
|
+
*/
|
|
4442
|
+
declare const transcsv: (log: ILogData) => string;
|
|
4443
|
+
|
|
4389
4444
|
/**
|
|
4390
4445
|
* @description
|
|
4391
4446
|
* 读数据处理基类
|
|
@@ -5077,6 +5132,10 @@ interface IAPIContextOption {
|
|
|
5077
5132
|
* @deprecated
|
|
5078
5133
|
*/
|
|
5079
5134
|
__reportLogLevel?: EnableLogL;
|
|
5135
|
+
/**
|
|
5136
|
+
* IndexDB 数据库内的日志有效期,单位为小时,有效值为 `24` - `168`,默认 IndexDB 内日志数据有效期 168 小时
|
|
5137
|
+
*/
|
|
5138
|
+
logExpireTime?: number;
|
|
5080
5139
|
}
|
|
5081
5140
|
|
|
5082
5141
|
interface IPluginGenerator<API, InitOption> {
|
|
@@ -5680,7 +5739,7 @@ declare class APIContext {
|
|
|
5680
5739
|
/**
|
|
5681
5740
|
* 获取所有本地置顶列表
|
|
5682
5741
|
*/
|
|
5683
|
-
getTopConversationList(): Promise<IAsyncRes<
|
|
5742
|
+
getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
5684
5743
|
getUnreadMentionedCount(conversation: IConversationOption): Promise<IAsyncRes<number>>;
|
|
5685
5744
|
/**
|
|
5686
5745
|
* 获取所有群聊会话 @ 消息未读数
|
|
@@ -6340,7 +6399,6 @@ declare abstract class AEngine implements IEngine {
|
|
|
6340
6399
|
*/
|
|
6341
6400
|
registerRTCSignalingListener(listener: ((buffer: Uint8Array) => void) | undefined): void;
|
|
6342
6401
|
abstract requestNaviInfo(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
6343
|
-
abstract updateNaviInfo(naviInfo: INaviInfo): void;
|
|
6344
6402
|
/**
|
|
6345
6403
|
* 为非 engine 包创建 logger 工具实例
|
|
6346
6404
|
*/
|
|
@@ -6981,7 +7039,7 @@ declare abstract class AEngine implements IEngine {
|
|
|
6981
7039
|
/**
|
|
6982
7040
|
* 无差别获取本地置顶列表
|
|
6983
7041
|
*/
|
|
6984
|
-
abstract getTopConversationList(): Promise<IAsyncRes<
|
|
7042
|
+
abstract getTopConversationList(conversationTypes: ConversationType[], channelId?: string): Promise<IAsyncRes<IReceivedConversation[]>>;
|
|
6985
7043
|
/**
|
|
6986
7044
|
* 获取单个群聊会话 @ 消息未读数
|
|
6987
7045
|
*/
|
|
@@ -7626,4 +7684,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
7626
7684
|
*/
|
|
7627
7685
|
declare const version: string;
|
|
7628
7686
|
|
|
7629
|
-
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, usingCppEngine, validate, version };
|
|
7687
|
+
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 };
|