@rongcloud/engine 5.0.2-custom-qihoo.2 → 5.1.0-custom-qihoo.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/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
- * RCEngine - v5.0.2-custom-qihoo.2
3
- * CommitId - d62dfd5c4cc6c97a0ebcdfa3d34c8642b435095c
4
- * Thu Dec 30 2021 14:56:01 GMT+0800 (China Standard Time)
2
+ * RCEngine - v5.1.0-custom-qihoo.1
3
+ * CommitId - 5569a0329e3c411fc6e9c04a23f864101469c196
4
+ * Wed Jan 12 2022 18:35:07 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 IChatRoomEntry {
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 IRemoveChatRoomEntry {
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 IRemoveChatRoomEntries {
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 IChatRoomEntries {
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
  */
@@ -3087,6 +3192,8 @@ interface IEngine {
3087
3192
  * 获取当前 userId
3088
3193
  */
3089
3194
  getCurrentUserId(): string;
3195
+ getConversationListWithAllChannel(): IPromiseResult<IReceivedConversation[]>;
3196
+ getConversationListWithAllChannelByPage(index: number, limit: number): IPromiseResult<IReceivedConversation[]>;
3090
3197
  /**
3091
3198
  * 设置用户在线状态监听器
3092
3199
  */
@@ -3243,6 +3350,10 @@ interface IEngine {
3243
3350
  setRTCState(roomId: string, reportId: string): Promise<ErrorCode>;
3244
3351
  getRTCUserList(roomId: string): IPromiseResult<IRTCUsers>;
3245
3352
  setRTCCDNUris(roomId: string, objectName: string, CDNUris: string): Promise<ErrorCode>;
3353
+ requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
3354
+ cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
3355
+ responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
3356
+ endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
3246
3357
  }
3247
3358
 
3248
3359
  interface IExpansionMsgContent {
@@ -3329,6 +3440,27 @@ interface ITypingMessage {
3329
3440
  list: Array<ITypingUser>;
3330
3441
  }
3331
3442
 
3443
+ /**
3444
+ * 定义已废弃,请使用 `IRemoveChatroomEntries` 替换
3445
+ * @deprecated
3446
+ */
3447
+ declare type IRemoveChatRoomEntries = IRemoveChatroomEntries;
3448
+ /**
3449
+ * 定义已废弃,请使用 `IChatroomEntry` 替换
3450
+ * @deprecated
3451
+ */
3452
+ declare type IChatRoomEntry = IChatroomEntry;
3453
+ /**
3454
+ * 定义已废弃,请使用 `IChatroomEntries` 替换
3455
+ * @deprecated
3456
+ */
3457
+ declare type IChatRoomEntries = IChatroomEntries;
3458
+ /**
3459
+ * 定义已废弃,请使用 `IRemoveChatroomEntry` 替换
3460
+ * @deprecated
3461
+ */
3462
+ declare type IRemoveChatRoomEntry = IRemoveChatroomEntry;
3463
+
3332
3464
  /**
3333
3465
  * 序列化、反序列化数据通道
3334
3466
  */
@@ -3614,6 +3746,22 @@ declare class DataCodec {
3614
3746
  * RTC 查询在房间内用户的信息
3615
3747
  */
3616
3748
  encodeQueryUserJoinedInfo(userId: string): any;
3749
+ /**
3750
+ * 连麦 PK 请求
3751
+ */
3752
+ encodeRequestRoomPK(options: IReqRoomPKOptions): any;
3753
+ /**
3754
+ * 取消连麦 PK 请求
3755
+ */
3756
+ encodeCancelRoomPK(options: ICancelRoomPKOptions): any;
3757
+ /**
3758
+ * 响应连麦 PK 请求
3759
+ */
3760
+ encodeResponseRoomPK(options: IResRoomPKOptions): any;
3761
+ /**
3762
+ * 结束连麦 PK
3763
+ */
3764
+ encodeEndRoomPK(options: IEndRoomPKOptions): any;
3617
3765
  }
3618
3766
 
3619
3767
  interface IDataChannelWatcher {
@@ -4167,8 +4315,8 @@ declare class APIContext {
4167
4315
  * @param roomId 聊天室房间 id
4168
4316
  * @param entry 属性信息
4169
4317
  */
4170
- setChatroomEntry(roomId: string, entry: IChatRoomEntry): Promise<ErrorCode>;
4171
- setChatroomEntries(roomId: string, entryOptions: IChatRoomEntries): Promise<{
4318
+ setChatroomEntry(roomId: string, entry: IChatroomEntry): Promise<ErrorCode>;
4319
+ setChatroomEntries(roomId: string, entryOptions: IChatroomEntries): Promise<{
4172
4320
  code: ErrorCode;
4173
4321
  data?: any;
4174
4322
  }>;
@@ -4178,21 +4326,21 @@ declare class APIContext {
4178
4326
  * @param roomId 聊天室房间 id
4179
4327
  * @param entry 属性信息
4180
4328
  */
4181
- forceSetChatroomEntry(roomId: string, entry: IChatRoomEntry): Promise<ErrorCode>;
4329
+ forceSetChatroomEntry(roomId: string, entry: IChatroomEntry): Promise<ErrorCode>;
4182
4330
  /**
4183
4331
  * 删除聊天室属性
4184
4332
  * @description 该方法仅限于删除自己设置的聊天室属性
4185
4333
  * @param roomId 聊天室房间 id
4186
4334
  * @param entry 要移除的属性信息
4187
4335
  */
4188
- removeChatroomEntry(roomId: string, entry: IRemoveChatRoomEntry): Promise<ErrorCode>;
4336
+ removeChatroomEntry(roomId: string, entry: IRemoveChatroomEntry): Promise<ErrorCode>;
4189
4337
  /**
4190
4338
  * 批量删除聊天室属性
4191
4339
  * @description 该方法仅限于删除自己设置的聊天室属性
4192
4340
  * @param roomId 聊天室房间 id
4193
4341
  * @param entry 要移除的属性信息
4194
4342
  */
4195
- removeChatroomEntries(roomId: string, entryOptions: IRemoveChatRoomEntries): Promise<{
4343
+ removeChatroomEntries(roomId: string, entryOptions: IRemoveChatroomEntries): Promise<{
4196
4344
  code: ErrorCode;
4197
4345
  data?: any;
4198
4346
  }>;
@@ -4202,7 +4350,7 @@ declare class APIContext {
4202
4350
  * @param roomId 聊天室房间 id
4203
4351
  * @param entry 要移除的属性信息
4204
4352
  */
4205
- forceRemoveChatroomEntry(roomId: string, entry: IRemoveChatRoomEntry): Promise<ErrorCode>;
4353
+ forceRemoveChatroomEntry(roomId: string, entry: IRemoveChatroomEntry): Promise<ErrorCode>;
4206
4354
  /**
4207
4355
  * 获取聊天室中的指定属性
4208
4356
  * @param roomId 聊天室房间 id
@@ -4225,7 +4373,15 @@ declare class APIContext {
4225
4373
  * * 1:升序,用于获取晚于指定时间戳发送的消息
4226
4374
  * @param timestamp 指定拉取消息用到的时间戳。默认值为 `0`,表示按当前时间拉取
4227
4375
  */
4228
- getChatRoomHistoryMessages(roomId: string, count?: number, order?: 0 | 1, timestamp?: number): Promise<IAsyncRes<{
4376
+ getChatroomHistoryMessages(roomId: string, count?: number, order?: 0 | 1, timestamp?: number): Promise<IAsyncRes<{
4377
+ list: IReceivedMessage[];
4378
+ hasMore: boolean;
4379
+ }>>;
4380
+ /**
4381
+ * 方法已废弃,推荐使用 `getChatroomHistoryMessages` 替代
4382
+ * @deprecated
4383
+ */
4384
+ getChatRoomHistoryMessages: (roomId: string, count?: number, order?: 0 | 1, timestamp?: number) => Promise<IAsyncRes<{
4229
4385
  list: IReceivedMessage[];
4230
4386
  hasMore: boolean;
4231
4387
  }>>;
@@ -4435,6 +4591,8 @@ declare class APIContext {
4435
4591
  list: IReceivedMessage[];
4436
4592
  hasMore: boolean;
4437
4593
  }>>;
4594
+ getConversationListWithAllChannel(): Promise<IAsyncRes<IReceivedConversation[]>>;
4595
+ getConversationListWithAllChannelByPage(index: number, limit: number): Promise<IAsyncRes<IReceivedConversation[]>>;
4438
4596
  /**
4439
4597
  * 加入房间
4440
4598
  * @param roomId
@@ -4487,6 +4645,22 @@ declare class APIContext {
4487
4645
  * 获取加入 RTC 房间的用户信息(当前仅能查自己的)
4488
4646
  */
4489
4647
  getRTCJoinedUserInfo(userId: string): Promise<IAsyncRes<IRTCJoinedInfo[]>>;
4648
+ /**
4649
+ * 连麦 PK 请求
4650
+ */
4651
+ requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
4652
+ /**
4653
+ * 取消连麦 PK 请求
4654
+ */
4655
+ cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
4656
+ /**
4657
+ * 响应连麦 PK 请求
4658
+ */
4659
+ responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
4660
+ /**
4661
+ * 结束连麦 PK
4662
+ */
4663
+ endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
4490
4664
  }
4491
4665
 
4492
4666
  declare class PluginContext {
@@ -4657,6 +4831,22 @@ declare class RTCPluginContext extends PluginContext {
4657
4831
  * 直播身份切换
4658
4832
  */
4659
4833
  rtcIdentityChange(roomId: string, changeType: RTCIdentityChangeType, broadcastType?: number): IPromiseResult<IJoinRTCRoomData>;
4834
+ /**
4835
+ * 连麦 PK 请求
4836
+ */
4837
+ requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
4838
+ /**
4839
+ * 取消连麦 PK 请求
4840
+ */
4841
+ cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
4842
+ /**
4843
+ * 响应连麦 PK 请求
4844
+ */
4845
+ responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
4846
+ /**
4847
+ * 结束连麦 PK
4848
+ */
4849
+ endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
4660
4850
  }
4661
4851
 
4662
4852
  declare abstract class ANavi {
@@ -5092,6 +5282,8 @@ declare abstract class AEngine implements IEngine {
5092
5282
  * 获取当前 userId
5093
5283
  */
5094
5284
  abstract getCurrentUserId(): string;
5285
+ abstract getConversationListWithAllChannel(): IPromiseResult<IReceivedConversation[]>;
5286
+ abstract getConversationListWithAllChannelByPage(index: number, limit: number): IPromiseResult<IReceivedConversation[]>;
5095
5287
  /**
5096
5288
  * 设置用户在线状态监听器
5097
5289
  */
@@ -5255,6 +5447,10 @@ declare abstract class AEngine implements IEngine {
5255
5447
  abstract rtcIdentityChange(roomId: string, changeType: RTCIdentityChangeType, broadcastType?: number): Promise<IAsyncRes<IJoinRTCRoomData>>;
5256
5448
  abstract getRTCJoinedUserInfo(userId: string): Promise<IAsyncRes<IRTCJoinedInfo[]>>;
5257
5449
  abstract setRTCCDNUris(roomId: string, objectName: string, CDNUris: string): Promise<ErrorCode>;
5450
+ abstract requestRoomPK(options: IReqRoomPKOptions): Promise<ErrorCode>;
5451
+ abstract cancelRoomPK(options: ICancelRoomPKOptions): Promise<ErrorCode>;
5452
+ abstract responseRoomPK(options: IResRoomPKOptions): Promise<ErrorCode>;
5453
+ abstract endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
5258
5454
  }
5259
5455
 
5260
5456
  declare class AppStorage {
@@ -5722,4 +5918,4 @@ declare enum CONNECTION_TYPE {
5722
5918
  */
5723
5919
  declare const version: string;
5724
5920
 
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 };
5921
+ 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 };