@rongcloud/engine 5.0.2-custom-qihoo.3 → 5.1.0
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/dist/index.d.ts +205 -15
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/index.umd.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* RCEngine - v5.0
|
|
3
|
-
* CommitId -
|
|
4
|
-
* Fri
|
|
2
|
+
* RCEngine - v5.1.0
|
|
3
|
+
* CommitId - a336c0de6ae1d26b24ec675889d919bcb2195568
|
|
4
|
+
* Fri Jan 07 2022 15:56:12 GMT+0800 (China Standard Time)
|
|
5
5
|
* ©2020 RongCloud, Inc. All rights reserved.
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
@@ -1969,7 +1969,7 @@ interface IChatroomListenerData {
|
|
|
1969
1969
|
*/
|
|
1970
1970
|
chatroomDestroyed?: string;
|
|
1971
1971
|
}
|
|
1972
|
-
interface
|
|
1972
|
+
interface IChatroomEntry {
|
|
1973
1973
|
/**
|
|
1974
1974
|
* 属性名称, 支持英文字母、数字、+、=、-、_ 的组合方式, 最大长度 128 字符
|
|
1975
1975
|
*/
|
|
@@ -2012,7 +2012,7 @@ interface IChatroomInfo {
|
|
|
2012
2012
|
*/
|
|
2013
2013
|
userCount: number;
|
|
2014
2014
|
}
|
|
2015
|
-
interface
|
|
2015
|
+
interface IRemoveChatroomEntry {
|
|
2016
2016
|
/**
|
|
2017
2017
|
* 属性名称, 支持英文字母、数字、+、=、-、_ 的组合方式, 最大长度 128 字符
|
|
2018
2018
|
*/
|
|
@@ -2026,7 +2026,7 @@ interface IRemoveChatRoomEntry {
|
|
|
2026
2026
|
*/
|
|
2027
2027
|
notificationExtra?: string;
|
|
2028
2028
|
}
|
|
2029
|
-
interface
|
|
2029
|
+
interface IRemoveChatroomEntries {
|
|
2030
2030
|
/**
|
|
2031
2031
|
* key 属性名称, 支持英文字母、数字、+、=、-、_ 的组合方式, 最大长度 128 字符
|
|
2032
2032
|
*/
|
|
@@ -2041,7 +2041,7 @@ interface IRemoveChatRoomEntries {
|
|
|
2041
2041
|
*/
|
|
2042
2042
|
notificationExtra?: string;
|
|
2043
2043
|
}
|
|
2044
|
-
interface
|
|
2044
|
+
interface IChatroomEntries {
|
|
2045
2045
|
/**
|
|
2046
2046
|
* entries ,要设置的属性列表
|
|
2047
2047
|
* key 属性名称, 支持英文字母、数字、+、=、-、_ 的组合方式, 最大长度 128 字符
|
|
@@ -2742,6 +2742,111 @@ interface IExtraMethod {
|
|
|
2742
2742
|
updateMessageReceiptStatus(conersationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<IAsyncRes<boolean>>;
|
|
2743
2743
|
}
|
|
2744
2744
|
|
|
2745
|
+
interface IReqRoomPKOptions {
|
|
2746
|
+
/**
|
|
2747
|
+
* 当前房间 ID
|
|
2748
|
+
*/
|
|
2749
|
+
roomId: string;
|
|
2750
|
+
/**
|
|
2751
|
+
* 被邀请房间 ID
|
|
2752
|
+
*/
|
|
2753
|
+
invitedRoomId: string;
|
|
2754
|
+
/**
|
|
2755
|
+
* 被邀请用户 ID
|
|
2756
|
+
*/
|
|
2757
|
+
invitedUserId: string;
|
|
2758
|
+
/**
|
|
2759
|
+
* 本次邀请超时时间
|
|
2760
|
+
*/
|
|
2761
|
+
inviteTimeout: number;
|
|
2762
|
+
/**
|
|
2763
|
+
* 本次邀请额外信息
|
|
2764
|
+
*/
|
|
2765
|
+
inviteInfo: string;
|
|
2766
|
+
/**
|
|
2767
|
+
* 本次邀请唯一 ID
|
|
2768
|
+
*/
|
|
2769
|
+
inviteSessionId: string;
|
|
2770
|
+
}
|
|
2771
|
+
interface ICancelRoomPKOptions {
|
|
2772
|
+
/**
|
|
2773
|
+
* 当前房间 ID
|
|
2774
|
+
*/
|
|
2775
|
+
roomId: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* 被邀请房间 ID
|
|
2778
|
+
*/
|
|
2779
|
+
invitedRoomId: string;
|
|
2780
|
+
/**
|
|
2781
|
+
* 被邀请用户 ID
|
|
2782
|
+
*/
|
|
2783
|
+
invitedUserId: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* 本次邀请额外信息
|
|
2786
|
+
*/
|
|
2787
|
+
inviteInfo: string;
|
|
2788
|
+
/**
|
|
2789
|
+
* 本次邀请唯一 ID
|
|
2790
|
+
*/
|
|
2791
|
+
inviteSessionId: string;
|
|
2792
|
+
}
|
|
2793
|
+
interface IResRoomPKOptions {
|
|
2794
|
+
/**
|
|
2795
|
+
* 当前房间 ID
|
|
2796
|
+
*/
|
|
2797
|
+
roomId: string;
|
|
2798
|
+
/**
|
|
2799
|
+
* 邀请者 ID
|
|
2800
|
+
*/
|
|
2801
|
+
inviteUserId: string;
|
|
2802
|
+
/**
|
|
2803
|
+
* 邀请者房间 ID
|
|
2804
|
+
*/
|
|
2805
|
+
inviteRoomId: string;
|
|
2806
|
+
/**
|
|
2807
|
+
* 邀请的 session ID
|
|
2808
|
+
*/
|
|
2809
|
+
inviteSessionId: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* 需要转发的信息
|
|
2812
|
+
*/
|
|
2813
|
+
content: string;
|
|
2814
|
+
/**
|
|
2815
|
+
* 同意邀请时要设置的 key, 放在room级别的k和v,新加入房间的能拉取到
|
|
2816
|
+
*/
|
|
2817
|
+
key: string;
|
|
2818
|
+
/**
|
|
2819
|
+
* 同意邀请时要设置的 value, 放在room级别的k和v,新加入房间的能拉取到
|
|
2820
|
+
*/
|
|
2821
|
+
value: string;
|
|
2822
|
+
/**
|
|
2823
|
+
* 是否同意邀请
|
|
2824
|
+
*/
|
|
2825
|
+
agree: boolean;
|
|
2826
|
+
}
|
|
2827
|
+
interface IEndRoomPKOptions {
|
|
2828
|
+
/**
|
|
2829
|
+
* 当前房间 ID
|
|
2830
|
+
*/
|
|
2831
|
+
roomId: string;
|
|
2832
|
+
/**
|
|
2833
|
+
* 需要结束的连麦房间 ID
|
|
2834
|
+
*/
|
|
2835
|
+
endRoomId: string;
|
|
2836
|
+
/**
|
|
2837
|
+
* 需要结束连麦的 sessionID
|
|
2838
|
+
*/
|
|
2839
|
+
sessionId: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* 结束连麦的信息
|
|
2842
|
+
*/
|
|
2843
|
+
content: string;
|
|
2844
|
+
/**
|
|
2845
|
+
* 需要删除连麦的信息的 keys
|
|
2846
|
+
*/
|
|
2847
|
+
keys: string[];
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2745
2850
|
/**
|
|
2746
2851
|
* engine 基本接口定义,用于约束 Electron 下主进程、渲染进程、JSEngine 的编码一致性
|
|
2747
2852
|
*/
|
|
@@ -3243,6 +3348,10 @@ interface IEngine {
|
|
|
3243
3348
|
setRTCState(roomId: string, reportId: string): Promise<ErrorCode>;
|
|
3244
3349
|
getRTCUserList(roomId: string): IPromiseResult<IRTCUsers>;
|
|
3245
3350
|
setRTCCDNUris(roomId: string, objectName: string, CDNUris: string): Promise<ErrorCode>;
|
|
3351
|
+
requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
|
|
3352
|
+
cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
|
|
3353
|
+
responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
|
|
3354
|
+
endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
|
|
3246
3355
|
}
|
|
3247
3356
|
|
|
3248
3357
|
interface IExpansionMsgContent {
|
|
@@ -3329,6 +3438,27 @@ interface ITypingMessage {
|
|
|
3329
3438
|
list: Array<ITypingUser>;
|
|
3330
3439
|
}
|
|
3331
3440
|
|
|
3441
|
+
/**
|
|
3442
|
+
* 定义已废弃,请使用 `IRemoveChatroomEntries` 替换
|
|
3443
|
+
* @deprecated
|
|
3444
|
+
*/
|
|
3445
|
+
declare type IRemoveChatRoomEntries = IRemoveChatroomEntries;
|
|
3446
|
+
/**
|
|
3447
|
+
* 定义已废弃,请使用 `IChatroomEntry` 替换
|
|
3448
|
+
* @deprecated
|
|
3449
|
+
*/
|
|
3450
|
+
declare type IChatRoomEntry = IChatroomEntry;
|
|
3451
|
+
/**
|
|
3452
|
+
* 定义已废弃,请使用 `IChatroomEntries` 替换
|
|
3453
|
+
* @deprecated
|
|
3454
|
+
*/
|
|
3455
|
+
declare type IChatRoomEntries = IChatroomEntries;
|
|
3456
|
+
/**
|
|
3457
|
+
* 定义已废弃,请使用 `IRemoveChatroomEntry` 替换
|
|
3458
|
+
* @deprecated
|
|
3459
|
+
*/
|
|
3460
|
+
declare type IRemoveChatRoomEntry = IRemoveChatroomEntry;
|
|
3461
|
+
|
|
3332
3462
|
/**
|
|
3333
3463
|
* 序列化、反序列化数据通道
|
|
3334
3464
|
*/
|
|
@@ -3614,6 +3744,22 @@ declare class DataCodec {
|
|
|
3614
3744
|
* RTC 查询在房间内用户的信息
|
|
3615
3745
|
*/
|
|
3616
3746
|
encodeQueryUserJoinedInfo(userId: string): any;
|
|
3747
|
+
/**
|
|
3748
|
+
* 连麦 PK 请求
|
|
3749
|
+
*/
|
|
3750
|
+
encodeRequestRoomPK(options: IReqRoomPKOptions): any;
|
|
3751
|
+
/**
|
|
3752
|
+
* 取消连麦 PK 请求
|
|
3753
|
+
*/
|
|
3754
|
+
encodeCancelRoomPK(options: ICancelRoomPKOptions): any;
|
|
3755
|
+
/**
|
|
3756
|
+
* 响应连麦 PK 请求
|
|
3757
|
+
*/
|
|
3758
|
+
encodeResponseRoomPK(options: IResRoomPKOptions): any;
|
|
3759
|
+
/**
|
|
3760
|
+
* 结束连麦 PK
|
|
3761
|
+
*/
|
|
3762
|
+
encodeEndRoomPK(options: IEndRoomPKOptions): any;
|
|
3617
3763
|
}
|
|
3618
3764
|
|
|
3619
3765
|
interface IDataChannelWatcher {
|
|
@@ -4167,8 +4313,8 @@ declare class APIContext {
|
|
|
4167
4313
|
* @param roomId 聊天室房间 id
|
|
4168
4314
|
* @param entry 属性信息
|
|
4169
4315
|
*/
|
|
4170
|
-
setChatroomEntry(roomId: string, entry:
|
|
4171
|
-
setChatroomEntries(roomId: string, entryOptions:
|
|
4316
|
+
setChatroomEntry(roomId: string, entry: IChatroomEntry): Promise<ErrorCode>;
|
|
4317
|
+
setChatroomEntries(roomId: string, entryOptions: IChatroomEntries): Promise<{
|
|
4172
4318
|
code: ErrorCode;
|
|
4173
4319
|
data?: any;
|
|
4174
4320
|
}>;
|
|
@@ -4178,21 +4324,21 @@ declare class APIContext {
|
|
|
4178
4324
|
* @param roomId 聊天室房间 id
|
|
4179
4325
|
* @param entry 属性信息
|
|
4180
4326
|
*/
|
|
4181
|
-
forceSetChatroomEntry(roomId: string, entry:
|
|
4327
|
+
forceSetChatroomEntry(roomId: string, entry: IChatroomEntry): Promise<ErrorCode>;
|
|
4182
4328
|
/**
|
|
4183
4329
|
* 删除聊天室属性
|
|
4184
4330
|
* @description 该方法仅限于删除自己设置的聊天室属性
|
|
4185
4331
|
* @param roomId 聊天室房间 id
|
|
4186
4332
|
* @param entry 要移除的属性信息
|
|
4187
4333
|
*/
|
|
4188
|
-
removeChatroomEntry(roomId: string, entry:
|
|
4334
|
+
removeChatroomEntry(roomId: string, entry: IRemoveChatroomEntry): Promise<ErrorCode>;
|
|
4189
4335
|
/**
|
|
4190
4336
|
* 批量删除聊天室属性
|
|
4191
4337
|
* @description 该方法仅限于删除自己设置的聊天室属性
|
|
4192
4338
|
* @param roomId 聊天室房间 id
|
|
4193
4339
|
* @param entry 要移除的属性信息
|
|
4194
4340
|
*/
|
|
4195
|
-
removeChatroomEntries(roomId: string, entryOptions:
|
|
4341
|
+
removeChatroomEntries(roomId: string, entryOptions: IRemoveChatroomEntries): Promise<{
|
|
4196
4342
|
code: ErrorCode;
|
|
4197
4343
|
data?: any;
|
|
4198
4344
|
}>;
|
|
@@ -4202,7 +4348,7 @@ declare class APIContext {
|
|
|
4202
4348
|
* @param roomId 聊天室房间 id
|
|
4203
4349
|
* @param entry 要移除的属性信息
|
|
4204
4350
|
*/
|
|
4205
|
-
forceRemoveChatroomEntry(roomId: string, entry:
|
|
4351
|
+
forceRemoveChatroomEntry(roomId: string, entry: IRemoveChatroomEntry): Promise<ErrorCode>;
|
|
4206
4352
|
/**
|
|
4207
4353
|
* 获取聊天室中的指定属性
|
|
4208
4354
|
* @param roomId 聊天室房间 id
|
|
@@ -4225,7 +4371,15 @@ declare class APIContext {
|
|
|
4225
4371
|
* * 1:升序,用于获取晚于指定时间戳发送的消息
|
|
4226
4372
|
* @param timestamp 指定拉取消息用到的时间戳。默认值为 `0`,表示按当前时间拉取
|
|
4227
4373
|
*/
|
|
4228
|
-
|
|
4374
|
+
getChatroomHistoryMessages(roomId: string, count?: number, order?: 0 | 1, timestamp?: number): Promise<IAsyncRes<{
|
|
4375
|
+
list: IReceivedMessage[];
|
|
4376
|
+
hasMore: boolean;
|
|
4377
|
+
}>>;
|
|
4378
|
+
/**
|
|
4379
|
+
* 方法已废弃,推荐使用 `getChatroomHistoryMessages` 替代
|
|
4380
|
+
* @deprecated
|
|
4381
|
+
*/
|
|
4382
|
+
getChatRoomHistoryMessages: (roomId: string, count?: number, order?: 0 | 1, timestamp?: number) => Promise<IAsyncRes<{
|
|
4229
4383
|
list: IReceivedMessage[];
|
|
4230
4384
|
hasMore: boolean;
|
|
4231
4385
|
}>>;
|
|
@@ -4487,6 +4641,22 @@ declare class APIContext {
|
|
|
4487
4641
|
* 获取加入 RTC 房间的用户信息(当前仅能查自己的)
|
|
4488
4642
|
*/
|
|
4489
4643
|
getRTCJoinedUserInfo(userId: string): Promise<IAsyncRes<IRTCJoinedInfo[]>>;
|
|
4644
|
+
/**
|
|
4645
|
+
* 连麦 PK 请求
|
|
4646
|
+
*/
|
|
4647
|
+
requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
|
|
4648
|
+
/**
|
|
4649
|
+
* 取消连麦 PK 请求
|
|
4650
|
+
*/
|
|
4651
|
+
cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
|
|
4652
|
+
/**
|
|
4653
|
+
* 响应连麦 PK 请求
|
|
4654
|
+
*/
|
|
4655
|
+
responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
|
|
4656
|
+
/**
|
|
4657
|
+
* 结束连麦 PK
|
|
4658
|
+
*/
|
|
4659
|
+
endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
|
|
4490
4660
|
}
|
|
4491
4661
|
|
|
4492
4662
|
declare class PluginContext {
|
|
@@ -4657,6 +4827,22 @@ declare class RTCPluginContext extends PluginContext {
|
|
|
4657
4827
|
* 直播身份切换
|
|
4658
4828
|
*/
|
|
4659
4829
|
rtcIdentityChange(roomId: string, changeType: RTCIdentityChangeType, broadcastType?: number): IPromiseResult<IJoinRTCRoomData>;
|
|
4830
|
+
/**
|
|
4831
|
+
* 连麦 PK 请求
|
|
4832
|
+
*/
|
|
4833
|
+
requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
|
|
4834
|
+
/**
|
|
4835
|
+
* 取消连麦 PK 请求
|
|
4836
|
+
*/
|
|
4837
|
+
cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
|
|
4838
|
+
/**
|
|
4839
|
+
* 响应连麦 PK 请求
|
|
4840
|
+
*/
|
|
4841
|
+
responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
|
|
4842
|
+
/**
|
|
4843
|
+
* 结束连麦 PK
|
|
4844
|
+
*/
|
|
4845
|
+
endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
|
|
4660
4846
|
}
|
|
4661
4847
|
|
|
4662
4848
|
declare abstract class ANavi {
|
|
@@ -5255,6 +5441,10 @@ declare abstract class AEngine implements IEngine {
|
|
|
5255
5441
|
abstract rtcIdentityChange(roomId: string, changeType: RTCIdentityChangeType, broadcastType?: number): Promise<IAsyncRes<IJoinRTCRoomData>>;
|
|
5256
5442
|
abstract getRTCJoinedUserInfo(userId: string): Promise<IAsyncRes<IRTCJoinedInfo[]>>;
|
|
5257
5443
|
abstract setRTCCDNUris(roomId: string, objectName: string, CDNUris: string): Promise<ErrorCode>;
|
|
5444
|
+
abstract requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
|
|
5445
|
+
abstract cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
|
|
5446
|
+
abstract responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
|
|
5447
|
+
abstract endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
|
|
5258
5448
|
}
|
|
5259
5449
|
|
|
5260
5450
|
declare class AppStorage {
|
|
@@ -5722,4 +5912,4 @@ declare enum CONNECTION_TYPE {
|
|
|
5722
5912
|
*/
|
|
5723
5913
|
declare const version: string;
|
|
5724
5914
|
|
|
5725
|
-
export { AEngine, ANavi, APIContext, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType as ChatroomMemberChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, IChatRoomEntries, IChatRoomEntry, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IInsertMsgOptions, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, 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, IRTCRoomInfo, IRTCUsers, IReadReceiptInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRequest, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStorage, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogType, Logger, MAX_MESSAGE_CONTENT_BYTES, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NotificationStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, cloneByJSON, forEach, formatConnectResponseCode, getBrowser, getMimeKey, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidFileType, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, usingCppEngine, validate, version };
|
|
5915
|
+
export { AEngine, ANavi, APIContext, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType as ChatroomMemberChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IInsertMsgOptions, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, 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, IRTCRoomInfo, IRTCUsers, IReadReceiptInfo, 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, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogType, Logger, MAX_MESSAGE_CONTENT_BYTES, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NotificationStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, cloneByJSON, forEach, formatConnectResponseCode, getBrowser, getMimeKey, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidFileType, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, usingCppEngine, validate, version };
|