@rongcloud/engine 5.10.2 → 5.10.4
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 +136 -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
|
* 群组信息异常
|
|
@@ -2770,6 +2817,9 @@ declare enum LogTagId {
|
|
|
2770
2817
|
L_CONNECT_T = "L-connect-T",
|
|
2771
2818
|
L_CONNECT_R = "L-connect-R",
|
|
2772
2819
|
L_CONNECT_S = "L-connect-S",
|
|
2820
|
+
L_DB_UPGRATE_START_S = "L-db_upgrate_start-S",
|
|
2821
|
+
L_DB_UPGRATING_S = "L-db_upgrating-S",
|
|
2822
|
+
L_DB_UPGRATE_COMPLETE_S = "L-db_upgrate_complete-S",
|
|
2773
2823
|
L_NOTIFY_ULTRA_ONLINE_S = "L-notify-ultra-online-S",
|
|
2774
2824
|
L_ULTRA_SYNC_DONE_S = "L-ultra-sync-done-S",
|
|
2775
2825
|
L_BATCH_MESSAGE_O = "L-BATCH_MESSAGE-O",
|
|
@@ -2886,6 +2936,11 @@ declare enum LogTagId {
|
|
|
2886
2936
|
L_REALTIME_LOG_O = "L_REALTIME_LOG_O",
|
|
2887
2937
|
/** 实时日志上报结果 */
|
|
2888
2938
|
L_REALTIME_LOG_T = "L_REALTIME_LOG_T",
|
|
2939
|
+
/** 埋点日志上报 */
|
|
2940
|
+
L_STATISTIC_LOG_R = "L_STATISTIC_LOG_R",
|
|
2941
|
+
L_STATISTIC_LOG_O = "L_STATISTIC_LOG_O",
|
|
2942
|
+
/** 埋点日志上报结果 */
|
|
2943
|
+
L_STATISTIC_LOG_T = "L_STATISTIC_LOG_T",
|
|
2889
2944
|
L_UNKNOWN_TOPIC_E = "L_UNKNOWN_TOPIC_E",
|
|
2890
2945
|
L_RECV_RMTP_O = "L_RECV_RMTP_O",
|
|
2891
2946
|
L_RECV_RMTP_E = "L_RECV_RMTP_E",
|
|
@@ -3193,7 +3248,11 @@ declare enum PlatformInfo {
|
|
|
3193
3248
|
/**
|
|
3194
3249
|
* 小程序
|
|
3195
3250
|
*/
|
|
3196
|
-
Mini = 5
|
|
3251
|
+
Mini = 5,
|
|
3252
|
+
/**
|
|
3253
|
+
* 鸿蒙
|
|
3254
|
+
*/
|
|
3255
|
+
HarmonyOS = 6
|
|
3197
3256
|
}
|
|
3198
3257
|
/**
|
|
3199
3258
|
* 订阅类型
|
|
@@ -3449,6 +3508,25 @@ interface IAndroidPushConfig {
|
|
|
3449
3508
|
*/
|
|
3450
3509
|
imageUrlHonor?: string;
|
|
3451
3510
|
}
|
|
3511
|
+
/**
|
|
3512
|
+
* 鸿蒙推送配置
|
|
3513
|
+
* @category Interface
|
|
3514
|
+
* @since: 5.10.3
|
|
3515
|
+
*/
|
|
3516
|
+
interface IHarmonyOSPushConfig {
|
|
3517
|
+
/**
|
|
3518
|
+
* HarmonyOS通知栏消息右侧大图标 URL,必须 https 协议
|
|
3519
|
+
* 通知栏右侧图片,格式支持 png、jpg、jpeg、heif、gif、bmp,图片长*宽<25000像素
|
|
3520
|
+
* 图片不满足要求的情况下,终端不能显示通知消息。
|
|
3521
|
+
*/
|
|
3522
|
+
image?: string;
|
|
3523
|
+
/**
|
|
3524
|
+
* HarmonyOS推送消息分类:
|
|
3525
|
+
* 社交通讯:消息自分类标识,默认为空。category 取值必须为大写字母
|
|
3526
|
+
* 默认值为 null,如果为 null,则以服务配置为准
|
|
3527
|
+
*/
|
|
3528
|
+
category?: string;
|
|
3529
|
+
}
|
|
3452
3530
|
/**
|
|
3453
3531
|
* 推送配置
|
|
3454
3532
|
* @category Interface
|
|
@@ -3480,6 +3558,11 @@ interface IPushConfig {
|
|
|
3480
3558
|
* androidConfig
|
|
3481
3559
|
*/
|
|
3482
3560
|
androidConfig?: IAndroidPushConfig;
|
|
3561
|
+
/**
|
|
3562
|
+
* HarmonyOS
|
|
3563
|
+
* @since 5.10.3
|
|
3564
|
+
*/
|
|
3565
|
+
harmonyOSConfig?: IHarmonyOSPushConfig;
|
|
3483
3566
|
/**
|
|
3484
3567
|
* 是否显示推送标题. 仅针对 iOS 平台有效
|
|
3485
3568
|
*/
|
|
@@ -6220,6 +6303,18 @@ interface IConnectionListener {
|
|
|
6220
6303
|
* @param code 连接终止原因
|
|
6221
6304
|
*/
|
|
6222
6305
|
onDisconnected(code: ErrorCode): void;
|
|
6306
|
+
/**
|
|
6307
|
+
* 数据库升级开始
|
|
6308
|
+
*/
|
|
6309
|
+
onDBUpgrateStart?: () => void;
|
|
6310
|
+
/**
|
|
6311
|
+
* 数据库升级中
|
|
6312
|
+
*/
|
|
6313
|
+
onDBUpgrading?: (process: number) => void;
|
|
6314
|
+
/**
|
|
6315
|
+
* 数据库升级完成
|
|
6316
|
+
*/
|
|
6317
|
+
onDBUpgradeComplete?: (code: number) => void;
|
|
6223
6318
|
}
|
|
6224
6319
|
/**
|
|
6225
6320
|
* 抽象连接管理器类,负责 engine 层的连接状态维持,和对外的连接状态通知
|
|
@@ -6874,12 +6969,12 @@ interface IEngine {
|
|
|
6874
6969
|
* 加入聊天室
|
|
6875
6970
|
* @param count 拉取消息数量
|
|
6876
6971
|
*/
|
|
6877
|
-
joinChatroom(chatroomId: string, count: number): Promise<ErrorCode>;
|
|
6972
|
+
joinChatroom(chatroomId: string, count: number, extra?: string): Promise<ErrorCode>;
|
|
6878
6973
|
/**
|
|
6879
6974
|
* 加入已存在的聊天室
|
|
6880
6975
|
* @param count 拉取消息数量
|
|
6881
6976
|
*/
|
|
6882
|
-
joinExistChatroom(chatroomId: string, count: number): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
6977
|
+
joinExistChatroom(chatroomId: string, count: number, extra?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
6883
6978
|
/**
|
|
6884
6979
|
* 退出聊天室
|
|
6885
6980
|
*/
|
|
@@ -8069,6 +8164,9 @@ interface IWatcher {
|
|
|
8069
8164
|
subscribedRelationChange?: (data: ISubscribeRelationInfo[]) => void;
|
|
8070
8165
|
syncSubscribedUserStatusFinished?: (subscribeType: SubscribeType) => void;
|
|
8071
8166
|
ownUserProfileChanged?: (userProfile: IUserProfileInfo) => void;
|
|
8167
|
+
databaseUpgradeWillStart?: () => void;
|
|
8168
|
+
databaseUpgrading?: (progress: number) => void;
|
|
8169
|
+
databaseUpgradeDidComplete?: (code: ErrorCode) => void;
|
|
8072
8170
|
}
|
|
8073
8171
|
interface IAPIContextOption {
|
|
8074
8172
|
/**
|
|
@@ -8392,6 +8490,18 @@ declare class APIContext {
|
|
|
8392
8490
|
* 导航数据变更通知
|
|
8393
8491
|
*/
|
|
8394
8492
|
private _naviDataChange;
|
|
8493
|
+
/**
|
|
8494
|
+
* 数据库升级开始
|
|
8495
|
+
*/
|
|
8496
|
+
private _databaseUpgradeWillStart;
|
|
8497
|
+
/**
|
|
8498
|
+
* 数据库升级中
|
|
8499
|
+
*/
|
|
8500
|
+
private _databaseUpgrading;
|
|
8501
|
+
/**
|
|
8502
|
+
* 数据库升级完成
|
|
8503
|
+
*/
|
|
8504
|
+
private _databaseUpgradeDidComplete;
|
|
8395
8505
|
/**
|
|
8396
8506
|
* 业务层事件监听器挂载点
|
|
8397
8507
|
*/
|
|
@@ -8671,13 +8781,13 @@ declare class APIContext {
|
|
|
8671
8781
|
* @param roomId 聊天室房间 Id
|
|
8672
8782
|
* @param count 进入聊天室成功后,自动拉取的历史消息数量,默认值为 `10`,最大有效值为 `50`,`-1` 为不拉取
|
|
8673
8783
|
*/
|
|
8674
|
-
joinChatroom(roomId: string, count?: number, traceId?: string): Promise<ErrorCode>;
|
|
8784
|
+
joinChatroom(roomId: string, count?: number, traceId?: string, extra?: string): Promise<ErrorCode>;
|
|
8675
8785
|
/**
|
|
8676
8786
|
* 加入聊天室,若聊天室不存在则抛出异常
|
|
8677
8787
|
* @param roomId 聊天室房间 Id
|
|
8678
8788
|
* @param count 进入聊天室成功后,自动拉取的历史消息数量,默认值为 `10`,最大有效值为 `50`,`-1` 为不拉取
|
|
8679
8789
|
*/
|
|
8680
|
-
joinExistChatroom(roomId: string, count?: number, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
8790
|
+
joinExistChatroom(roomId: string, count?: number, traceId?: string, extra?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
8681
8791
|
/**
|
|
8682
8792
|
* 退出聊天室
|
|
8683
8793
|
* @param roomId
|
|
@@ -8780,7 +8890,7 @@ declare class APIContext {
|
|
|
8780
8890
|
* 3. 上传结束前调用,此时 `httpMethod` 值应为 `POST`,`queryString` 值为 `uploadId={uploadId}`
|
|
8781
8891
|
* @returns
|
|
8782
8892
|
*/
|
|
8783
|
-
getFileToken(fileType: FileType, fileName?: string, httpMethod?: 'POST' | 'PUT', queryString?: string, url?: string): Promise<IUploadAuth & {
|
|
8893
|
+
getFileToken(fileType: FileType, fileName?: string, httpMethod?: 'POST' | 'PUT', queryString?: string, url?: string, size?: number): Promise<IUploadAuth & {
|
|
8784
8894
|
bos: string;
|
|
8785
8895
|
qiniu: string;
|
|
8786
8896
|
ossConfig: string;
|
|
@@ -9523,6 +9633,9 @@ interface IEngineWatcher extends IConnectionListener {
|
|
|
9523
9633
|
subscribedRelationChange?: (data: ISubscribeRelationInfo[]) => void;
|
|
9524
9634
|
syncSubscribedUserStatusFinished?: (subscribeType: SubscribeType) => void;
|
|
9525
9635
|
ownUserProfileChanged?: (data: IUserProfileInfo) => void;
|
|
9636
|
+
databaseUpgradeWillStart: () => void;
|
|
9637
|
+
databaseUpgrading: (progress: number) => void;
|
|
9638
|
+
databaseUpgradeDidComplete: (code: ErrorCode) => void;
|
|
9526
9639
|
}
|
|
9527
9640
|
/**
|
|
9528
9641
|
* 引擎定义
|
|
@@ -9848,12 +9961,12 @@ declare abstract class AEngine {
|
|
|
9848
9961
|
* 加入聊天室
|
|
9849
9962
|
* @param count 拉取消息数量
|
|
9850
9963
|
*/
|
|
9851
|
-
abstract joinChatroom(chatroomId: string, count: number, traceId?: string): Promise<ErrorCode>;
|
|
9964
|
+
abstract joinChatroom(chatroomId: string, count: number, extra?: string, traceId?: string): Promise<ErrorCode>;
|
|
9852
9965
|
/**
|
|
9853
9966
|
* 加入已存在的聊天室
|
|
9854
9967
|
* @param count 拉取消息数量
|
|
9855
9968
|
*/
|
|
9856
|
-
abstract joinExistChatroom(chatroomId: string, count: number, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
9969
|
+
abstract joinExistChatroom(chatroomId: string, count: number, extra?: string, traceId?: string): Promise<IAsyncRes<IChatroomJoinResponse>>;
|
|
9857
9970
|
/**
|
|
9858
9971
|
* 退出聊天室
|
|
9859
9972
|
*/
|
|
@@ -9924,7 +10037,7 @@ declare abstract class AEngine {
|
|
|
9924
10037
|
* 3. 上传结束前调用,此时 `httpMethod` 值应为 `POST`,`queryString` 值为 `uploadId={uploadId}`
|
|
9925
10038
|
* @returns
|
|
9926
10039
|
*/
|
|
9927
|
-
abstract getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryString?: string, url?: string): Promise<IAsyncRes<IUploadAuth>>;
|
|
10040
|
+
abstract getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryString?: string, url?: string, size?: number): Promise<IAsyncRes<IUploadAuth>>;
|
|
9928
10041
|
/**
|
|
9929
10042
|
* 获取文件的下载地址
|
|
9930
10043
|
* @param fileType 文件类型
|
|
@@ -10541,6 +10654,7 @@ interface IErrorCodeKey {
|
|
|
10541
10654
|
profile: number;
|
|
10542
10655
|
userProfileVisibility: number;
|
|
10543
10656
|
uniqueId: number;
|
|
10657
|
+
extra: number;
|
|
10544
10658
|
}
|
|
10545
10659
|
|
|
10546
10660
|
declare const ErrorCodeMap: IErrorCodeKey;
|
|
@@ -10960,7 +11074,7 @@ declare const getMimeKey: (fileType: FileType) => string;
|
|
|
10960
11074
|
* @description
|
|
10961
11075
|
* 与 Server 约定一致, threadId、apnsCollapseId、channelIdMi、channelIdHW、channelIdOPPO、typeVivo 无值时可传空字符串
|
|
10962
11076
|
*/
|
|
10963
|
-
declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IAndroidPushConfig) => string;
|
|
11077
|
+
declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IAndroidPushConfig, harmonyOSConfig?: IHarmonyOSPushConfig) => string;
|
|
10964
11078
|
/**
|
|
10965
11079
|
* 将服务端返回的 push 信息格式化
|
|
10966
11080
|
* @param pushStr
|
|
@@ -10968,6 +11082,7 @@ declare const pushConfigsToJSON: (iOSConfig?: IiOSPushConfig, androidConfig?: IA
|
|
|
10968
11082
|
declare const pushJSONToConfigs: (logger: BasicLogger, pushStr: string, pushId: string) => {
|
|
10969
11083
|
iOSConfig: IiOSPushConfig;
|
|
10970
11084
|
androidConfig: IAndroidPushConfig;
|
|
11085
|
+
harmonyOSConfig: IHarmonyOSPushConfig;
|
|
10971
11086
|
};
|
|
10972
11087
|
declare const isValidChrmEntryKey: (key: string) => Boolean;
|
|
10973
11088
|
declare const isValidChrmEntryValue: (value: string) => Boolean;
|
|
@@ -11059,6 +11174,16 @@ declare const completeSubscriptionPlatformStatus: (status: ISubscribeStatusDetai
|
|
|
11059
11174
|
* 将收到的用户信息转换为本地数据结构
|
|
11060
11175
|
*/
|
|
11061
11176
|
declare const transformUserProfiles: (userId: string, userProfiles: IServerProfileInfo[], userExtProfiles: IServerProfileInfo[]) => IUserProfileInfo;
|
|
11177
|
+
/**
|
|
11178
|
+
* 是否支持 IndexDB
|
|
11179
|
+
* @param runtime
|
|
11180
|
+
* @returns
|
|
11181
|
+
*/
|
|
11182
|
+
declare const isSupportIndexDB: (runtime: IRuntime) => boolean;
|
|
11183
|
+
/**
|
|
11184
|
+
* 清理废弃的数据库
|
|
11185
|
+
*/
|
|
11186
|
+
declare const clearOldIndexDB: () => void;
|
|
11062
11187
|
|
|
11063
11188
|
/**
|
|
11064
11189
|
* Navi 缓存数据有效时长,单位毫秒
|
|
@@ -11414,4 +11539,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
11414
11539
|
*/
|
|
11415
11540
|
declare const version: string;
|
|
11416
11541
|
|
|
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 };
|
|
11542
|
+
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, clearOldIndexDB, 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, isSupportIndexDB, 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 };
|