@rongcloud/engine 5.10.2 → 5.10.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 +93 -11
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -296,11 +296,32 @@ interface IChatroomRejoinedSuccessed extends IChatroomJoinResponse {
|
|
|
296
296
|
count: number;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
|
+
* 聊天室成员变更的用户数据
|
|
300
|
+
* @category Interface
|
|
301
|
+
* @since 5.10.3
|
|
302
|
+
*/
|
|
303
|
+
interface IChartroomUserAction {
|
|
304
|
+
/**
|
|
305
|
+
* 用户 ID
|
|
306
|
+
*/
|
|
307
|
+
userId: string;
|
|
308
|
+
/**
|
|
309
|
+
* 用户变更类型
|
|
310
|
+
*/
|
|
311
|
+
action: ChatroomUserChangeType;
|
|
312
|
+
/**
|
|
313
|
+
* 加入聊天室时的附加信息
|
|
314
|
+
*/
|
|
315
|
+
extra?: string;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* 聊天室成员变更数据
|
|
299
319
|
* @category Interface
|
|
300
320
|
*/
|
|
301
321
|
interface IChatroomUserChangeInfo {
|
|
302
322
|
/**
|
|
303
323
|
* 加入、退出的成员列表
|
|
324
|
+
* @deprecated 从 @since 5.10.3 开始废弃该属性,请使用 {@link userList} 代替请使用 users
|
|
304
325
|
*/
|
|
305
326
|
users: {
|
|
306
327
|
[userId: string]: ChatroomUserChangeType;
|
|
@@ -313,6 +334,11 @@ interface IChatroomUserChangeInfo {
|
|
|
313
334
|
* 聊天室成员人数
|
|
314
335
|
*/
|
|
315
336
|
memberCount: number;
|
|
337
|
+
/**
|
|
338
|
+
* 聊天室成员变更列表
|
|
339
|
+
* @since 5.10.3
|
|
340
|
+
*/
|
|
341
|
+
userList: IChartroomUserAction[];
|
|
316
342
|
}
|
|
317
343
|
/**
|
|
318
344
|
* @category Interface
|
|
@@ -585,6 +611,11 @@ interface IChatroomJoinResponse {
|
|
|
585
611
|
* 聊天室全局禁言白名单
|
|
586
612
|
*/
|
|
587
613
|
isCurrentChatroomInWhitelist: boolean;
|
|
614
|
+
/**
|
|
615
|
+
* 加入时间
|
|
616
|
+
* @since 5.10.3
|
|
617
|
+
*/
|
|
618
|
+
joinTime: number;
|
|
588
619
|
}
|
|
589
620
|
|
|
590
621
|
/**
|
|
@@ -1270,6 +1301,16 @@ declare enum ErrorCode {
|
|
|
1270
1301
|
* 订阅用户数达到上限, 详细查看开发文档。
|
|
1271
1302
|
*/
|
|
1272
1303
|
RC_SUBSCRIBED_USERIDS_EXCEED_LIMIT = 26022,
|
|
1304
|
+
/**
|
|
1305
|
+
* 26106
|
|
1306
|
+
* 上传文件超过最大限制
|
|
1307
|
+
*/
|
|
1308
|
+
RC_FILE_SIZE_EXCEED_LIMIT = 26106,
|
|
1309
|
+
/**
|
|
1310
|
+
* 26107
|
|
1311
|
+
* 开启限制未传 size 参数
|
|
1312
|
+
*/
|
|
1313
|
+
INVALID_PARAMETER_SIZE_NOT_FOUND = 26107,
|
|
1273
1314
|
/**
|
|
1274
1315
|
* 30001
|
|
1275
1316
|
* 当前连接已经被释放
|
|
@@ -2102,6 +2143,12 @@ declare enum ErrorCode {
|
|
|
2102
2143
|
* @since 5.9.10
|
|
2103
2144
|
*/
|
|
2104
2145
|
INVALID_PARAMETER_USER_PROFILE_VISIBILITY = 34313,
|
|
2146
|
+
/**
|
|
2147
|
+
* 34314
|
|
2148
|
+
* 参数 extra 无效
|
|
2149
|
+
* @since 5.10.3
|
|
2150
|
+
*/
|
|
2151
|
+
INVALID_PARAMETER_EXTRA = 34314,
|
|
2105
2152
|
/**
|
|
2106
2153
|
* 35001
|
|
2107
2154
|
* 群组信息异常
|
|
@@ -2886,6 +2933,11 @@ declare enum LogTagId {
|
|
|
2886
2933
|
L_REALTIME_LOG_O = "L_REALTIME_LOG_O",
|
|
2887
2934
|
/** 实时日志上报结果 */
|
|
2888
2935
|
L_REALTIME_LOG_T = "L_REALTIME_LOG_T",
|
|
2936
|
+
/** 埋点日志上报 */
|
|
2937
|
+
L_STATISTIC_LOG_R = "L_STATISTIC_LOG_R",
|
|
2938
|
+
L_STATISTIC_LOG_O = "L_STATISTIC_LOG_O",
|
|
2939
|
+
/** 埋点日志上报结果 */
|
|
2940
|
+
L_STATISTIC_LOG_T = "L_STATISTIC_LOG_T",
|
|
2889
2941
|
L_UNKNOWN_TOPIC_E = "L_UNKNOWN_TOPIC_E",
|
|
2890
2942
|
L_RECV_RMTP_O = "L_RECV_RMTP_O",
|
|
2891
2943
|
L_RECV_RMTP_E = "L_RECV_RMTP_E",
|
|
@@ -3193,7 +3245,11 @@ declare enum PlatformInfo {
|
|
|
3193
3245
|
/**
|
|
3194
3246
|
* 小程序
|
|
3195
3247
|
*/
|
|
3196
|
-
Mini = 5
|
|
3248
|
+
Mini = 5,
|
|
3249
|
+
/**
|
|
3250
|
+
* 鸿蒙
|
|
3251
|
+
*/
|
|
3252
|
+
HarmonyOS = 6
|
|
3197
3253
|
}
|
|
3198
3254
|
/**
|
|
3199
3255
|
* 订阅类型
|
|
@@ -3449,6 +3505,25 @@ interface IAndroidPushConfig {
|
|
|
3449
3505
|
*/
|
|
3450
3506
|
imageUrlHonor?: string;
|
|
3451
3507
|
}
|
|
3508
|
+
/**
|
|
3509
|
+
* 鸿蒙推送配置
|
|
3510
|
+
* @category Interface
|
|
3511
|
+
* @since: 5.10.3
|
|
3512
|
+
*/
|
|
3513
|
+
interface IHarmonyOSPushConfig {
|
|
3514
|
+
/**
|
|
3515
|
+
* HarmonyOS通知栏消息右侧大图标 URL,必须 https 协议
|
|
3516
|
+
* 通知栏右侧图片,格式支持 png、jpg、jpeg、heif、gif、bmp,图片长*宽<25000像素
|
|
3517
|
+
* 图片不满足要求的情况下,终端不能显示通知消息。
|
|
3518
|
+
*/
|
|
3519
|
+
image?: string;
|
|
3520
|
+
/**
|
|
3521
|
+
* HarmonyOS推送消息分类:
|
|
3522
|
+
* 社交通讯:消息自分类标识,默认为空。category 取值必须为大写字母
|
|
3523
|
+
* 默认值为 null,如果为 null,则以服务配置为准
|
|
3524
|
+
*/
|
|
3525
|
+
category?: string;
|
|
3526
|
+
}
|
|
3452
3527
|
/**
|
|
3453
3528
|
* 推送配置
|
|
3454
3529
|
* @category Interface
|
|
@@ -3480,6 +3555,11 @@ interface IPushConfig {
|
|
|
3480
3555
|
* androidConfig
|
|
3481
3556
|
*/
|
|
3482
3557
|
androidConfig?: IAndroidPushConfig;
|
|
3558
|
+
/**
|
|
3559
|
+
* HarmonyOS
|
|
3560
|
+
* @since 5.10.3
|
|
3561
|
+
*/
|
|
3562
|
+
harmonyOSConfig?: IHarmonyOSPushConfig;
|
|
3483
3563
|
/**
|
|
3484
3564
|
* 是否显示推送标题. 仅针对 iOS 平台有效
|
|
3485
3565
|
*/
|
|
@@ -6874,12 +6954,12 @@ interface IEngine {
|
|
|
6874
6954
|
* 加入聊天室
|
|
6875
6955
|
* @param count 拉取消息数量
|
|
6876
6956
|
*/
|
|
6877
|
-
joinChatroom(chatroomId: string, count: number): Promise<ErrorCode>;
|
|
6957
|
+
joinChatroom(chatroomId: string, count: number, extra?: string): Promise<ErrorCode>;
|
|
6878
6958
|
/**
|
|
6879
6959
|
* 加入已存在的聊天室
|
|
6880
6960
|
* @param count 拉取消息数量
|
|
6881
6961
|
*/
|
|
6882
|
-
joinExistChatroom(chatroomId: string, count: number): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
6962
|
+
joinExistChatroom(chatroomId: string, count: number, extra?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
6883
6963
|
/**
|
|
6884
6964
|
* 退出聊天室
|
|
6885
6965
|
*/
|
|
@@ -8671,13 +8751,13 @@ declare class APIContext {
|
|
|
8671
8751
|
* @param roomId 聊天室房间 Id
|
|
8672
8752
|
* @param count 进入聊天室成功后,自动拉取的历史消息数量,默认值为 `10`,最大有效值为 `50`,`-1` 为不拉取
|
|
8673
8753
|
*/
|
|
8674
|
-
joinChatroom(roomId: string, count?: number, traceId?: string): Promise<ErrorCode>;
|
|
8754
|
+
joinChatroom(roomId: string, count?: number, traceId?: string, extra?: string): Promise<ErrorCode>;
|
|
8675
8755
|
/**
|
|
8676
8756
|
* 加入聊天室,若聊天室不存在则抛出异常
|
|
8677
8757
|
* @param roomId 聊天室房间 Id
|
|
8678
8758
|
* @param count 进入聊天室成功后,自动拉取的历史消息数量,默认值为 `10`,最大有效值为 `50`,`-1` 为不拉取
|
|
8679
8759
|
*/
|
|
8680
|
-
joinExistChatroom(roomId: string, count?: number, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
8760
|
+
joinExistChatroom(roomId: string, count?: number, traceId?: string, extra?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
8681
8761
|
/**
|
|
8682
8762
|
* 退出聊天室
|
|
8683
8763
|
* @param roomId
|
|
@@ -8780,7 +8860,7 @@ declare class APIContext {
|
|
|
8780
8860
|
* 3. 上传结束前调用,此时 `httpMethod` 值应为 `POST`,`queryString` 值为 `uploadId={uploadId}`
|
|
8781
8861
|
* @returns
|
|
8782
8862
|
*/
|
|
8783
|
-
getFileToken(fileType: FileType, fileName?: string, httpMethod?: 'POST' | 'PUT', queryString?: string, url?: string): Promise<IUploadAuth & {
|
|
8863
|
+
getFileToken(fileType: FileType, fileName?: string, httpMethod?: 'POST' | 'PUT', queryString?: string, url?: string, size?: number): Promise<IUploadAuth & {
|
|
8784
8864
|
bos: string;
|
|
8785
8865
|
qiniu: string;
|
|
8786
8866
|
ossConfig: string;
|
|
@@ -9848,12 +9928,12 @@ declare abstract class AEngine {
|
|
|
9848
9928
|
* 加入聊天室
|
|
9849
9929
|
* @param count 拉取消息数量
|
|
9850
9930
|
*/
|
|
9851
|
-
abstract joinChatroom(chatroomId: string, count: number, traceId?: string): Promise<ErrorCode>;
|
|
9931
|
+
abstract joinChatroom(chatroomId: string, count: number, extra?: string, traceId?: string): Promise<ErrorCode>;
|
|
9852
9932
|
/**
|
|
9853
9933
|
* 加入已存在的聊天室
|
|
9854
9934
|
* @param count 拉取消息数量
|
|
9855
9935
|
*/
|
|
9856
|
-
abstract joinExistChatroom(chatroomId: string, count: number, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
9936
|
+
abstract joinExistChatroom(chatroomId: string, count: number, extra?: string, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
9857
9937
|
/**
|
|
9858
9938
|
* 退出聊天室
|
|
9859
9939
|
*/
|
|
@@ -9924,7 +10004,7 @@ declare abstract class AEngine {
|
|
|
9924
10004
|
* 3. 上传结束前调用,此时 `httpMethod` 值应为 `POST`,`queryString` 值为 `uploadId={uploadId}`
|
|
9925
10005
|
* @returns
|
|
9926
10006
|
*/
|
|
9927
|
-
abstract getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryString?: string, url?: string): Promise<IAsyncRes<IUploadAuth>>;
|
|
10007
|
+
abstract getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryString?: string, url?: string, size?: number): Promise<IAsyncRes<IUploadAuth>>;
|
|
9928
10008
|
/**
|
|
9929
10009
|
* 获取文件的下载地址
|
|
9930
10010
|
* @param fileType 文件类型
|
|
@@ -10541,6 +10621,7 @@ interface IErrorCodeKey {
|
|
|
10541
10621
|
profile: number;
|
|
10542
10622
|
userProfileVisibility: number;
|
|
10543
10623
|
uniqueId: number;
|
|
10624
|
+
extra: number;
|
|
10544
10625
|
}
|
|
10545
10626
|
|
|
10546
10627
|
declare const ErrorCodeMap: IErrorCodeKey;
|
|
@@ -10960,7 +11041,7 @@ declare const getMimeKey: (fileType: FileType) => string;
|
|
|
10960
11041
|
* @description
|
|
10961
11042
|
* 与 Server 约定一致, threadId、apnsCollapseId、channelIdMi、channelIdHW、channelIdOPPO、typeVivo 无值时可传空字符串
|
|
10962
11043
|
*/
|
|
10963
|
-
declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IAndroidPushConfig) => string;
|
|
11044
|
+
declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IAndroidPushConfig, harmonyOSConfig?: IHarmonyOSPushConfig) => string;
|
|
10964
11045
|
/**
|
|
10965
11046
|
* 将服务端返回的 push 信息格式化
|
|
10966
11047
|
* @param pushStr
|
|
@@ -10968,6 +11049,7 @@ declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IA
|
|
|
10968
11049
|
declare const pushJSONToConfigs: (logger: BasicLogger, pushStr: string, pushId: string) => {
|
|
10969
11050
|
iOSConfig: IiOSPushConfig;
|
|
10970
11051
|
androidConfig: IAndroidPushConfig;
|
|
11052
|
+
harmonyOSConfig: IHarmonyOSPushConfig;
|
|
10971
11053
|
};
|
|
10972
11054
|
declare const isValidChrmEntryKey: (key: string) => Boolean;
|
|
10973
11055
|
declare const isValidChrmEntryValue: (value: string) => Boolean;
|
|
@@ -11414,4 +11496,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
11414
11496
|
*/
|
|
11415
11497
|
declare const version: string;
|
|
11416
11498
|
|
|
11417
|
-
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, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, ErrorCodeMap, EventEmitter, FORMATED_VERSION, FileType, 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, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupReadReceiptData, 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, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, 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, IServerConversationStatus, 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, IUserProfileInfo, IUserProfileServerData, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, 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, 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, assert, clone, cloneByJSON, completeSubscriptionPlatformStatus, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, 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, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversation, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, transformUserProfiles, unInitStatisticDB, updateMentionedInfo, urlCenter, usingCppEngine, validate, validators, version };
|
|
11499
|
+
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, EConnectProtocol, EnableLogL, EnterpriseType, ErrorCode, ErrorCodeMap, EventEmitter, FORMATED_VERSION, FileType, 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, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupReadReceiptData, 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, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, 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, IServerConversationStatus, 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, IUserProfileInfo, IUserProfileServerData, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InterruptionLevel, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, 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, 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, assert, clone, cloneByJSON, completeSubscriptionPlatformStatus, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, 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, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversation, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, isValidTargetId, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, transformReceivedStatusFlag, transformReceivedStatusInfo, transformUserProfiles, unInitStatisticDB, updateMentionedInfo, urlCenter, usingCppEngine, validate, validators, version };
|