@rongcloud/engine 5.8.4-alpha.9 → 5.8.5-beeto.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/index.d.ts +212 -85
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1468,6 +1468,10 @@ declare enum ErrorCode {
|
|
|
1468
1468
|
* 搜索字段对应消息错误
|
|
1469
1469
|
*/
|
|
1470
1470
|
SEARCH_PROPS_LIMIT_ERROR = 35022,
|
|
1471
|
+
/**
|
|
1472
|
+
* 无效的数据中心请求, appkey 不是该数据中心的,需要重定向到正确的数据中心
|
|
1473
|
+
*/
|
|
1474
|
+
CLOUD_DATA_CENTER_INVALID = 20512,
|
|
1471
1475
|
/** ============================= 错误码 -- 废弃部分 ============================= */
|
|
1472
1476
|
/**
|
|
1473
1477
|
* 未知原因失败。
|
|
@@ -1890,10 +1894,6 @@ declare enum MessageType {
|
|
|
1890
1894
|
* 合并转发消息
|
|
1891
1895
|
*/
|
|
1892
1896
|
COMBINE = "RC:CombineMsg",
|
|
1893
|
-
/**
|
|
1894
|
-
* 合并转发消息 v2 版本
|
|
1895
|
-
*/
|
|
1896
|
-
COMBINE_V2 = "RC:CombineV2Msg",
|
|
1897
1897
|
/**
|
|
1898
1898
|
* 聊天室 KV 通知消息
|
|
1899
1899
|
*/
|
|
@@ -1981,7 +1981,11 @@ declare enum MessageType {
|
|
|
1981
1981
|
/**
|
|
1982
1982
|
* 拦截消息,(当发送的消息的敏感词时,服务会下发一个拦截消息,内容包含被拦截消息信息)
|
|
1983
1983
|
*/
|
|
1984
|
-
INTERCEPT = "RC:InterceptMsg"
|
|
1984
|
+
INTERCEPT = "RC:InterceptMsg",
|
|
1985
|
+
/**
|
|
1986
|
+
* 云控消息
|
|
1987
|
+
*/
|
|
1988
|
+
CLOUD_CONTROL = "RC:CCConfigChangeRequestMsg"
|
|
1985
1989
|
}
|
|
1986
1990
|
|
|
1987
1991
|
/**
|
|
@@ -2251,7 +2255,18 @@ declare enum LogTagId {
|
|
|
2251
2255
|
/** 获取静态配置 */
|
|
2252
2256
|
L_GET_STATIC_CONF_T = "L-get_static_conf-T",
|
|
2253
2257
|
L_GET_STATIC_CONF_R = "L-get_static_conf-R",
|
|
2254
|
-
L_GET_STATIC_CONF_E = "L-get_static_conf-E"
|
|
2258
|
+
L_GET_STATIC_CONF_E = "L-get_static_conf-E",
|
|
2259
|
+
/** 云控日志 */
|
|
2260
|
+
L_CLOUD_DISABLED = "L-cloud_disabled",
|
|
2261
|
+
L_CLOUD_EXPIRE = "L-cloud_expire",
|
|
2262
|
+
L_CLOUD_OVERCLOCK = "L-cloud_overclock",
|
|
2263
|
+
L_CLOUD_APPKEY_REGION_E = "L-cloud_appkey_region_error",
|
|
2264
|
+
L_CLOUD_CONFIG_DATA_E = "L-cloud_config_data_error",
|
|
2265
|
+
L_CLOUD_SET_CACHE_O = "L-cloud_set_cache-O",
|
|
2266
|
+
L_CLOUD_GET_CACHE_O = "L-cloud_get_cache-O",
|
|
2267
|
+
L_CLOUD_MSG_NTF_O = "L-cloud_msg_ntf-O",
|
|
2268
|
+
L_PARSE_JSON_MSGS_E = "L-parse_json_messsages-E",
|
|
2269
|
+
L_PARSE_JSON_E = "L-parse_json-E"
|
|
2255
2270
|
}
|
|
2256
2271
|
|
|
2257
2272
|
/** 统计数据标签 */
|
|
@@ -2262,7 +2277,10 @@ declare enum StatisticsTag {
|
|
|
2262
2277
|
IM_CMP = "IM-stats_cmp-S",
|
|
2263
2278
|
IM_CMP_RMTP = "IM-stats_cmp_rmtp-S",
|
|
2264
2279
|
IM_STATS_CS = "IM-stats_cs-S",
|
|
2265
|
-
IM_NETWORK_CHANGE = "IM-stats_network_change-S"
|
|
2280
|
+
IM_NETWORK_CHANGE = "IM-stats_network_change-S",
|
|
2281
|
+
/** 云控配置埋点 */
|
|
2282
|
+
L_CLOUD_INFO_FETCH_T = "L-cloud_info_fetch-T",
|
|
2283
|
+
L_CLOUD_INFO_FETCH_R = "L-cloud_info_fetch-R"
|
|
2266
2284
|
}
|
|
2267
2285
|
|
|
2268
2286
|
/**
|
|
@@ -3241,64 +3259,6 @@ interface MentionedInfoBody {
|
|
|
3241
3259
|
userIdList?: string[];
|
|
3242
3260
|
mentionedContent?: string;
|
|
3243
3261
|
}
|
|
3244
|
-
/**
|
|
3245
|
-
* 被合并的消息数据结构
|
|
3246
|
-
*/
|
|
3247
|
-
interface ICombinedMessage {
|
|
3248
|
-
/**
|
|
3249
|
-
* 消息发送者的用户 Id
|
|
3250
|
-
*/
|
|
3251
|
-
fromUserId: string;
|
|
3252
|
-
/**
|
|
3253
|
-
* 消息所属会话 Id
|
|
3254
|
-
*/
|
|
3255
|
-
targetId: string;
|
|
3256
|
-
/**
|
|
3257
|
-
* 消息发送时间
|
|
3258
|
-
*/
|
|
3259
|
-
timestamp: number;
|
|
3260
|
-
/**
|
|
3261
|
-
* 消息类型
|
|
3262
|
-
*/
|
|
3263
|
-
objectName: string;
|
|
3264
|
-
/**
|
|
3265
|
-
* 消息内容
|
|
3266
|
-
*/
|
|
3267
|
-
content: any;
|
|
3268
|
-
}
|
|
3269
|
-
/**
|
|
3270
|
-
* v2 版本合并转发消息 content 结构
|
|
3271
|
-
*/
|
|
3272
|
-
interface ICombineV2MessageContent {
|
|
3273
|
-
/**
|
|
3274
|
-
* 被合并消息的来源会话类型
|
|
3275
|
-
*/
|
|
3276
|
-
conversationType: ConversationType;
|
|
3277
|
-
/**
|
|
3278
|
-
* 合并信息摘要,建议取被合并消息中的前三条消息的内容
|
|
3279
|
-
*/
|
|
3280
|
-
summaryList: string[];
|
|
3281
|
-
/**
|
|
3282
|
-
* 名称列表,单聊时为双方的名称,群聊时为群组名称
|
|
3283
|
-
*/
|
|
3284
|
-
nameList: string[];
|
|
3285
|
-
/**
|
|
3286
|
-
* 被合并消息的条目数量
|
|
3287
|
-
*/
|
|
3288
|
-
msgNum: number;
|
|
3289
|
-
/**
|
|
3290
|
-
* 被合并消息的消息内容,仅当内容 JSON 序列化后长度小于 120K 时有值;当长度大于 120K 时,内容将被以文件的形式远端存储。
|
|
3291
|
-
*/
|
|
3292
|
-
msgList?: Array<ICombinedMessage>;
|
|
3293
|
-
/**
|
|
3294
|
-
* 被合并消息的内容 JSON 序列化后长度大于 120K 时的文件名,暂时无作用,移动端依据此字段判断是否有文件需要下载,而非 remoteUrl 字段
|
|
3295
|
-
*/
|
|
3296
|
-
jsonMsgKey?: string;
|
|
3297
|
-
/**
|
|
3298
|
-
* 远端存储文件的 URL,仅 jsonMsgKey 有值时存在
|
|
3299
|
-
*/
|
|
3300
|
-
remoteUrl?: string;
|
|
3301
|
-
}
|
|
3302
3262
|
|
|
3303
3263
|
interface IUpdateItem {
|
|
3304
3264
|
isTop?: {
|
|
@@ -3404,10 +3364,6 @@ interface IReceivedConversation {
|
|
|
3404
3364
|
* 会话操作时间,暂仅 Electron 平台支持
|
|
3405
3365
|
*/
|
|
3406
3366
|
operationTime?: number;
|
|
3407
|
-
/**
|
|
3408
|
-
* 会话草稿
|
|
3409
|
-
*/
|
|
3410
|
-
draft?: string;
|
|
3411
3367
|
}
|
|
3412
3368
|
/**
|
|
3413
3369
|
* @category Interface
|
|
@@ -4495,9 +4451,26 @@ declare class IndexDBStatisticReporter extends BasicStatisticReporter {
|
|
|
4495
4451
|
}
|
|
4496
4452
|
|
|
4497
4453
|
declare enum AreaCode {
|
|
4454
|
+
/**
|
|
4455
|
+
* 默认值,北京数据中心
|
|
4456
|
+
*/
|
|
4498
4457
|
BJ = 1,
|
|
4458
|
+
/**
|
|
4459
|
+
* 新加坡数据中心
|
|
4460
|
+
*/
|
|
4499
4461
|
SG = 2,
|
|
4500
|
-
|
|
4462
|
+
/**
|
|
4463
|
+
* 北美数据中心
|
|
4464
|
+
*/
|
|
4465
|
+
NA = 3,
|
|
4466
|
+
/**
|
|
4467
|
+
* 新增新加坡数据中心
|
|
4468
|
+
*/
|
|
4469
|
+
SG_A = 4,
|
|
4470
|
+
/**
|
|
4471
|
+
* 沙特数据中心
|
|
4472
|
+
*/
|
|
4473
|
+
SA = 5
|
|
4501
4474
|
}
|
|
4502
4475
|
|
|
4503
4476
|
interface IStaticConfigData {
|
|
@@ -4648,7 +4621,8 @@ declare class WebsocketStaticConfigManager extends BasicStaticConfigManager {
|
|
|
4648
4621
|
*/
|
|
4649
4622
|
declare class WebSocketNavi extends BasicNavi {
|
|
4650
4623
|
private runtime;
|
|
4651
|
-
|
|
4624
|
+
private environment;
|
|
4625
|
+
constructor(appkey: string, logger: BasicLogger, statisticLog: BasicStatistic, runtime: IRuntime, staticConfigManager: WebsocketStaticConfigManager, environment?: string);
|
|
4652
4626
|
protected httpRequest(uri: string, appkey: string, token: string, traceId: string, finished: boolean): IPromiseResult<INaviInfo>;
|
|
4653
4627
|
protected httpRequestV2(uri: string, appkey: string, token: string, traceId: string): IPromiseResult<INaviInfo>;
|
|
4654
4628
|
protected getNaviCache(formatedToken: string): INaviCache | null;
|
|
@@ -5997,7 +5971,7 @@ declare abstract class BasicReporter {
|
|
|
5997
5971
|
* @param logId 拉取事务 Id,用于上传日志时的 Http 请求
|
|
5998
5972
|
* @param messageUId 消息 messageUId
|
|
5999
5973
|
*/
|
|
6000
|
-
report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string): Promise<void>;
|
|
5974
|
+
report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string, isCloudControl?: boolean): Promise<void>;
|
|
6001
5975
|
/**
|
|
6002
5976
|
* 以 `POST` 方法向服务发送日志数据
|
|
6003
5977
|
* @param url
|
|
@@ -6044,7 +6018,7 @@ declare class IndexDBReporter extends BasicReporter {
|
|
|
6044
6018
|
* @param logId
|
|
6045
6019
|
* @param messageUId
|
|
6046
6020
|
*/
|
|
6047
|
-
report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string): Promise<void>;
|
|
6021
|
+
report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string, isCloudControl?: boolean): Promise<void>;
|
|
6048
6022
|
protected realtimeReport(url: string, level: LogL, itv: number): Promise<void>;
|
|
6049
6023
|
}
|
|
6050
6024
|
|
|
@@ -6295,6 +6269,10 @@ interface IAPIContextOption {
|
|
|
6295
6269
|
* 日志服务地址
|
|
6296
6270
|
*/
|
|
6297
6271
|
logServerUrl?: string;
|
|
6272
|
+
/**
|
|
6273
|
+
* 私有云环境配置
|
|
6274
|
+
*/
|
|
6275
|
+
environment?: string;
|
|
6298
6276
|
}
|
|
6299
6277
|
|
|
6300
6278
|
interface IPluginGenerator<API, InitOption> {
|
|
@@ -8385,6 +8363,10 @@ declare class UrlCenter {
|
|
|
8385
8363
|
* 获取静态配置地址
|
|
8386
8364
|
*/
|
|
8387
8365
|
getStaticConfigUrl(): string[];
|
|
8366
|
+
/**
|
|
8367
|
+
* @returns 获取云控地址
|
|
8368
|
+
*/
|
|
8369
|
+
getCloudControllerUrl(areaCode?: number): string[];
|
|
8388
8370
|
}
|
|
8389
8371
|
declare const urlCenter: UrlCenter;
|
|
8390
8372
|
|
|
@@ -8460,6 +8442,10 @@ declare class VersionManage {
|
|
|
8460
8442
|
};
|
|
8461
8443
|
}
|
|
8462
8444
|
|
|
8445
|
+
declare function isStartCloudController(): boolean;
|
|
8446
|
+
|
|
8447
|
+
declare const getDeviceId: (runtime: IRuntime) => string;
|
|
8448
|
+
|
|
8463
8449
|
/**
|
|
8464
8450
|
* 检查参数是否为字符串
|
|
8465
8451
|
* 只做类型检查,不做长度检查,故当字符串长度为 0,结果依然为 true
|
|
@@ -8595,16 +8581,6 @@ declare namespace base {
|
|
|
8595
8581
|
declare const getUUID: () => string;
|
|
8596
8582
|
declare const getUUID22: () => string;
|
|
8597
8583
|
|
|
8598
|
-
declare class SuspendablePromise<T> {
|
|
8599
|
-
private readonly _promise;
|
|
8600
|
-
private _resolve;
|
|
8601
|
-
private _onCancel;
|
|
8602
|
-
constructor(handle: (resolve: (val: T) => void) => void, onCancel: (resolve: (val: T) => void) => void);
|
|
8603
|
-
private _onResolve;
|
|
8604
|
-
result(): Promise<T>;
|
|
8605
|
-
abort(): void;
|
|
8606
|
-
}
|
|
8607
|
-
|
|
8608
8584
|
/**
|
|
8609
8585
|
* 预定义的验证规则,只包含`值类型`数据验证
|
|
8610
8586
|
* 引用类型数据需使用自定义 validator 校验函数进行校验
|
|
@@ -8721,8 +8697,9 @@ declare const getbundleId: () => string;
|
|
|
8721
8697
|
*/
|
|
8722
8698
|
declare const decryptCBC: (data: string, key: string, iv: string) => Promise<string>;
|
|
8723
8699
|
declare function fixUrlProtocol(url: string, protocol?: EConnectProtocol): string;
|
|
8700
|
+
declare const getMinionURL: (naviInfo: INaviInfo, logger: BasicLogger) => string;
|
|
8724
8701
|
|
|
8725
|
-
declare function httpRequest(options: IRequest):
|
|
8702
|
+
declare function httpRequest(options: IRequest): Promise<IResponse>;
|
|
8726
8703
|
|
|
8727
8704
|
/**
|
|
8728
8705
|
* @todo 后期禁用此方法,容易滥用,且会丢失上下文的数据类型跟踪
|
|
@@ -8842,6 +8819,7 @@ declare const FORMATED_VERSION: string;
|
|
|
8842
8819
|
declare const MAX_UPLOAD_FILE_SIZE: number;
|
|
8843
8820
|
declare const UPLOAD_FILE_CHUNK_SIZE: number;
|
|
8844
8821
|
declare const STATIC_CONFIG_CACHE_TIME: number;
|
|
8822
|
+
declare const RC_DEFAULT_USER = "rongcloudsystem";
|
|
8845
8823
|
/**
|
|
8846
8824
|
* localStorage 中的 key 值
|
|
8847
8825
|
*/
|
|
@@ -8894,8 +8872,157 @@ declare const LOCAL_STORAGE_KEYS: {
|
|
|
8894
8872
|
* staticConfig 静态配置
|
|
8895
8873
|
*/
|
|
8896
8874
|
STATIC_CONFIG_KEY: (appKey: string) => string;
|
|
8875
|
+
/**
|
|
8876
|
+
* 云控配置存储
|
|
8877
|
+
*/
|
|
8878
|
+
CLOUD_CONTROL_KEY: (appKey: string) => string;
|
|
8897
8879
|
};
|
|
8898
8880
|
|
|
8881
|
+
interface ICloudConfig {
|
|
8882
|
+
temporary: boolean;
|
|
8883
|
+
enable: boolean;
|
|
8884
|
+
expire: number;
|
|
8885
|
+
interval: number;
|
|
8886
|
+
}
|
|
8887
|
+
interface IUploadLogConfig {
|
|
8888
|
+
temporary: boolean;
|
|
8889
|
+
tasks: IUploadTask[];
|
|
8890
|
+
}
|
|
8891
|
+
interface IUploadTask {
|
|
8892
|
+
/**
|
|
8893
|
+
* 消息类型
|
|
8894
|
+
*/
|
|
8895
|
+
objectName: string;
|
|
8896
|
+
/**
|
|
8897
|
+
* 上报地址
|
|
8898
|
+
*/
|
|
8899
|
+
uri: string;
|
|
8900
|
+
/**
|
|
8901
|
+
* 日志 id
|
|
8902
|
+
*/
|
|
8903
|
+
logId: string;
|
|
8904
|
+
/**
|
|
8905
|
+
* 开始时间
|
|
8906
|
+
*/
|
|
8907
|
+
startTime?: number;
|
|
8908
|
+
/**
|
|
8909
|
+
* 结束时间
|
|
8910
|
+
*/
|
|
8911
|
+
endTime?: number;
|
|
8912
|
+
/**
|
|
8913
|
+
* 平台标识
|
|
8914
|
+
*/
|
|
8915
|
+
platform?: string;
|
|
8916
|
+
/**
|
|
8917
|
+
* 移动端包名,web 暂未使用
|
|
8918
|
+
*/
|
|
8919
|
+
packageName?: string;
|
|
8920
|
+
/**
|
|
8921
|
+
* 会话类型
|
|
8922
|
+
*/
|
|
8923
|
+
conversationType?: number;
|
|
8924
|
+
/**
|
|
8925
|
+
* 目标 id
|
|
8926
|
+
*/
|
|
8927
|
+
targetId?: string;
|
|
8928
|
+
/**
|
|
8929
|
+
* 频道 id
|
|
8930
|
+
*/
|
|
8931
|
+
channelId?: string;
|
|
8932
|
+
/**
|
|
8933
|
+
* 消息 id list
|
|
8934
|
+
* 移动端拉取消息列表使用,web 暂未使用
|
|
8935
|
+
*/
|
|
8936
|
+
msgUids?: string;
|
|
8937
|
+
/**
|
|
8938
|
+
* 用户 id
|
|
8939
|
+
*/
|
|
8940
|
+
userId?: string;
|
|
8941
|
+
}
|
|
8942
|
+
interface ICloudController {
|
|
8943
|
+
/**
|
|
8944
|
+
* 云控配置
|
|
8945
|
+
*/
|
|
8946
|
+
cc: ICloudConfig;
|
|
8947
|
+
/**
|
|
8948
|
+
* 云控配置版本
|
|
8949
|
+
*/
|
|
8950
|
+
uploadLog: IUploadLogConfig;
|
|
8951
|
+
/**
|
|
8952
|
+
* 时间戳
|
|
8953
|
+
*/
|
|
8954
|
+
timestamp: number;
|
|
8955
|
+
/**
|
|
8956
|
+
* 最后一次请求时间
|
|
8957
|
+
*/
|
|
8958
|
+
lastRequestTime: number;
|
|
8959
|
+
/**
|
|
8960
|
+
* 区域码
|
|
8961
|
+
*/
|
|
8962
|
+
targetRegion?: number;
|
|
8963
|
+
}
|
|
8964
|
+
declare enum InvokerType {
|
|
8965
|
+
init = 1,
|
|
8966
|
+
newWorkChange = 2,
|
|
8967
|
+
other = 3
|
|
8968
|
+
}
|
|
8969
|
+
|
|
8970
|
+
declare class UploadTaskManage {
|
|
8971
|
+
private readonly reporter;
|
|
8972
|
+
private logId;
|
|
8973
|
+
private uploadTask;
|
|
8974
|
+
private taskLock;
|
|
8975
|
+
constructor(reporter: BasicReporter);
|
|
8976
|
+
uploadLogCmdTask(data: IUploadTask): void;
|
|
8977
|
+
private reportLogCmdTask;
|
|
8978
|
+
private enqueueTask;
|
|
8979
|
+
}
|
|
8980
|
+
|
|
8981
|
+
declare abstract class BaseCloudController {
|
|
8982
|
+
protected logger: BasicLogger;
|
|
8983
|
+
protected appkey: string;
|
|
8984
|
+
protected reporter: BasicReporter;
|
|
8985
|
+
protected statisticLog: BasicStatistic;
|
|
8986
|
+
/**
|
|
8987
|
+
* 是否启用云控
|
|
8988
|
+
*/
|
|
8989
|
+
private isEable;
|
|
8990
|
+
/**
|
|
8991
|
+
* 配置有效期, 单位为毫秒
|
|
8992
|
+
*/
|
|
8993
|
+
protected expire: number;
|
|
8994
|
+
/**
|
|
8995
|
+
* 配置刷新间隔, 单位为毫秒
|
|
8996
|
+
*/
|
|
8997
|
+
protected interval: number;
|
|
8998
|
+
/**
|
|
8999
|
+
* 配置更新时间
|
|
9000
|
+
*/
|
|
9001
|
+
protected timestamp: number;
|
|
9002
|
+
/**
|
|
9003
|
+
* 最近一次发起请求时间
|
|
9004
|
+
*/
|
|
9005
|
+
protected lastRequestTime: number;
|
|
9006
|
+
protected uploadTaskManage: UploadTaskManage;
|
|
9007
|
+
/**
|
|
9008
|
+
* 缓存矫正 areacode
|
|
9009
|
+
*/
|
|
9010
|
+
protected changeAreaCode: number | undefined;
|
|
9011
|
+
protected _cache: ICloudController | null;
|
|
9012
|
+
constructor(logger: BasicLogger, appkey: string, reporter: BasicReporter, statisticLog: BasicStatistic);
|
|
9013
|
+
protected init(): void;
|
|
9014
|
+
protected abstract httpRequest(url: string, method: HttpMethod, headers: {
|
|
9015
|
+
[key: string]: string;
|
|
9016
|
+
}, body: any): IPromiseResult<ICloudController>;
|
|
9017
|
+
protected abstract setCloudControllerCache(data: ICloudController): void;
|
|
9018
|
+
protected abstract getLocalCloudControllerCache(): string | null;
|
|
9019
|
+
private isExire;
|
|
9020
|
+
private isOverclock;
|
|
9021
|
+
private logCmdMsgTasks;
|
|
9022
|
+
protected dataHandle(data: ICloudController): void;
|
|
9023
|
+
request(uri: string, invoker: InvokerType, token?: string): Promise<number>;
|
|
9024
|
+
}
|
|
9025
|
+
|
|
8899
9026
|
/**
|
|
8900
9027
|
* 请使用 `Codec` 替代 `AbsCodec`
|
|
8901
9028
|
* @deprecated
|
|
@@ -8908,4 +9035,4 @@ declare type AbsCodec<T> = Codec<T>;
|
|
|
8908
9035
|
*/
|
|
8909
9036
|
declare const version: string;
|
|
8910
9037
|
|
|
8911
|
-
export { AConnectionMgr, AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, 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, 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,
|
|
9038
|
+
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, 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, ICloudController, IConnectResult, IConnectionListener, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IInsertMessage, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, ILogDB, ILogData, ILogger, IM_CHATROOM_PULL_INTERVAL_TIME, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReader, IMessageReaderResponse, IMetionedData, INaviCache, INaviContextInfo, INaviInfo, INetwork, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPluginGenerator, IProcessCache, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCRoomInfo, IRTCUserData, IRTCUsers, IReadReceiptInfo, IRecallMsgContent, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IReqRoomPKOptions, IRequest, IResRoomPKOptions, IResponse, IRtcTokenData, IRuntime, ISendExMsgOptions, ISendMsgOptions, IServerConversationStatus, IServerRTCRoomEntry, IServerUserSetting, ISetConversationStatusOptions, IStaticConfig, IStatistic, IStatisticDB, IStatisticData, IStatisticsCMPData, IStatisticsCSData, IStatisticsDurData, IStatisticsNaviData, IStatisticsNetworkData, IStatisticsRMTPData, IStatisticsWebsocketData, IStorage, 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, IWatcher, IWebSocket, IiOSPushConfig, IndexDBLogger, IndexDBReporter, IndexDBStatistic, IndexDBStatisticReporter, RTCKeyMaps as InnerRTCKeyMaps, InvokerType, ItypingStateListener, KVString, LOCAL_STORAGE_KEYS, LiveRole, LiveType, LogContent, LogL, LogLevel, LogSource, LogTagId, LogType, 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, NaviCacheType, NetworkType, NotificationLevel, NotificationStatus, ONE_LOG_SIZE_MAX, OperateStatus, PluginContext, ProtocalType, RCAssertError, RCConnectionStatus, RC_DEFAULT_USER, 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, SentStatus, StatisticL, StatisticsTag, StatisticsVersion, StoreKeys, TagChangeType, Type, UPLOAD_FILE_CHUNK_SIZE, UltraGroupChannelChangeType, UltraGroupChannelType, UltraMentionedType, UltraMsgChangeType, UltraMsgSubChangeType, UploadMethod, UserGroupChangeType, VERSION, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketNavi, appendUrl, assert, clone, cloneByJSON, deInitLogDB, decryptCBC, fixUrlProtocol, forEach, getBrowser, getClientMessageId, getDeviceId, getMimeKey, getMinionURL, getUUID, getUUID22, getUploadFileName, getbundleId, httpRequest, indexOf, initLogDB, initStatisticDB, isArray, isArrayBuffer, isBoolean, isConnnectAckCode as isConnnectAck, isDisconnectCode as isDisconnectedByServer, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isStartCloudController, isString, isTypeInConversationList, isUndefined, isValidChannelId, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, isValidNotificationLevel, base as logger, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, statisticTranscsv, todo, transcsv, unInitStatisticDB, urlCenter, usingCppEngine, validate, version };
|