@rongcloud/engine 5.5.1 → 5.5.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 +227 -10
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -540,7 +540,7 @@ declare enum ErrorCode {
|
|
|
540
540
|
/**
|
|
541
541
|
* HTTP 请求失败。
|
|
542
542
|
*/
|
|
543
|
-
|
|
543
|
+
RC_HTTP_REQ_FAIL = 30005,
|
|
544
544
|
/**
|
|
545
545
|
* HTTP 接收失败。
|
|
546
546
|
*/
|
|
@@ -992,7 +992,7 @@ declare enum ConnectionStatus {
|
|
|
992
992
|
*/
|
|
993
993
|
APPKEY_IS_FAKE = 20,
|
|
994
994
|
/**
|
|
995
|
-
*
|
|
995
|
+
* Electron 中,其他端登录,本端禁止连接和重连
|
|
996
996
|
*/
|
|
997
997
|
FORBID_RECONNECT_BY_OTHER_SAME_CLIENT = 31023,
|
|
998
998
|
/**
|
|
@@ -1356,6 +1356,8 @@ declare enum LogTagId {
|
|
|
1356
1356
|
L_CONNECT_S = "L-connect-S",
|
|
1357
1357
|
P_CONNECT_O = "P-connect-O",
|
|
1358
1358
|
P_CONNECT_S = "P-connect-S",
|
|
1359
|
+
L_NOTIFY_ULTRA_ONLINE_S = "L-notify-ultra-online-S",
|
|
1360
|
+
L_ULTRA_SYNC_DONE_S = "L-ultra-sync-done-S",
|
|
1359
1361
|
A_SEND_MSG_T = "A-send_msg-T",
|
|
1360
1362
|
A_SEND_MSG_R = "A-send_msg-R",
|
|
1361
1363
|
P_SEND_MSG_T = "P-send_msg-T",
|
|
@@ -1413,7 +1415,10 @@ declare enum LogTagId {
|
|
|
1413
1415
|
*/
|
|
1414
1416
|
L_PB_ENCODE_E = "L-pb-encode-E",
|
|
1415
1417
|
L_PB_DECODE_E = "L-pb-decode-E",
|
|
1416
|
-
L_NOTIFY_NAVI_CHANGE_E = "L-notify_navi_change-E"
|
|
1418
|
+
L_NOTIFY_NAVI_CHANGE_E = "L-notify_navi_change-E",
|
|
1419
|
+
L_REPORT_FULL_LOG_O = "L-report_full_log-O",
|
|
1420
|
+
L_REPORT_FULL_LOG_T = "L-report_full_log-T",
|
|
1421
|
+
L_REPORT_FULL_LOG_R = "L-report_full_log-R"
|
|
1417
1422
|
}
|
|
1418
1423
|
|
|
1419
1424
|
/**
|
|
@@ -2249,6 +2254,44 @@ interface IBlockedMessageInfo {
|
|
|
2249
2254
|
[key: string]: any;
|
|
2250
2255
|
};
|
|
2251
2256
|
}
|
|
2257
|
+
/**
|
|
2258
|
+
* 超级群获取指定会话未读 @ 消息列表参数
|
|
2259
|
+
*/
|
|
2260
|
+
interface IUltraGroupUnreadMentionedOption {
|
|
2261
|
+
/**
|
|
2262
|
+
* 会话 ID
|
|
2263
|
+
*/
|
|
2264
|
+
targetId: string;
|
|
2265
|
+
/**
|
|
2266
|
+
* 频道 ID
|
|
2267
|
+
*/
|
|
2268
|
+
channelId?: string;
|
|
2269
|
+
/**
|
|
2270
|
+
* 消息的时间戳,首次获取传 0, 后续查询传未读 @ 列表中的消息时间戳
|
|
2271
|
+
*/
|
|
2272
|
+
sentTime: number;
|
|
2273
|
+
/**
|
|
2274
|
+
* 数据个数,最大50
|
|
2275
|
+
*/
|
|
2276
|
+
count: number;
|
|
2277
|
+
}
|
|
2278
|
+
/**
|
|
2279
|
+
* 超级群获取指定会话 @ 未读消息列表结果
|
|
2280
|
+
*/
|
|
2281
|
+
interface IUltraUnreadMsg {
|
|
2282
|
+
/**
|
|
2283
|
+
* 消息 ID
|
|
2284
|
+
*/
|
|
2285
|
+
messageUId?: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* 消息时间戳
|
|
2288
|
+
*/
|
|
2289
|
+
sentTime: number;
|
|
2290
|
+
/**
|
|
2291
|
+
* @ 类型: 1 所有人;2: 部分人
|
|
2292
|
+
*/
|
|
2293
|
+
mentionedType?: number;
|
|
2294
|
+
}
|
|
2252
2295
|
|
|
2253
2296
|
/**
|
|
2254
2297
|
* TODO: 确定对外暴露的必要性
|
|
@@ -2339,6 +2382,10 @@ interface IReceivedConversationByTag extends IReceivedConversation {
|
|
|
2339
2382
|
}
|
|
2340
2383
|
interface IUltraGroupConversation extends IReceivedConversation {
|
|
2341
2384
|
channelType?: UltraGroupChannelType;
|
|
2385
|
+
/**
|
|
2386
|
+
* 第一条未读消息
|
|
2387
|
+
*/
|
|
2388
|
+
firstUnreadMessage?: IUltraUnreadMsg | null;
|
|
2342
2389
|
}
|
|
2343
2390
|
/**
|
|
2344
2391
|
* 设置会话状态 参数 信息
|
|
@@ -2433,6 +2480,13 @@ interface IUltraChannelDeleteInfo {
|
|
|
2433
2480
|
channelType: UltraGroupChannelType;
|
|
2434
2481
|
deleteTime: number;
|
|
2435
2482
|
}
|
|
2483
|
+
/**
|
|
2484
|
+
* 获取超级群获取指定会话未读 @ 消息列表
|
|
2485
|
+
*/
|
|
2486
|
+
interface IUltraUnreadConversation {
|
|
2487
|
+
targetId: string;
|
|
2488
|
+
channelId?: string;
|
|
2489
|
+
}
|
|
2436
2490
|
|
|
2437
2491
|
/**
|
|
2438
2492
|
* 导航信息数据就结构
|
|
@@ -2590,7 +2644,12 @@ interface INaviInfo {
|
|
|
2590
2644
|
bosAddr?: string;
|
|
2591
2645
|
/**
|
|
2592
2646
|
* 阿里上传配置,字符串数组,数组顺序代表 七牛、百度、阿里云 上传权重
|
|
2593
|
-
* @example
|
|
2647
|
+
* @example
|
|
2648
|
+
* ```
|
|
2649
|
+
* `[{"qiniu":"upload.qiniup.com","p":"1"},
|
|
2650
|
+
* {"baidu":"gz.bcebos.com","p":"2"},
|
|
2651
|
+
* {"aliyun":"oss-cn-beijing.aliyuncs.com","p":"3"}]`
|
|
2652
|
+
* ```
|
|
2594
2653
|
*/
|
|
2595
2654
|
ossConfig?: string;
|
|
2596
2655
|
/**
|
|
@@ -3134,6 +3193,96 @@ interface IExtraMethod {
|
|
|
3134
3193
|
updateMessageReceiptStatus(conersationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<IAsyncRes<boolean>>;
|
|
3135
3194
|
}
|
|
3136
3195
|
|
|
3196
|
+
/**
|
|
3197
|
+
* 当前运行时设备信息
|
|
3198
|
+
*/
|
|
3199
|
+
interface IOSInfo {
|
|
3200
|
+
/** 软件运行时的 CPU 架构信息 */
|
|
3201
|
+
arch: string;
|
|
3202
|
+
/** 平台标识 */
|
|
3203
|
+
platform: string;
|
|
3204
|
+
/** 操作系统名称 */
|
|
3205
|
+
type: string;
|
|
3206
|
+
/** 操作系统 release 标识 */
|
|
3207
|
+
release: string;
|
|
3208
|
+
/** 操作系统版本信息 */
|
|
3209
|
+
version: string;
|
|
3210
|
+
/** 内存余量 */
|
|
3211
|
+
freemem: number;
|
|
3212
|
+
/** 系统内存总量 */
|
|
3213
|
+
totalmem: number;
|
|
3214
|
+
/** 本次操作系统运行时长 */
|
|
3215
|
+
uptime: number;
|
|
3216
|
+
cpus: {
|
|
3217
|
+
/** CPU 型号标识 */
|
|
3218
|
+
model: string;
|
|
3219
|
+
/** 主频 MHz */
|
|
3220
|
+
speed: number;
|
|
3221
|
+
times: {
|
|
3222
|
+
user: number;
|
|
3223
|
+
nice: number;
|
|
3224
|
+
sys: number;
|
|
3225
|
+
idle: number;
|
|
3226
|
+
irq: number;
|
|
3227
|
+
};
|
|
3228
|
+
}[];
|
|
3229
|
+
networkInterfaces: {
|
|
3230
|
+
/** 网卡接口标识 */
|
|
3231
|
+
[link: string]: {
|
|
3232
|
+
/** IP */
|
|
3233
|
+
address: string;
|
|
3234
|
+
/** 子网掩码 */
|
|
3235
|
+
netmask: string;
|
|
3236
|
+
/** IP 协议版本 */
|
|
3237
|
+
family: string;
|
|
3238
|
+
/** Mac Address */
|
|
3239
|
+
mac: string;
|
|
3240
|
+
/** 是否回环地址 */
|
|
3241
|
+
internal: boolean;
|
|
3242
|
+
/** CIDR */
|
|
3243
|
+
cidr: string | null;
|
|
3244
|
+
}[] | undefined;
|
|
3245
|
+
};
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
interface IProcessInfo {
|
|
3249
|
+
title: string;
|
|
3250
|
+
platform: string;
|
|
3251
|
+
arch: string;
|
|
3252
|
+
pid: number;
|
|
3253
|
+
ppid: number;
|
|
3254
|
+
uptime: number;
|
|
3255
|
+
cpuUsage: {
|
|
3256
|
+
user: number;
|
|
3257
|
+
system: number;
|
|
3258
|
+
};
|
|
3259
|
+
memoryUsage: {
|
|
3260
|
+
rss: number;
|
|
3261
|
+
heapTotal: number;
|
|
3262
|
+
heapUsed: number;
|
|
3263
|
+
external: number;
|
|
3264
|
+
arrayBuffers: number;
|
|
3265
|
+
};
|
|
3266
|
+
resourceUsage: {
|
|
3267
|
+
userCPUTime: number;
|
|
3268
|
+
systemCPUTime: number;
|
|
3269
|
+
maxRSS: number;
|
|
3270
|
+
sharedMemorySize: number;
|
|
3271
|
+
unsharedDataSize: number;
|
|
3272
|
+
unsharedStackSize: number;
|
|
3273
|
+
minorPageFault: number;
|
|
3274
|
+
majorPageFault: number;
|
|
3275
|
+
swappedOut: number;
|
|
3276
|
+
fsRead: number;
|
|
3277
|
+
fsWrite: number;
|
|
3278
|
+
ipcSent: number;
|
|
3279
|
+
ipcReceived: number;
|
|
3280
|
+
signalsCount: number;
|
|
3281
|
+
voluntaryContextSwitches: number;
|
|
3282
|
+
involuntaryContextSwitches: number;
|
|
3283
|
+
};
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3137
3286
|
/**
|
|
3138
3287
|
* engine 基本接口定义,用于约束 Electron 下主进程、渲染进程、JSEngine 的编码一致性
|
|
3139
3288
|
*/
|
|
@@ -3637,6 +3786,14 @@ interface IEngine {
|
|
|
3637
3786
|
*/
|
|
3638
3787
|
getAllUnreadMentionedCount(): Promise<IAsyncRes<number>>;
|
|
3639
3788
|
clearData(): Promise<IAsyncRes<boolean>>;
|
|
3789
|
+
/**
|
|
3790
|
+
* 获取运行时的系统信息,仅限 Electron 平台可用
|
|
3791
|
+
*/
|
|
3792
|
+
getOSInfo(): IPromiseResult<IOSInfo>;
|
|
3793
|
+
/**
|
|
3794
|
+
* 获取应用主进程信息,仅限 Electron 平台可用
|
|
3795
|
+
*/
|
|
3796
|
+
getMainProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
3640
3797
|
rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<ErrorCode>;
|
|
3641
3798
|
rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: any): Promise<{
|
|
3642
3799
|
code: ErrorCode;
|
|
@@ -3944,6 +4101,10 @@ declare class DataCodec {
|
|
|
3944
4101
|
* 格式化超级群变更后消息列表
|
|
3945
4102
|
*/
|
|
3946
4103
|
private _formatUltraMsgList;
|
|
4104
|
+
/**
|
|
4105
|
+
* 格式化超级群获取指定会话未读 @ 消息列表
|
|
4106
|
+
*/
|
|
4107
|
+
private _formatUltraGroupUnreadMentionedList;
|
|
3947
4108
|
/**
|
|
3948
4109
|
* 格式化会话列表
|
|
3949
4110
|
*/
|
|
@@ -4065,8 +4226,12 @@ declare class DataCodec {
|
|
|
4065
4226
|
*/
|
|
4066
4227
|
encodeMsgQuery(option: IUltraMsgQueryOptions): any[];
|
|
4067
4228
|
/**
|
|
4068
|
-
*
|
|
4229
|
+
* 序列化获取超级群获取指定会话未读 @ 消息列表参数
|
|
4069
4230
|
*/
|
|
4231
|
+
encodeUnreadMentionedMsgQuery(option: IUltraGroupUnreadMentionedOption): any[];
|
|
4232
|
+
/**
|
|
4233
|
+
* 正在输入中
|
|
4234
|
+
*/
|
|
4070
4235
|
encodeOperateStatus(targetId: string, conversationType: ConversationType, channelId: string, operationType: OperateStatus): any[];
|
|
4071
4236
|
/**
|
|
4072
4237
|
* 加入退出聊天室
|
|
@@ -5050,6 +5215,18 @@ declare class APIContext {
|
|
|
5050
5215
|
*/
|
|
5051
5216
|
getAllUltraGroupUnreadCount(isMentioned?: boolean): Promise<IAsyncRes<number>>;
|
|
5052
5217
|
getAllConversationState(): Promise<IAsyncRes<IConversationState[]>>;
|
|
5218
|
+
/**
|
|
5219
|
+
* 超级群类型获取未读 @ 消息列表
|
|
5220
|
+
* @param options
|
|
5221
|
+
* @returns 指定会话未读 @ 消息列表
|
|
5222
|
+
*/
|
|
5223
|
+
getUltraGroupUnreadMentionedMessages(options: IUltraGroupUnreadMentionedOption): Promise<IAsyncRes<IUltraUnreadMsg[]>>;
|
|
5224
|
+
/**
|
|
5225
|
+
* 超级群获取指定会话第一条未读消息时间戳
|
|
5226
|
+
* @param conversation
|
|
5227
|
+
* @returns 指定会话第一条未读消息时间戳
|
|
5228
|
+
*/
|
|
5229
|
+
getUltraGroupFirstUnreadMessageTimestamp(options: IUltraGroupOption): Promise<IAsyncRes<IUltraUnreadMsg>>;
|
|
5053
5230
|
/**
|
|
5054
5231
|
* 调用非标准方法。所谓非标准方法,是为某些特定需求或产品添加,暂未作为标准接口添加至 API 层。
|
|
5055
5232
|
* 对于未实现的方法,接口响应 Unsupport 错误码
|
|
@@ -5057,6 +5234,18 @@ declare class APIContext {
|
|
|
5057
5234
|
* @param args
|
|
5058
5235
|
*/
|
|
5059
5236
|
callExtra(method: string | keyof IExtraMethod, ...args: any[]): Promise<IAsyncRes<unknown>>;
|
|
5237
|
+
/**
|
|
5238
|
+
* 获取运行时的系统信息,仅限 Electron 平台可用
|
|
5239
|
+
*/
|
|
5240
|
+
getOSInfo(): IPromiseResult<IOSInfo>;
|
|
5241
|
+
/**
|
|
5242
|
+
* 获取当前渲染进程信息,仅限 Electron 平台可用
|
|
5243
|
+
*/
|
|
5244
|
+
getProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
5245
|
+
/**
|
|
5246
|
+
* 获取应用主进程信息,仅限 Electron 平台可用
|
|
5247
|
+
*/
|
|
5248
|
+
getMainProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
5060
5249
|
/**
|
|
5061
5250
|
* 删除所有会话
|
|
5062
5251
|
*/
|
|
@@ -5333,13 +5522,21 @@ declare class PluginContext {
|
|
|
5333
5522
|
* 获取服务时间
|
|
5334
5523
|
*/
|
|
5335
5524
|
getServerTime(): number;
|
|
5525
|
+
/**
|
|
5526
|
+
* 获取运行时的系统信息,仅限 Electron 平台可用
|
|
5527
|
+
*/
|
|
5528
|
+
getOSInfo(): IPromiseResult<IOSInfo>;
|
|
5529
|
+
/**
|
|
5530
|
+
* 获取当前渲染进程信息,仅限 Electron 平台可用
|
|
5531
|
+
*/
|
|
5532
|
+
getProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
5533
|
+
/**
|
|
5534
|
+
* 获取应用主进程信息,仅限 Electron 平台可用
|
|
5535
|
+
*/
|
|
5536
|
+
getMainProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
5336
5537
|
}
|
|
5337
5538
|
|
|
5338
5539
|
declare class RTCPluginContext extends PluginContext {
|
|
5339
|
-
/**
|
|
5340
|
-
* 获取当前的导航数据
|
|
5341
|
-
*/
|
|
5342
|
-
getNaviInfo(): INaviInfo | null;
|
|
5343
5540
|
/**
|
|
5344
5541
|
* 加入 RTC 房间
|
|
5345
5542
|
* @deprecated
|
|
@@ -6247,6 +6444,26 @@ declare abstract class AEngine implements IEngine {
|
|
|
6247
6444
|
*/
|
|
6248
6445
|
abstract getAllConversationState(): Promise<IAsyncRes<IConversationState[]>>;
|
|
6249
6446
|
abstract clearData(): Promise<IAsyncRes<boolean>>;
|
|
6447
|
+
/**
|
|
6448
|
+
* 超级群获取指定会话未读 @ 消息列表
|
|
6449
|
+
*/
|
|
6450
|
+
abstract getUltraGroupUnreadMentionedMessages(options: IUltraGroupUnreadMentionedOption): Promise<IAsyncRes<IUltraUnreadMsg[]>>;
|
|
6451
|
+
/**
|
|
6452
|
+
* 超级群获取指定会话第一条未读消息时间戳
|
|
6453
|
+
*/
|
|
6454
|
+
abstract getUltraGroupFirstUnreadMessageTimestamp(options: IUltraGroupOption): Promise<IAsyncRes<IUltraUnreadMsg>>;
|
|
6455
|
+
/**
|
|
6456
|
+
* 获取运行时的系统信息,仅限 Electron 平台可用
|
|
6457
|
+
*/
|
|
6458
|
+
abstract getOSInfo(): IPromiseResult<IOSInfo>;
|
|
6459
|
+
/**
|
|
6460
|
+
* 获取当前渲染进程信息,仅限 Electron 平台可用
|
|
6461
|
+
*/
|
|
6462
|
+
abstract getProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
6463
|
+
/**
|
|
6464
|
+
* 获取应用主进程信息,仅限 Electron 平台可用
|
|
6465
|
+
*/
|
|
6466
|
+
abstract getMainProcessInfo(): IPromiseResult<IProcessInfo>;
|
|
6250
6467
|
/**
|
|
6251
6468
|
* RTC 通用调用接口
|
|
6252
6469
|
* 在非 Comet 协议下,入参 sourceData 应为 ArrayBuffer 数据,返回结果为 Uint8Array 数据
|
|
@@ -6867,4 +7084,4 @@ declare const ONE_LOG_SIZE_MAX = 1000;
|
|
|
6867
7084
|
*/
|
|
6868
7085
|
declare const version: string;
|
|
6869
7086
|
|
|
6870
|
-
export { AEngine, APIContext, AbsCodec, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogExtensions, ILogInfo, ILogInit, IM_CHATROOM_PULL_INTERVAL_TIME, IM_COMET_PULLMSG_TIMEOUT, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageListnenr, IMessageReader, IMessageReaderResponse, IMetionedData, INaviInfo, IPluginGenerator, 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, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, IiOSPushConfig, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogSource, LogTagId, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCKeyMaps, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, _default as engineLogger, forEach, formatConnectResponseCode, getBrowser, getClientMessageId, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, 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, randomNum, todo, usingCppEngine, validate, version };
|
|
7087
|
+
export { AEngine, APIContext, AbsCodec, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogExtensions, ILogInfo, ILogInit, IM_CHATROOM_PULL_INTERVAL_TIME, IM_COMET_PULLMSG_TIMEOUT, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, 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, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogSource, LogTagId, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCKeyMaps, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, _default as engineLogger, forEach, formatConnectResponseCode, getBrowser, getClientMessageId, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, 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, randomNum, todo, usingCppEngine, validate, version };
|