@rongcloud/engine 5.12.0 → 5.12.1-alpha.7
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 +71 -5
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4082,6 +4082,17 @@ declare enum RTCJoinType {
|
|
|
4082
4082
|
COEXIST = 2
|
|
4083
4083
|
}
|
|
4084
4084
|
|
|
4085
|
+
/**
|
|
4086
|
+
* 透传信令类型。 0:Query;1:Publish
|
|
4087
|
+
* 仅百握使用
|
|
4088
|
+
* @enum
|
|
4089
|
+
* @hidden
|
|
4090
|
+
*/
|
|
4091
|
+
declare enum CommonSignalRequestType {
|
|
4092
|
+
CSRT_QUERY = 0,
|
|
4093
|
+
CSRT_PUBLISH = 1
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4085
4096
|
/**
|
|
4086
4097
|
* @category Interface
|
|
4087
4098
|
*/
|
|
@@ -4580,6 +4591,10 @@ interface IReceivedMessage {
|
|
|
4580
4591
|
* 定向用户列表(仅支持群聊, 超级群)
|
|
4581
4592
|
*/
|
|
4582
4593
|
directedUserIds?: string[];
|
|
4594
|
+
/**
|
|
4595
|
+
* 本地消息扩展内容
|
|
4596
|
+
*/
|
|
4597
|
+
extra?: string;
|
|
4583
4598
|
}
|
|
4584
4599
|
/**
|
|
4585
4600
|
* 第一条未读消息信息
|
|
@@ -7191,6 +7206,11 @@ declare abstract class AConnectionMgr {
|
|
|
7191
7206
|
*/
|
|
7192
7207
|
protected updateCmpWeight(cmpUrl: string, isRise: boolean, isQuick?: boolean): void;
|
|
7193
7208
|
private clearCmpWeightCache;
|
|
7209
|
+
/**
|
|
7210
|
+
* 用于子进程崩溃重启后调用重连
|
|
7211
|
+
* @param code 错误码
|
|
7212
|
+
*/
|
|
7213
|
+
reconnect(token: string, reconnectKickEnable: boolean, openCallPlus: boolean, code: ErrorCode): void;
|
|
7194
7214
|
}
|
|
7195
7215
|
|
|
7196
7216
|
/**
|
|
@@ -8777,7 +8797,7 @@ interface IEngine {
|
|
|
8777
8797
|
getGroupMembersByRole(groupId: string, role: GroupMemberRole, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
8778
8798
|
getGroupMembers(groupId: string, userIds: string[]): Promise<IAsyncRes<IGroupMemberInfo[]>>;
|
|
8779
8799
|
setGroupMemberInfo(groupId: string, userId: string, nickname: string, extra?: string): Promise<IAsyncRes<void>>;
|
|
8780
|
-
searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IGroupMemberInfo
|
|
8800
|
+
searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
8781
8801
|
joinGroup(groupId: string): Promise<IAsyncRes<IProcessCode>>;
|
|
8782
8802
|
inviteUsersToGroup(groupId: string, userIds: string[]): Promise<IAsyncRes<IProcessCode>>;
|
|
8783
8803
|
memberInviteResponse(params: {
|
|
@@ -9277,6 +9297,17 @@ interface INaviContextInfo {
|
|
|
9277
9297
|
reason: ConnectReason;
|
|
9278
9298
|
}
|
|
9279
9299
|
|
|
9300
|
+
/**
|
|
9301
|
+
* 仅百握使用
|
|
9302
|
+
* 通用信令类型
|
|
9303
|
+
* @interface ICommonSinalInfo
|
|
9304
|
+
* @hidden
|
|
9305
|
+
*/
|
|
9306
|
+
interface ICommonSinalInfo {
|
|
9307
|
+
buffer: ArrayBuffer[];
|
|
9308
|
+
length: number;
|
|
9309
|
+
}
|
|
9310
|
+
|
|
9280
9311
|
/**
|
|
9281
9312
|
* 定义已废弃,请使用 `IRemoveChatroomEntries` 替换
|
|
9282
9313
|
* @deprecated
|
|
@@ -9323,6 +9354,10 @@ declare abstract class BasicReporter {
|
|
|
9323
9354
|
* logger 实例
|
|
9324
9355
|
*/
|
|
9325
9356
|
protected readonly logger: BasicLogger;
|
|
9357
|
+
/**
|
|
9358
|
+
* 是否关闭日志上报,默认不关闭
|
|
9359
|
+
*/
|
|
9360
|
+
private disableLogReport;
|
|
9326
9361
|
/**
|
|
9327
9362
|
* 当前用户 id
|
|
9328
9363
|
*/
|
|
@@ -9339,7 +9374,11 @@ declare abstract class BasicReporter {
|
|
|
9339
9374
|
/**
|
|
9340
9375
|
* logger 实例
|
|
9341
9376
|
*/
|
|
9342
|
-
logger: BasicLogger
|
|
9377
|
+
logger: BasicLogger,
|
|
9378
|
+
/**
|
|
9379
|
+
* 是否关闭日志上报,默认不关闭
|
|
9380
|
+
*/
|
|
9381
|
+
disableLogReport?: boolean);
|
|
9343
9382
|
private timer;
|
|
9344
9383
|
protected started: boolean;
|
|
9345
9384
|
/**
|
|
@@ -9662,6 +9701,7 @@ interface IWatcher {
|
|
|
9662
9701
|
databaseUpgradeWillStart?: () => void;
|
|
9663
9702
|
databaseUpgrading?: (progress: number) => void;
|
|
9664
9703
|
databaseUpgradeDidComplete?: (code: ErrorCode) => void;
|
|
9704
|
+
commonSignalEventReceived?: (data: ICommonSinalInfo) => void;
|
|
9665
9705
|
}
|
|
9666
9706
|
interface IAPIContextOption {
|
|
9667
9707
|
/**
|
|
@@ -9728,6 +9768,12 @@ interface IAPIContextOption {
|
|
|
9728
9768
|
* 私有云环境配置
|
|
9729
9769
|
*/
|
|
9730
9770
|
environment?: string;
|
|
9771
|
+
/**
|
|
9772
|
+
* 开启已读回执信息本地存储,开启后离线量大时会有性能问题
|
|
9773
|
+
* 私有云默认值为 false,多数客户已自行实现
|
|
9774
|
+
* 公有云默认值为 true
|
|
9775
|
+
*/
|
|
9776
|
+
enableReadReceiptStorage: boolean;
|
|
9731
9777
|
}
|
|
9732
9778
|
|
|
9733
9779
|
interface IPluginGenerator<API, InitOption> {
|
|
@@ -10259,6 +10305,7 @@ declare class APIContext {
|
|
|
10259
10305
|
setConversationNotificationLevel(conversationType: ConversationType, targetId: string, notificationLevel?: NotificationLevel, channelId?: string): Promise<ErrorCode>;
|
|
10260
10306
|
batchSetConversationNotificationLevel(conversations: IConversationOption[], notificationLevel: NotificationLevel): Promise<ErrorCode>;
|
|
10261
10307
|
setConversationStatus(conversationType: ConversationType, targetId: string, isTop?: boolean, notificationStatus?: 1 | 2, channelId?: string, isUpdateTime?: boolean): Promise<ErrorCode>;
|
|
10308
|
+
setConversationToTop(conversationType: ConversationType, targetId: string, isTop: boolean, channelId: string, isUpdateTime: boolean): Promise<ErrorCode>;
|
|
10262
10309
|
batchSetConversationToTop(conversations: IConversationOption[], isTop: boolean, isCreateConversation?: boolean): Promise<ErrorCode>;
|
|
10263
10310
|
saveConversationMessageDraft(conversationType: ConversationType, targetId: string, draft: string, channelId?: string): Promise<ErrorCode>;
|
|
10264
10311
|
getConversationMessageDraft(conversationType: ConversationType, targetId: string, channelId?: string): Promise<IAsyncRes<string>>;
|
|
@@ -10606,6 +10653,7 @@ declare class APIContext {
|
|
|
10606
10653
|
updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<IAsyncRes>;
|
|
10607
10654
|
getMyUserProfileVisibility(): Promise<IAsyncRes<UserProfileVisibility>>;
|
|
10608
10655
|
searchUserProfileByUniqueId(uniqueId: string): Promise<IAsyncRes<IUserProfileInfo>>;
|
|
10656
|
+
checkUsersInGroup(groupId: string, userIds: string[]): Promise<IAsyncRes<string[]>>;
|
|
10609
10657
|
/**
|
|
10610
10658
|
* 删除所有会话
|
|
10611
10659
|
*/
|
|
@@ -10762,6 +10810,11 @@ declare class APIContext {
|
|
|
10762
10810
|
* 设置聊天室消息重排开关
|
|
10763
10811
|
*/
|
|
10764
10812
|
setCheckChatRoomDuplicateMessage(enableCheck: boolean): Promise<IAsyncRes<boolean>>;
|
|
10813
|
+
sendCommonSignaling(targetId: string, signalName: string, requestType: CommonSignalRequestType, buffer: ArrayBuffer[], length: number, timeout: number, callback: (requestId: number) => {}): Promise<IAsyncRes<ICommonSinalInfo>>;
|
|
10814
|
+
cancelSendCommonSignaling(requestId: number): Promise<IAsyncRes>;
|
|
10815
|
+
executeSQL(sql: string): Promise<IAsyncRes<{
|
|
10816
|
+
result: Array<Record<string, string>>;
|
|
10817
|
+
}>>;
|
|
10765
10818
|
rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: any): Promise<{
|
|
10766
10819
|
code: ErrorCode;
|
|
10767
10820
|
buffer?: Uint8Array;
|
|
@@ -10798,7 +10851,7 @@ declare class APIContext {
|
|
|
10798
10851
|
getGroupMembersByRole(groupId: string, role: GroupMemberRole, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
10799
10852
|
getGroupMembers(groupId: string, userIds: string[]): Promise<IAsyncRes<IGroupMemberInfo[]>>;
|
|
10800
10853
|
setGroupMemberInfo(groupId: string, userId: string, nickname: string, extra?: string): Promise<IAsyncRes<void>>;
|
|
10801
|
-
searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IGroupMemberInfo
|
|
10854
|
+
searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
10802
10855
|
joinGroup(groupId: string): Promise<IAsyncRes<IProcessCode>>;
|
|
10803
10856
|
inviteUsersToGroup(groupId: string, userIds: string[]): Promise<IAsyncRes<IProcessCode>>;
|
|
10804
10857
|
acceptGroupInvite(groupId: string, inviterId: string): Promise<IAsyncRes<IProcessCode>>;
|
|
@@ -10827,6 +10880,9 @@ declare class APIContext {
|
|
|
10827
10880
|
searchFriendsInfo(nickname: string): Promise<IAsyncRes<IFriendInfo[]>>;
|
|
10828
10881
|
setFriendAddPermission(permission: FriendAddPermission): Promise<IAsyncRes<void>>;
|
|
10829
10882
|
getFriendAddPermission(): Promise<IAsyncRes<FriendAddPermission>>;
|
|
10883
|
+
updateConversationTime(conversation: IConversationOption, operationTime: number): Promise<IAsyncRes<void>>;
|
|
10884
|
+
createConversation(conversation: IConversationOption): Promise<IAsyncRes<void>>;
|
|
10885
|
+
setMessageExtra(messageId: number, extra: string): Promise<ErrorCode>;
|
|
10830
10886
|
}
|
|
10831
10887
|
|
|
10832
10888
|
declare class PluginContext {
|
|
@@ -11457,6 +11513,7 @@ declare abstract class AEngine {
|
|
|
11457
11513
|
* 批量设置会话 置顶、免打扰
|
|
11458
11514
|
*/
|
|
11459
11515
|
abstract batchSetConversationStatus(statusList: ISetConversationStatusOptions[]): Promise<ErrorCode>;
|
|
11516
|
+
abstract setConversationToTop(conversationType: ConversationType, targetId: string, isTop: boolean, channelId: string, isUpdateTime: boolean): Promise<ErrorCode>;
|
|
11460
11517
|
abstract batchSetConversationToTop(conversations: IConversationOption[], isTop: boolean, isCreateConversation?: boolean): Promise<ErrorCode>;
|
|
11461
11518
|
abstract sendMessage(conversationType: ConversationType, targetId: string, options: ISendMsgOptions,
|
|
11462
11519
|
/**
|
|
@@ -12086,7 +12143,7 @@ declare abstract class AEngine {
|
|
|
12086
12143
|
abstract getGroupMembersByRole(groupId: string, role: GroupMemberRole, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
12087
12144
|
abstract getGroupMembers(groupId: string, userIds: string[]): Promise<IAsyncRes<IGroupMemberInfo[]>>;
|
|
12088
12145
|
abstract setGroupMemberInfo(groupId: string, userId: string, nickname: string, extra?: string): Promise<IAsyncRes<void>>;
|
|
12089
|
-
abstract searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IGroupMemberInfo
|
|
12146
|
+
abstract searchGroupMembers(groupId: string, nickName: string, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
12090
12147
|
abstract joinGroup(groupId: string): Promise<IAsyncRes<IProcessCode>>;
|
|
12091
12148
|
abstract inviteUsersToGroup(groupId: string, userIds: string[]): Promise<IAsyncRes<IProcessCode>>;
|
|
12092
12149
|
abstract memberInviteResponse(params: {
|
|
@@ -12119,6 +12176,15 @@ declare abstract class AEngine {
|
|
|
12119
12176
|
abstract searchFriendsInfo(nickname: string): Promise<IAsyncRes<IFriendInfo[]>>;
|
|
12120
12177
|
abstract setFriendAddPermission(permission: FriendAddPermission): Promise<IAsyncRes<void>>;
|
|
12121
12178
|
abstract getFriendAddPermission(): Promise<IAsyncRes<FriendAddPermission>>;
|
|
12179
|
+
abstract sendCommonSignaling(targetId: string, signalName: string, requestType: CommonSignalRequestType, buffer: ArrayBuffer[], length: number, timeout: number, callback: (requestId: number) => {}): Promise<IAsyncRes<ICommonSinalInfo>>;
|
|
12180
|
+
abstract cancelSendCommonSignaling(requestId: number): Promise<IAsyncRes>;
|
|
12181
|
+
abstract executeSQL(sql: string): Promise<IAsyncRes<{
|
|
12182
|
+
result: Array<Record<string, string>>;
|
|
12183
|
+
}>>;
|
|
12184
|
+
abstract createConversation(conversation: IConversationOption): Promise<IAsyncRes>;
|
|
12185
|
+
abstract updateConversationTime(conversation: IConversationOption, operationTime: number): Promise<IAsyncRes>;
|
|
12186
|
+
abstract checkUsersInGroup(groupId: string, userIds: string[]): Promise<IAsyncRes<string[]>>;
|
|
12187
|
+
abstract setMessageExtra(messageId: number, extra: string): Promise<ErrorCode>;
|
|
12122
12188
|
}
|
|
12123
12189
|
|
|
12124
12190
|
interface IUrlCenterInitOption {
|
|
@@ -13233,4 +13299,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
13233
13299
|
*/
|
|
13234
13300
|
declare const version: string;
|
|
13235
13301
|
|
|
13236
|
-
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BaseCloudController, BasicLogger, BasicNavi, BasicReporter, BasicStaticConfigManager, BasicStatistic, BasicStatisticReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectReason, ConnectType, ConnectionStatus, Content, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, DirectionType, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, ErrorCodeMap, EventEmitter, FORMATED_VERSION, FileType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendEventType, FriendMsgChangeType, FriendRelationType, FriendSubChangeType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationSubChangeType, GroupApplicationType, GroupFollowUserChangeType, GroupInfoChangeSubChangeType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupMsgChangeType, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationSubChangeType, GroupOperationType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBaseStatisticsData, IBlockedMessageInfo, ICancelRoomPKOptions, IChannelAndUserGroupChangeData, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICloudController, ICombineV2MessageContent, ICombinedMessage, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendInviteServerInfo, IFriendRelationInfo, IFriendRelationServerInfo, IFriendServerInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHarmonyOSPushConfig, IInsertMessage, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogger, IMRTRConfig, IM_CHATROOM_PULL_INTERVAL_TIME, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviContextInfo, INaviInfo, INetwork, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerAddressData, IServerChannelBaseInfo, IServerChannelsInviteStatusInfo, IServerChannelsListResult, IServerChannelsOutput, IServerChannelsPageParam, IServerChannelsUserExtInfo, IServerChannelsUserInfo, IServerConversationStatus, IServerGroupBaseInfo, IServerGroupInfo, IServerProfileInfo, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISubData, ISubscribeLocalStore, ISubscribeRelationInfo, ISubscribeRelationServerData, ISubscribeStatusDetail, ISubscribeUserLocalBaseData, ISubscribeUserLocalOnlineData, ISubscribeUserLocalProfileData, ISubscribeUserStatusInfo, ISubscribeUserStatusServerData, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUploadTask, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileBaseInfo, IUserProfileInfo, IUserProfileServerData, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, LimitedSubscribeType, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_CHATROOM_NOTIFICATION_EXTRA_LENGTH, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NON_SUBSCRIBE_USER_PROFILE_VALID_TIME, NaviCacheType, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OnlineStatus, OperateStatus, PlatformInfo, PluginContext, ProtocalType, PushImportanceHonor, QueryFriendsDirectionType, RCAssertError, RCConnectionStatus, RC_DEFAULT_USER, READ_RECEIPT_CATCH_TIME, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATIC_CONFIG_CACHE_TIME, STATIC_CONFIG_IV, STATIC_CONFIG_KEY, STATUS_MESSAGE, SUBSCRIBE_USER_PROFILE_VALID_TIME, SentStatus, StatisticL, StatisticsTag, StatisticsVersion, StoreKeys, SubscribeDataType, SubscribeOperationType, SubscribeType, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, UserProfileVisibility, VERSION, ValidatorManage, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, arrayToKeyValue, assert, clearOldIndexDB, clone, cloneByJSON, completeSubscriptionPlatformStatus, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, formatFollowsInfo, formatGetGroupsInfo, formatGroupApplications, formatGroupBaseInfo, formatGroupMembers, formatGroupsInfo, formatUserProfiles, getBrowser, getClientMessageId, getDeviceId, getMessageUIdHash, getMimeKey, getMinionURL, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isStartCloudController, isString, isSupportIndexDB, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversation, isValidConversationType, isValidEnum, isValidExpansion, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transforServerProfileInfo, transformReceivedStatusFlag, transformReceivedStatusInfo, transformUserProfiles, unInitStatisticDB, updateMentionedInfo, urlCenter, usingCppEngine, validate, validators, version };
|
|
13302
|
+
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BaseCloudController, BasicLogger, BasicNavi, BasicReporter, BasicStaticConfigManager, BasicStatistic, BasicStatisticReporter, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, CommonSignalRequestType, ConnectReason, ConnectType, ConnectionStatus, Content, ConversationType, DB_LOG_FLUSH_FREQUENCY, DB_LOG_MAX_SIZE, DelayTimer, DirectionType, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, ErrorCodeMap, EventEmitter, FORMATED_VERSION, FileType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendEventType, FriendMsgChangeType, FriendRelationType, FriendSubChangeType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationSubChangeType, GroupApplicationType, GroupFollowUserChangeType, GroupInfoChangeSubChangeType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupMsgChangeType, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationSubChangeType, GroupOperationType, HTTP_TIMEOUT, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBaseStatisticsData, IBlockedMessageInfo, ICancelRoomPKOptions, IChannelAndUserGroupChangeData, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICloudController, ICombineV2MessageContent, ICombinedMessage, ICommonSinalInfo, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendInviteServerInfo, IFriendRelationInfo, IFriendRelationServerInfo, IFriendServerInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHarmonyOSPushConfig, IInsertMessage, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogger, IMRTRConfig, IM_CHATROOM_PULL_INTERVAL_TIME, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviContextInfo, INaviInfo, INetwork, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerAddressData, IServerChannelBaseInfo, IServerChannelsInviteStatusInfo, IServerChannelsListResult, IServerChannelsOutput, IServerChannelsPageParam, IServerChannelsUserExtInfo, IServerChannelsUserInfo, IServerConversationStatus, IServerGroupBaseInfo, IServerGroupInfo, IServerProfileInfo, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, ISubData, ISubscribeLocalStore, ISubscribeRelationInfo, ISubscribeRelationServerData, ISubscribeStatusDetail, ISubscribeUserLocalBaseData, ISubscribeUserLocalOnlineData, ISubscribeUserLocalProfileData, ISubscribeUserStatusInfo, ISubscribeUserStatusServerData, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadConversation, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUploadTask, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileBaseInfo, IUserProfileInfo, IUserProfileServerData, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, LimitedSubscribeType, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_CHATROOM_NOTIFICATION_EXTRA_LENGTH, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NON_SUBSCRIBE_USER_PROFILE_VALID_TIME, NaviCacheType, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OnlineStatus, OperateStatus, PlatformInfo, PluginContext, ProtocalType, PushImportanceHonor, QueryFriendsDirectionType, RCAssertError, RCConnectionStatus, RC_DEFAULT_USER, READ_RECEIPT_CATCH_TIME, REAT_TIME_LOG_SIZE, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATIC_CONFIG_CACHE_TIME, STATIC_CONFIG_IV, STATIC_CONFIG_KEY, STATUS_MESSAGE, SUBSCRIBE_USER_PROFILE_VALID_TIME, SentStatus, StatisticL, StatisticsTag, StatisticsVersion, StoreKeys, SubscribeDataType, SubscribeOperationType, SubscribeType, SuspendablePromise, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, UserProfileVisibility, VERSION, ValidatorManage, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, arrayToKeyValue, assert, clearOldIndexDB, clone, cloneByJSON, completeSubscriptionPlatformStatus, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, formatFollowsInfo, formatGetGroupsInfo, formatGroupApplications, formatGroupBaseInfo, formatGroupMembers, formatGroupsInfo, formatUserProfiles, getBrowser, getClientMessageId, getDeviceId, getMessageUIdHash, getMimeKey, getMinionURL, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isStartCloudController, isString, isSupportIndexDB, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversation, isValidConversationType, isValidEnum, isValidExpansion, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transforServerProfileInfo, transformReceivedStatusFlag, transformReceivedStatusInfo, transformUserProfiles, unInitStatisticDB, updateMentionedInfo, urlCenter, usingCppEngine, validate, validators, version };
|