@rongcloud/engine 5.4.2-beem.5 → 5.4.4
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 -137
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1216,14 +1216,6 @@ declare enum MessageType {
|
|
|
1216
1216
|
* 接受群已读回执更新消息(导航开关grpRRVer为1时使用)
|
|
1217
1217
|
*/
|
|
1218
1218
|
GROUP_READ_RECEIPT_REQUEST = "RC:RRMsg",
|
|
1219
|
-
/**
|
|
1220
|
-
* 消息送达报告,仅单聊
|
|
1221
|
-
*/
|
|
1222
|
-
DELIVERED = "RC:Delivered",
|
|
1223
|
-
/**
|
|
1224
|
-
* 消息送达状态报告,仅群聊
|
|
1225
|
-
*/
|
|
1226
|
-
DELIVERED_MSG = "RC:DRMsg",
|
|
1227
1219
|
/**
|
|
1228
1220
|
* 用户加入聊天室
|
|
1229
1221
|
*/
|
|
@@ -1411,7 +1403,6 @@ declare enum LogTagId {
|
|
|
1411
1403
|
L_MEDIA_UPLOAD_T = "L-media_upload-T",
|
|
1412
1404
|
L_MEDIA_UPLOAD_R = "L-media_upload-R",
|
|
1413
1405
|
G_UPLOAD_LOG_S = "G-upload_log-S",
|
|
1414
|
-
G_REPORT_LOG_S = "G-report_log-S",
|
|
1415
1406
|
G_UPLOAD_LOG_E = "G-upload_log-E",
|
|
1416
1407
|
G_GET_REAL_TIMELOG_COMMAND_S = "G-get_real_timelog_command-S",
|
|
1417
1408
|
L_CHECK_ALIVE_IM_T = "L-check_alive_im-T",
|
|
@@ -1487,19 +1478,7 @@ declare enum RTCMode {
|
|
|
1487
1478
|
/**
|
|
1488
1479
|
* 直播模式
|
|
1489
1480
|
*/
|
|
1490
|
-
LIVE = 2
|
|
1491
|
-
/**
|
|
1492
|
-
*sip呼叫
|
|
1493
|
-
*/
|
|
1494
|
-
SIP = 4,
|
|
1495
|
-
/**
|
|
1496
|
-
* 呼叫模式.包括单呼和群呼
|
|
1497
|
-
*/
|
|
1498
|
-
CALL = 5,
|
|
1499
|
-
/**
|
|
1500
|
-
* 会议
|
|
1501
|
-
*/
|
|
1502
|
-
MEETING = 6
|
|
1481
|
+
LIVE = 2
|
|
1503
1482
|
}
|
|
1504
1483
|
/**
|
|
1505
1484
|
* 直播类型
|
|
@@ -2116,9 +2095,8 @@ interface ISendMsgOptions {
|
|
|
2116
2095
|
channelId?: string;
|
|
2117
2096
|
/**
|
|
2118
2097
|
* 客户端的消息标识
|
|
2119
|
-
* 重发消息时用到,重发消息的消息 ID,仅 electron 中有效
|
|
2120
2098
|
*/
|
|
2121
|
-
messageId?:
|
|
2099
|
+
messageId?: string;
|
|
2122
2100
|
/**
|
|
2123
2101
|
* 超级群专有字段,是否断档,若断档需要客户判断是否拉取
|
|
2124
2102
|
*/
|
|
@@ -3874,38 +3852,11 @@ interface ITypingMessage {
|
|
|
3874
3852
|
list: Array<ITypingUser>;
|
|
3875
3853
|
}
|
|
3876
3854
|
|
|
3877
|
-
/**
|
|
3878
|
-
* 消息送达相关接口
|
|
3879
|
-
*/
|
|
3880
|
-
|
|
3881
|
-
interface IDeliveredUser {
|
|
3882
|
-
time: number;
|
|
3883
|
-
userId: string;
|
|
3884
|
-
}
|
|
3885
|
-
interface IGroupMessageDeliverInfo {
|
|
3886
|
-
totalCount: number;
|
|
3887
|
-
list: IDeliveredUser[];
|
|
3888
|
-
}
|
|
3889
|
-
interface IMessageDeliver {
|
|
3890
|
-
deliverTime: number;
|
|
3891
|
-
messageUId: string;
|
|
3892
|
-
conversationType: ConversationType;
|
|
3893
|
-
targetId: string;
|
|
3894
|
-
}
|
|
3895
|
-
interface IGroupMessageDeliveredStatusInfo {
|
|
3896
|
-
MessageUId: string;
|
|
3897
|
-
deliveryCount: number;
|
|
3898
|
-
}
|
|
3899
|
-
interface IGroupMessageDeliverStatus {
|
|
3900
|
-
totalCount: number;
|
|
3901
|
-
list: IGroupMessageDeliveredStatusInfo[];
|
|
3902
|
-
}
|
|
3903
|
-
|
|
3904
3855
|
/**
|
|
3905
3856
|
* IndexDB中存储的log数据
|
|
3906
3857
|
*/
|
|
3907
3858
|
interface ILogInfo {
|
|
3908
|
-
sessionId: string
|
|
3859
|
+
sessionId: string;
|
|
3909
3860
|
time: number;
|
|
3910
3861
|
level: LogLevel;
|
|
3911
3862
|
content: string;
|
|
@@ -3914,7 +3865,7 @@ interface ILogInfo {
|
|
|
3914
3865
|
tagId?: LogTagId;
|
|
3915
3866
|
}
|
|
3916
3867
|
interface IRealTimeLog {
|
|
3917
|
-
level:
|
|
3868
|
+
level: LogLevel;
|
|
3918
3869
|
content: string;
|
|
3919
3870
|
}
|
|
3920
3871
|
interface ILogExtensions {
|
|
@@ -3926,16 +3877,6 @@ interface ILogInit {
|
|
|
3926
3877
|
localLogLevel?: LogLevel;
|
|
3927
3878
|
customLogPrint?: (logLevel: LogLevel, msg: string) => void;
|
|
3928
3879
|
}
|
|
3929
|
-
interface IInitBigDataOption {
|
|
3930
|
-
runtime?: IRuntime;
|
|
3931
|
-
appkey?: string;
|
|
3932
|
-
version?: string;
|
|
3933
|
-
userId?: string;
|
|
3934
|
-
}
|
|
3935
|
-
interface IBigdataLogInit extends IInitBigDataOption {
|
|
3936
|
-
logUrl: string;
|
|
3937
|
-
sessionId: string;
|
|
3938
|
-
}
|
|
3939
3880
|
|
|
3940
3881
|
/**
|
|
3941
3882
|
* 定义已废弃,请使用 `IRemoveChatroomEntries` 替换
|
|
@@ -4476,8 +4417,6 @@ declare type ITagListener = () => void;
|
|
|
4476
4417
|
declare type IConversationTagListener = () => void;
|
|
4477
4418
|
declare type ItypingStateListener = (data: ITypingMessage[]) => void;
|
|
4478
4419
|
declare type IMessageBlockedListener = (data: IBlockedMessageInfo) => void;
|
|
4479
|
-
declare type IMessageDeliveredListener = (data: IMessageDeliver[]) => void;
|
|
4480
|
-
declare type IGroupMessageDeliveredStatusListener = (data: IGroupMessageDeliverStatus) => void;
|
|
4481
4420
|
interface IWatcher {
|
|
4482
4421
|
message?: IMessageListnenr;
|
|
4483
4422
|
batchMessage?: IMessagesListnenr;
|
|
@@ -4502,14 +4441,6 @@ interface IWatcher {
|
|
|
4502
4441
|
*/
|
|
4503
4442
|
typingState?: ItypingStateListener;
|
|
4504
4443
|
pullFinished?: ITagListener;
|
|
4505
|
-
/**
|
|
4506
|
-
* 单聊消息送达通知
|
|
4507
|
-
*/
|
|
4508
|
-
messageDelivered?: IMessageDeliveredListener;
|
|
4509
|
-
/**
|
|
4510
|
-
* 群聊消息送达状态通知
|
|
4511
|
-
*/
|
|
4512
|
-
groupMessageDeliveredStatus?: IGroupMessageDeliveredStatusListener;
|
|
4513
4444
|
onConnecting?: () => void;
|
|
4514
4445
|
onConnected?: () => void;
|
|
4515
4446
|
onDisconnect?: (status: ConnectionStatus) => void;
|
|
@@ -4592,17 +4523,6 @@ interface IAPIContextOption {
|
|
|
4592
4523
|
* 是否校验证书,默认为 true
|
|
4593
4524
|
*/
|
|
4594
4525
|
checkCA?: boolean;
|
|
4595
|
-
/**
|
|
4596
|
-
* 实时日志收集功能自定义上传策略
|
|
4597
|
-
* @param {number} logSwitch 日志收集功能开关,0 关闭;1 开启
|
|
4598
|
-
* @param {LogLevel} level 日志上传级别
|
|
4599
|
-
* @param {number} itv: interval 即日志上传间隔,单位秒,最小时间间隔 1 秒
|
|
4600
|
-
*/
|
|
4601
|
-
logPolicy?: {
|
|
4602
|
-
logSwitch?: number;
|
|
4603
|
-
level?: LogLevel;
|
|
4604
|
-
itv?: number;
|
|
4605
|
-
};
|
|
4606
4526
|
}
|
|
4607
4527
|
|
|
4608
4528
|
interface IPluginGenerator<API, InitOption> {
|
|
@@ -4707,9 +4627,6 @@ declare class APIContext {
|
|
|
4707
4627
|
private _typingStatusListener;
|
|
4708
4628
|
private _pullFinishedListener;
|
|
4709
4629
|
private _MessageBlockedListener;
|
|
4710
|
-
private _messageDeliveredListerer;
|
|
4711
|
-
private _groupMessageDeliveredStatusListerer;
|
|
4712
|
-
private _callInfoListener;
|
|
4713
4630
|
private _ultraGroupEnableListener;
|
|
4714
4631
|
private _operateStatusListener;
|
|
4715
4632
|
private _ultraGroupMessageExpansionUpdatedListener;
|
|
@@ -5180,18 +5097,6 @@ declare class APIContext {
|
|
|
5180
5097
|
* @param args
|
|
5181
5098
|
*/
|
|
5182
5099
|
callExtra(method: string | keyof IExtraMethod, ...args: any[]): Promise<IAsyncRes<unknown>>;
|
|
5183
|
-
setCallInfo(targetId: string, key: string, value: string): Promise<IAsyncRes<{
|
|
5184
|
-
key: string;
|
|
5185
|
-
value: string;
|
|
5186
|
-
}>>;
|
|
5187
|
-
/**
|
|
5188
|
-
* 获取群组消息送达信息
|
|
5189
|
-
*/
|
|
5190
|
-
getGroupMessageDeliverList(targetId: string, messageUId: string, channelId?: string): Promise<IAsyncRes<IGroupMessageDeliverInfo>>;
|
|
5191
|
-
/**
|
|
5192
|
-
* 获取单聊消息送达信息
|
|
5193
|
-
*/
|
|
5194
|
-
getPrivateMessageDeliverTime(messageUId: string, channelId?: string): Promise<IAsyncRes<number>>;
|
|
5195
5100
|
/**
|
|
5196
5101
|
* 删除所有会话
|
|
5197
5102
|
*/
|
|
@@ -5426,10 +5331,6 @@ declare class PluginContext {
|
|
|
5426
5331
|
* 目前仅通知:主播加入、退出房间的人员列表变更,发布、取消发布资源列表变更
|
|
5427
5332
|
*/
|
|
5428
5333
|
onrtcdatachange?(data: IServerRTCRoomEntry[], roomdId?: string): void;
|
|
5429
|
-
/**
|
|
5430
|
-
* beem 专有接口,做 groupCall 用到
|
|
5431
|
-
*/
|
|
5432
|
-
onCallInfo?(data: string): void;
|
|
5433
5334
|
/**
|
|
5434
5335
|
* 获取 `@rongcloud/engine` 包版本
|
|
5435
5336
|
*/
|
|
@@ -5473,10 +5374,6 @@ declare class PluginContext {
|
|
|
5473
5374
|
* 获取加入 RTC 房间的用户信息(当前仅能查自己的)
|
|
5474
5375
|
*/
|
|
5475
5376
|
getRTCJoinedUserInfo(userId: string): IPromiseResult<IRTCJoinedInfo[]>;
|
|
5476
|
-
setCallInfo(targetId: string, key: string, value: string): IPromiseResult<{
|
|
5477
|
-
key: string;
|
|
5478
|
-
value: string;
|
|
5479
|
-
}>;
|
|
5480
5377
|
}
|
|
5481
5378
|
|
|
5482
5379
|
declare class RTCPluginContext extends PluginContext {
|
|
@@ -5617,9 +5514,6 @@ interface IEngineWatcher {
|
|
|
5617
5514
|
*/
|
|
5618
5515
|
onRTCDataChange: (data: IServerRTCRoomEntry[], roomId?: string) => void;
|
|
5619
5516
|
pullFinished: () => void;
|
|
5620
|
-
messageDelivered: (data: IMessageDeliver[]) => void;
|
|
5621
|
-
groupMessageDeliveredStatus: (data: IGroupMessageDeliverStatus) => void;
|
|
5622
|
-
callInfo: (data: string) => void;
|
|
5623
5517
|
}
|
|
5624
5518
|
/**
|
|
5625
5519
|
* 引擎定义
|
|
@@ -6244,18 +6138,6 @@ declare abstract class AEngine implements IEngine {
|
|
|
6244
6138
|
list: IReceivedMessage[];
|
|
6245
6139
|
hasMore: boolean;
|
|
6246
6140
|
}>;
|
|
6247
|
-
/**
|
|
6248
|
-
* 获取群组消息送达列表
|
|
6249
|
-
*/
|
|
6250
|
-
abstract getGroupMessageDeliverList(targetId: string, messageUId: string, channelId: string): IPromiseResult<IGroupMessageDeliverInfo>;
|
|
6251
|
-
/**
|
|
6252
|
-
* 获取单聊消息送达列表
|
|
6253
|
-
*/
|
|
6254
|
-
abstract getPrivateMessageDeliverTime(messageUId: string, channelId: string): IPromiseResult<number>;
|
|
6255
|
-
abstract setCallInfo(targetId: string, key: string, value: string): IPromiseResult<{
|
|
6256
|
-
key: string;
|
|
6257
|
-
value: string;
|
|
6258
|
-
}>;
|
|
6259
6141
|
/**
|
|
6260
6142
|
* 无差别获取本地免打扰列表
|
|
6261
6143
|
*/
|
|
@@ -6479,11 +6361,82 @@ declare const isValidExpansion: (expansion: {
|
|
|
6479
6361
|
[key: string]: string;
|
|
6480
6362
|
} | undefined) => IIsValidExpansion;
|
|
6481
6363
|
|
|
6364
|
+
/** ******************************************新重构logger,按照Web新日志规范上报 ********************************** **/
|
|
6365
|
+
declare const sessionId: string;
|
|
6366
|
+
/**
|
|
6367
|
+
* logLevelTransformer
|
|
6368
|
+
* @description 数据中心与前端日志规范LogLevel定义不统一
|
|
6369
|
+
* WebLogLevel(前端日志级别) -> ServerLogLevel(服务器日志级别)
|
|
6370
|
+
* @param level { LogLevel }
|
|
6371
|
+
* @returns serverLogLevel
|
|
6372
|
+
*/
|
|
6373
|
+
declare function logLevelTransformer(level: LogLevel): number;
|
|
6374
|
+
/**
|
|
6375
|
+
* 序列化引用型数据为字符串
|
|
6376
|
+
* @value value
|
|
6377
|
+
*/
|
|
6378
|
+
declare const formatLogObj: (value: unknown) => unknown;
|
|
6379
|
+
/**
|
|
6380
|
+
* 缓存日志
|
|
6381
|
+
* @param logLevel 打印等级
|
|
6382
|
+
* @param logObj 日志内容
|
|
6383
|
+
* @param tagId 日志tag
|
|
6384
|
+
*/
|
|
6385
|
+
declare function insertIntoLogCache(logLevel: LogLevel, tagId: string, logObj: any, logSource?: LogSource): ILogInfo;
|
|
6386
|
+
/**
|
|
6387
|
+
* 本地默认输出函数
|
|
6388
|
+
* @param level
|
|
6389
|
+
* @param args
|
|
6390
|
+
*/
|
|
6391
|
+
declare function _defaultStdout(level: LogLevel, msgTag: string, ...logContents: any[]): void;
|
|
6392
|
+
/**
|
|
6393
|
+
* Trace ID 生成器
|
|
6394
|
+
*/
|
|
6395
|
+
declare function ID(): string;
|
|
6396
|
+
declare function init(userLogInfo: ILogInit): void;
|
|
6397
|
+
declare function log(logLevel: LogLevel, tagId: LogTagId | string, logObj?: Object, logExtens?: ILogExtensions): void;
|
|
6398
|
+
declare const debug: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6399
|
+
declare const info: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6400
|
+
declare const warn: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6401
|
+
declare const error: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6402
|
+
declare const fatal: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6403
|
+
|
|
6404
|
+
declare const base_sessionId: typeof sessionId;
|
|
6405
|
+
declare const base_logLevelTransformer: typeof logLevelTransformer;
|
|
6406
|
+
declare const base_formatLogObj: typeof formatLogObj;
|
|
6407
|
+
declare const base_insertIntoLogCache: typeof insertIntoLogCache;
|
|
6408
|
+
declare const base__defaultStdout: typeof _defaultStdout;
|
|
6409
|
+
declare const base_ID: typeof ID;
|
|
6410
|
+
declare const base_init: typeof init;
|
|
6411
|
+
declare const base_log: typeof log;
|
|
6412
|
+
declare const base_debug: typeof debug;
|
|
6413
|
+
declare const base_info: typeof info;
|
|
6414
|
+
declare const base_warn: typeof warn;
|
|
6415
|
+
declare const base_error: typeof error;
|
|
6416
|
+
declare const base_fatal: typeof fatal;
|
|
6417
|
+
declare namespace base {
|
|
6418
|
+
export {
|
|
6419
|
+
base_sessionId as sessionId,
|
|
6420
|
+
base_logLevelTransformer as logLevelTransformer,
|
|
6421
|
+
base_formatLogObj as formatLogObj,
|
|
6422
|
+
base_insertIntoLogCache as insertIntoLogCache,
|
|
6423
|
+
base__defaultStdout as _defaultStdout,
|
|
6424
|
+
base_ID as ID,
|
|
6425
|
+
base_init as init,
|
|
6426
|
+
base_log as log,
|
|
6427
|
+
base_debug as debug,
|
|
6428
|
+
base_info as info,
|
|
6429
|
+
base_warn as warn,
|
|
6430
|
+
base_error as error,
|
|
6431
|
+
base_fatal as fatal,
|
|
6432
|
+
};
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6482
6435
|
/** *********************实时日志上报***************** */
|
|
6483
6436
|
|
|
6484
6437
|
/**
|
|
6485
6438
|
* 缓存日志实时
|
|
6486
|
-
* @param
|
|
6439
|
+
* @param logLevel 日志等级
|
|
6487
6440
|
* @param tagId 日志标签
|
|
6488
6441
|
* @param content 日志内容
|
|
6489
6442
|
*/
|
|
@@ -6550,19 +6503,6 @@ declare class Logger {
|
|
|
6550
6503
|
}
|
|
6551
6504
|
declare const _default: Logger;
|
|
6552
6505
|
|
|
6553
|
-
declare const logger: {
|
|
6554
|
-
reportLog: typeof reportLog;
|
|
6555
|
-
_defaultStdout(level: LogLevel, msgTag: string, ...logContents: any[]): void;
|
|
6556
|
-
ID(): string;
|
|
6557
|
-
init(userLogInfo: ILogInit): void;
|
|
6558
|
-
log(logLevel: LogLevel, tagId: string, logObj?: Object, logExtens?: ILogExtensions): void;
|
|
6559
|
-
debug: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6560
|
-
info: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6561
|
-
warn: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6562
|
-
error: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6563
|
-
fatal: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6564
|
-
};
|
|
6565
|
-
|
|
6566
6506
|
declare const randomNum: (min: number, max: number) => number;
|
|
6567
6507
|
declare const getUUID: () => string;
|
|
6568
6508
|
declare const getUUID22: () => string;
|
|
@@ -6808,4 +6748,4 @@ declare const ONE_LOG_SIZE_MAX = 1000;
|
|
|
6808
6748
|
*/
|
|
6809
6749
|
declare const version: string;
|
|
6810
6750
|
|
|
6811
|
-
export { AEngine, APIContext, 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,
|
|
6751
|
+
export { AEngine, APIContext, 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, 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, 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, getMimeKey, getUUID, getUUID22, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, randomNum, todo, usingCppEngine, validate, version };
|