@rongcloud/engine 5.3.2 → 5.3.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 +20 -35
- package/index.esm.js +3 -3
- package/index.js +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1074,6 +1074,7 @@ interface IBlockedMessageInfo {
|
|
|
1074
1074
|
targetId: string;
|
|
1075
1075
|
channelId: string;
|
|
1076
1076
|
blockType: MessageBlockType;
|
|
1077
|
+
extra: any;
|
|
1077
1078
|
}
|
|
1078
1079
|
|
|
1079
1080
|
/**
|
|
@@ -2387,6 +2388,7 @@ interface IJoinRTCRoomData extends IRTCUsers {
|
|
|
2387
2388
|
value: string;
|
|
2388
2389
|
}[];
|
|
2389
2390
|
kvEntries: IServerRTCRoomEntry[];
|
|
2391
|
+
offlineKickTime: number;
|
|
2390
2392
|
}
|
|
2391
2393
|
interface KVString {
|
|
2392
2394
|
[key: string]: string;
|
|
@@ -3109,6 +3111,7 @@ interface IEngine {
|
|
|
3109
3111
|
* @param reconnectKickEnable
|
|
3110
3112
|
*/
|
|
3111
3113
|
connect(token: string, naviInfo: INaviInfo, reconnectKickEnable?: boolean): Promise<ErrorCode>;
|
|
3114
|
+
requestNaviInfo(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
3112
3115
|
/**
|
|
3113
3116
|
* 上报版本信息
|
|
3114
3117
|
* @param version
|
|
@@ -5284,34 +5287,6 @@ declare class RTCPluginContext extends PluginContext {
|
|
|
5284
5287
|
endRoomPK(options: IEndRoomPKOptions): Promise<ErrorCode>;
|
|
5285
5288
|
}
|
|
5286
5289
|
|
|
5287
|
-
declare abstract class ANavi {
|
|
5288
|
-
protected readonly _runtime: IRuntime;
|
|
5289
|
-
protected readonly _options: IAPIContextOption;
|
|
5290
|
-
protected readonly _apiVersion: string;
|
|
5291
|
-
protected readonly _appkey: string;
|
|
5292
|
-
protected _naviInfo: INaviInfo | null;
|
|
5293
|
-
constructor(_runtime: IRuntime, _options: IAPIContextOption);
|
|
5294
|
-
/**
|
|
5295
|
-
* @param uris
|
|
5296
|
-
* @param appkey
|
|
5297
|
-
* @param token
|
|
5298
|
-
*/
|
|
5299
|
-
protected abstract _reqNavi(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
5300
|
-
/**
|
|
5301
|
-
* 获取导航数据
|
|
5302
|
-
* @param token
|
|
5303
|
-
* @param dynamicUris token 携带的动态导航地址
|
|
5304
|
-
* @param force 是否强制重新获取并清空缓存数据
|
|
5305
|
-
*/
|
|
5306
|
-
getInfo(token: string, dynamicUris: string[], force: boolean, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
5307
|
-
protected setNaviInfo2Cache(token: string, naviInfo: INaviInfo): void;
|
|
5308
|
-
getInfoFromCache(token: string): INaviInfo | null;
|
|
5309
|
-
/**
|
|
5310
|
-
* 清空导航数据:内存数据、缓存数据
|
|
5311
|
-
*/
|
|
5312
|
-
private _clear;
|
|
5313
|
-
}
|
|
5314
|
-
|
|
5315
5290
|
interface IEngineWatcher {
|
|
5316
5291
|
/**
|
|
5317
5292
|
* @param message 消息
|
|
@@ -5343,23 +5318,33 @@ declare abstract class AEngine implements IEngine {
|
|
|
5343
5318
|
readonly runtime: IRuntime;
|
|
5344
5319
|
protected readonly _watcher: IEngineWatcher;
|
|
5345
5320
|
protected readonly _options: IAPIContextOption;
|
|
5346
|
-
/**
|
|
5347
|
-
* 当前用户 Id
|
|
5348
|
-
*/
|
|
5349
|
-
currentUserId: string;
|
|
5350
5321
|
/**
|
|
5351
5322
|
* 连接时间
|
|
5352
5323
|
*/
|
|
5353
5324
|
abstract getConnectedTime(): number;
|
|
5354
|
-
readonly navi: ANavi;
|
|
5355
5325
|
protected readonly _appkey: string;
|
|
5356
5326
|
protected readonly _apiVer: string;
|
|
5327
|
+
protected readonly _apiVersion: string;
|
|
5328
|
+
protected _naviInfo: INaviInfo | null;
|
|
5357
5329
|
/**
|
|
5358
5330
|
* 引擎初始化
|
|
5359
5331
|
* @param _appkey
|
|
5360
5332
|
*/
|
|
5361
5333
|
constructor(runtime: IRuntime, _watcher: IEngineWatcher, _options: IAPIContextOption);
|
|
5362
|
-
|
|
5334
|
+
abstract requestNaviInfo(uris: string[], appkey: string, token: string, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
5335
|
+
/**
|
|
5336
|
+
* 获取导航数据
|
|
5337
|
+
* @param token
|
|
5338
|
+
* @param dynamicUris token 携带的动态导航地址
|
|
5339
|
+
* @param force 是否强制重新获取并清空缓存数据
|
|
5340
|
+
*/
|
|
5341
|
+
getNaviInfo(token: string, dynamicUris: string[], force: boolean, checkCA?: boolean): Promise<INaviInfo | null>;
|
|
5342
|
+
protected setNaviInfo2Cache(token: string, naviInfo: INaviInfo): void;
|
|
5343
|
+
getInfoFromCache(token: string): INaviInfo | null;
|
|
5344
|
+
/**
|
|
5345
|
+
* 清空导航数据:内存数据、缓存数据
|
|
5346
|
+
*/
|
|
5347
|
+
private _clear;
|
|
5363
5348
|
/**
|
|
5364
5349
|
* 调用非标准方法。所谓非标准方法,是为某些特定需求或产品添加,暂未作为标准接口添加至 API 层。
|
|
5365
5350
|
* 对于未实现的方法,接口响应 Unsupport 错误码
|
|
@@ -6598,4 +6583,4 @@ declare enum CONNECTION_TYPE {
|
|
|
6598
6583
|
*/
|
|
6599
6584
|
declare const version: string;
|
|
6600
6585
|
|
|
6601
|
-
export { AEngine,
|
|
6586
|
+
export { AEngine, APIContext, AppStorage, AssertRules, CONNECTION_TYPE, CPP_PROTOCAL_MSGTYPE_OPTION, CallLibMsgType, ChatroomEntryType, ChatroomUserChangeType as ChatroomMemberChangeType, CometChannel, ConnectResultCode, ConnectionStatus, ConversationType, DelayTimer, ErrorCode, EventEmitter, FileType, HttpMethod, IAPIContextOption, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, ICancelRoomPKOptions, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomInfo, IChatroomListener, IChatroomListenerData, IChrmKVEntries, IChrmKVEntry, IConnectResult, IConnectionStatusListener, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IDataChannelWatcher, IDeletedExpansion, IEndRoomPKOptions, IEngine, IEngineWatcher, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraMethod, IGetMsgOption, IInsertMsgOptions, IIsValidExpansion, IJoinRTCRoomData, ILocalReadReceiptInfo, ILocalTagStatus, IM_CHATROOM_PULL_INTERVAL_TIME, IM_COMET_PULLMSG_TIMEOUT, IM_PING_INTERVAL_TIME, IM_PING_MIN_TIMEOUT, IM_PING_TIMEOUT, IM_SIGNAL_TIMEOUT, IMessageListnenr, IMessageReader, IMessageReaderResponse, IMetionedData, INaviInfo, IPluginGenerator, IPromiseResult, IPushConfig, IRTCInnerListener, IRTCJoinedInfo, 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, IStorage, ITagInfo, ITagListener, ITagParam, ITagStatus, ITypingInfo, ITypingMessage, ITypingUser, IUltraExMsgOptions, IUltraGroupOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserProfile, IWatcher, IWebSocket, ItypingStateListener, KVString, LiveRole, LiveType, LogLevel, LogType, Logger, MAX_MESSAGE_CONTENT_BYTES, MAX_MESSAGE_EXPANSION_KEY_LENGTH, MAX_MESSAGE_EXPANSION_VAL_LENGTH, MINI_COMET_CONNECT_URIS, MINI_SOCKET_CONNECT_URIS, MentionedType, MessageBlockType, MessageDirection, MessageType, NAVI_CACHE_DURATION, NAVI_REQ_TIMEOUT, NetworkType, NotificationLevel, NotificationStatus, OperateStatus, PING_REQ_TIMEOUT, PUBLIC_CLOUD_NAVI_URIS, PluginContext, RCAssertError, RTCApiType, RTCIdentityChangeType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, STATUS_MESSAGE, STORAGE_ROOT_KEY, TagChangeType, UploadMethod, VersionManage, WEB_SOCKET_TIMEOUT, WebSocketChannel, appendUrl, assert, clone, cloneByJSON, forEach, formatConnectResponseCode, getBrowser, getMimeKey, getUploadFileName, indexOf, isArray, isArrayBuffer, isBoolean, isFunction, isHttpUrl, isInObject, isInclude, isNull, isNumber, isObject, isString, isUndefined, isValidChrmEntryKey, isValidChrmEntryValue, isValidConversationType, isValidExpansion, isValidFileType, map, notEmptyArray, notEmptyObject, notEmptyString, pushConfigsToJSON, pushJSONToConfigs, todo, usingCppEngine, validate, version };
|