@rongcloud/engine 5.4.2-beem-alpha.1 → 5.4.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 +76 -130
- 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,33 +3852,6 @@ 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
|
*/
|
|
@@ -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 {
|
|
@@ -4466,8 +4417,6 @@ declare type ITagListener = () => void;
|
|
|
4466
4417
|
declare type IConversationTagListener = () => void;
|
|
4467
4418
|
declare type ItypingStateListener = (data: ITypingMessage[]) => void;
|
|
4468
4419
|
declare type IMessageBlockedListener = (data: IBlockedMessageInfo) => void;
|
|
4469
|
-
declare type IMessageDeliveredListener = (data: IMessageDeliver[]) => void;
|
|
4470
|
-
declare type IGroupMessageDeliveredStatusListener = (data: IGroupMessageDeliverStatus) => void;
|
|
4471
4420
|
interface IWatcher {
|
|
4472
4421
|
message?: IMessageListnenr;
|
|
4473
4422
|
batchMessage?: IMessagesListnenr;
|
|
@@ -4492,14 +4441,6 @@ interface IWatcher {
|
|
|
4492
4441
|
*/
|
|
4493
4442
|
typingState?: ItypingStateListener;
|
|
4494
4443
|
pullFinished?: ITagListener;
|
|
4495
|
-
/**
|
|
4496
|
-
* 单聊消息送达通知
|
|
4497
|
-
*/
|
|
4498
|
-
messageDelivered?: IMessageDeliveredListener;
|
|
4499
|
-
/**
|
|
4500
|
-
* 群聊消息送达状态通知
|
|
4501
|
-
*/
|
|
4502
|
-
groupMessageDeliveredStatus?: IGroupMessageDeliveredStatusListener;
|
|
4503
4444
|
onConnecting?: () => void;
|
|
4504
4445
|
onConnected?: () => void;
|
|
4505
4446
|
onDisconnect?: (status: ConnectionStatus) => void;
|
|
@@ -4582,17 +4523,6 @@ interface IAPIContextOption {
|
|
|
4582
4523
|
* 是否校验证书,默认为 true
|
|
4583
4524
|
*/
|
|
4584
4525
|
checkCA?: boolean;
|
|
4585
|
-
/**
|
|
4586
|
-
* 实时日志收集功能自定义上传策略
|
|
4587
|
-
* @param {number} logSwitch 日志收集功能开关,0 关闭;1 开启
|
|
4588
|
-
* @param {LogLevel} level 日志上传级别
|
|
4589
|
-
* @param {number} itv: interval 即日志上传间隔,单位秒,最小时间间隔 1 秒
|
|
4590
|
-
*/
|
|
4591
|
-
logPolicy?: {
|
|
4592
|
-
logSwitch?: number;
|
|
4593
|
-
level?: LogLevel;
|
|
4594
|
-
itv?: number;
|
|
4595
|
-
};
|
|
4596
4526
|
}
|
|
4597
4527
|
|
|
4598
4528
|
interface IPluginGenerator<API, InitOption> {
|
|
@@ -4697,9 +4627,6 @@ declare class APIContext {
|
|
|
4697
4627
|
private _typingStatusListener;
|
|
4698
4628
|
private _pullFinishedListener;
|
|
4699
4629
|
private _MessageBlockedListener;
|
|
4700
|
-
private _messageDeliveredListerer;
|
|
4701
|
-
private _groupMessageDeliveredStatusListerer;
|
|
4702
|
-
private _callInfoListener;
|
|
4703
4630
|
private _ultraGroupEnableListener;
|
|
4704
4631
|
private _operateStatusListener;
|
|
4705
4632
|
private _ultraGroupMessageExpansionUpdatedListener;
|
|
@@ -5170,18 +5097,6 @@ declare class APIContext {
|
|
|
5170
5097
|
* @param args
|
|
5171
5098
|
*/
|
|
5172
5099
|
callExtra(method: string | keyof IExtraMethod, ...args: any[]): Promise<IAsyncRes<unknown>>;
|
|
5173
|
-
setCallInfo(targetId: string, key: string, value: string): Promise<IAsyncRes<{
|
|
5174
|
-
key: string;
|
|
5175
|
-
value: string;
|
|
5176
|
-
}>>;
|
|
5177
|
-
/**
|
|
5178
|
-
* 获取群组消息送达信息
|
|
5179
|
-
*/
|
|
5180
|
-
getGroupMessageDeliverList(targetId: string, messageUId: string, channelId?: string): Promise<IAsyncRes<IGroupMessageDeliverInfo>>;
|
|
5181
|
-
/**
|
|
5182
|
-
* 获取单聊消息送达信息
|
|
5183
|
-
*/
|
|
5184
|
-
getPrivateMessageDeliverTime(messageUId: string, channelId?: string): Promise<IAsyncRes<number>>;
|
|
5185
5100
|
/**
|
|
5186
5101
|
* 删除所有会话
|
|
5187
5102
|
*/
|
|
@@ -5416,10 +5331,6 @@ declare class PluginContext {
|
|
|
5416
5331
|
* 目前仅通知:主播加入、退出房间的人员列表变更,发布、取消发布资源列表变更
|
|
5417
5332
|
*/
|
|
5418
5333
|
onrtcdatachange?(data: IServerRTCRoomEntry[], roomdId?: string): void;
|
|
5419
|
-
/**
|
|
5420
|
-
* beem 专有接口,做 groupCall 用到
|
|
5421
|
-
*/
|
|
5422
|
-
onCallInfo?(data: string): void;
|
|
5423
5334
|
/**
|
|
5424
5335
|
* 获取 `@rongcloud/engine` 包版本
|
|
5425
5336
|
*/
|
|
@@ -5463,10 +5374,6 @@ declare class PluginContext {
|
|
|
5463
5374
|
* 获取加入 RTC 房间的用户信息(当前仅能查自己的)
|
|
5464
5375
|
*/
|
|
5465
5376
|
getRTCJoinedUserInfo(userId: string): IPromiseResult<IRTCJoinedInfo[]>;
|
|
5466
|
-
setCallInfo(targetId: string, key: string, value: string): IPromiseResult<{
|
|
5467
|
-
key: string;
|
|
5468
|
-
value: string;
|
|
5469
|
-
}>;
|
|
5470
5377
|
}
|
|
5471
5378
|
|
|
5472
5379
|
declare class RTCPluginContext extends PluginContext {
|
|
@@ -5607,9 +5514,6 @@ interface IEngineWatcher {
|
|
|
5607
5514
|
*/
|
|
5608
5515
|
onRTCDataChange: (data: IServerRTCRoomEntry[], roomId?: string) => void;
|
|
5609
5516
|
pullFinished: () => void;
|
|
5610
|
-
messageDelivered: (data: IMessageDeliver[]) => void;
|
|
5611
|
-
groupMessageDeliveredStatus: (data: IGroupMessageDeliverStatus) => void;
|
|
5612
|
-
callInfo: (data: string) => void;
|
|
5613
5517
|
}
|
|
5614
5518
|
/**
|
|
5615
5519
|
* 引擎定义
|
|
@@ -6234,18 +6138,6 @@ declare abstract class AEngine implements IEngine {
|
|
|
6234
6138
|
list: IReceivedMessage[];
|
|
6235
6139
|
hasMore: boolean;
|
|
6236
6140
|
}>;
|
|
6237
|
-
/**
|
|
6238
|
-
* 获取群组消息送达列表
|
|
6239
|
-
*/
|
|
6240
|
-
abstract getGroupMessageDeliverList(targetId: string, messageUId: string, channelId: string): IPromiseResult<IGroupMessageDeliverInfo>;
|
|
6241
|
-
/**
|
|
6242
|
-
* 获取单聊消息送达列表
|
|
6243
|
-
*/
|
|
6244
|
-
abstract getPrivateMessageDeliverTime(messageUId: string, channelId: string): IPromiseResult<number>;
|
|
6245
|
-
abstract setCallInfo(targetId: string, key: string, value: string): IPromiseResult<{
|
|
6246
|
-
key: string;
|
|
6247
|
-
value: string;
|
|
6248
|
-
}>;
|
|
6249
6141
|
/**
|
|
6250
6142
|
* 无差别获取本地免打扰列表
|
|
6251
6143
|
*/
|
|
@@ -6469,11 +6361,82 @@ declare const isValidExpansion: (expansion: {
|
|
|
6469
6361
|
[key: string]: string;
|
|
6470
6362
|
} | undefined) => IIsValidExpansion;
|
|
6471
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
|
+
|
|
6472
6435
|
/** *********************实时日志上报***************** */
|
|
6473
6436
|
|
|
6474
6437
|
/**
|
|
6475
6438
|
* 缓存日志实时
|
|
6476
|
-
* @param
|
|
6439
|
+
* @param logLevel 日志等级
|
|
6477
6440
|
* @param tagId 日志标签
|
|
6478
6441
|
* @param content 日志内容
|
|
6479
6442
|
*/
|
|
@@ -6540,23 +6503,6 @@ declare class Logger {
|
|
|
6540
6503
|
}
|
|
6541
6504
|
declare const _default: Logger;
|
|
6542
6505
|
|
|
6543
|
-
declare const logger: {
|
|
6544
|
-
reportLog: typeof reportLog;
|
|
6545
|
-
logLevelTransformer(level: LogLevel): number;
|
|
6546
|
-
insertIntoLogCache(logLevel: LogLevel, tagId: string, logObj: any, logSource?: LogSource | undefined): ILogInfo;
|
|
6547
|
-
_defaultStdout(level: LogLevel, msgTag: string, ...logContents: any[]): void;
|
|
6548
|
-
ID(): string;
|
|
6549
|
-
init(userLogInfo: ILogInit): void;
|
|
6550
|
-
log(logLevel: LogLevel, tagId: string, logObj?: Object, logExtens?: ILogExtensions): void;
|
|
6551
|
-
sessionId: string;
|
|
6552
|
-
formatLogObj: (value: unknown) => unknown;
|
|
6553
|
-
debug: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6554
|
-
info: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6555
|
-
warn: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6556
|
-
error: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6557
|
-
fatal: (tagId: string, logObj?: Object | undefined, logExtens?: ILogExtensions | undefined) => void;
|
|
6558
|
-
};
|
|
6559
|
-
|
|
6560
6506
|
declare const randomNum: (min: number, max: number) => number;
|
|
6561
6507
|
declare const getUUID: () => string;
|
|
6562
6508
|
declare const getUUID22: () => string;
|
|
@@ -6802,4 +6748,4 @@ declare const ONE_LOG_SIZE_MAX = 1000;
|
|
|
6802
6748
|
*/
|
|
6803
6749
|
declare const version: string;
|
|
6804
6750
|
|
|
6805
|
-
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,
|
|
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 };
|