@rongcloud/engine 5.16.1 → 5.18.0-alpha.2

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 CHANGED
@@ -3034,8 +3034,11 @@ declare enum SubscribeOperationType {
3034
3034
  * @since 5.10.1
3035
3035
  * */
3036
3036
  declare enum UserProfileVisibility {
3037
+ /** 未设置: 以 AppKey 权限设置为准,默认是此状态 */
3037
3038
  NOT_SET = 0,
3039
+ /** 都不可见:任何人都不能搜索到我的用户信息,名称、头像除外。 */
3038
3040
  INVISIBLE = 1,
3041
+ /** 所有人:应用中任何用户都可以查看到我的用户信息 */
3039
3042
  EVERYONE = 2,
3040
3043
  /** 仅好友可见:仅我的好友列表中用户可以查看到我的用户信息 */
3041
3044
  FriendVisible = 3
@@ -3294,7 +3297,7 @@ declare type Params<T, K extends keyof T> = Parameters<LSR<T>[K]> extends never
3294
3297
  /**
3295
3298
  * @typeParam T - 事件类型与回调函数类型映射,用于数据类型推导
3296
3299
  */
3297
- declare class EventEmitter$1<T> {
3300
+ declare class EventDispatcher<T> {
3298
3301
  /**
3299
3302
  * 事件监听器集合,其中键为事件类型,值为监听器数组;监听器数组中以优先级升序排列
3300
3303
  */
@@ -3349,7 +3352,7 @@ declare class EventEmitter$1<T> {
3349
3352
  * @param emitter
3350
3353
  * @hidden
3351
3354
  */
3352
- pipe(emitter: EventEmitter$1<any>): void;
3355
+ pipe<K extends T>(emitter: EventDispatcher<K>): void;
3353
3356
  }
3354
3357
 
3355
3358
  declare class SuspendablePromise<T> {
@@ -4460,6 +4463,15 @@ interface IPushConfig {
4460
4463
  */
4461
4464
  templateId?: string;
4462
4465
  }
4466
+ /**
4467
+ * 应用推送配置
4468
+ */
4469
+ interface IAppPushConfig {
4470
+ /**
4471
+ * 设备Id
4472
+ */
4473
+ deviceId: string;
4474
+ }
4463
4475
 
4464
4476
  /**
4465
4477
  * 标签相关接口
@@ -4626,7 +4638,7 @@ interface IProcessInfo {
4626
4638
  };
4627
4639
  }
4628
4640
 
4629
- interface IConnectionListener {
4641
+ declare type IConnectionListener = {
4630
4642
  /**
4631
4643
  * 连接成功
4632
4644
  */
@@ -4645,19 +4657,7 @@ interface IConnectionListener {
4645
4657
  * @param code 连接终止原因
4646
4658
  */
4647
4659
  onDisconnected(code: ErrorCode): void;
4648
- /**
4649
- * 数据库升级开始
4650
- */
4651
- onDBUpgrateStart?: () => void;
4652
- /**
4653
- * 数据库升级中
4654
- */
4655
- onDBUpgrading?: (process: number) => void;
4656
- /**
4657
- * 数据库升级完成
4658
- */
4659
- onDBUpgradeComplete?: (code: number) => void;
4660
- }
4660
+ };
4661
4661
 
4662
4662
  /**
4663
4663
  * 会话变更更新项
@@ -5093,15 +5093,7 @@ interface IConversationIdentifier {
5093
5093
  * 会话属性
5094
5094
  * @category Interface
5095
5095
  */
5096
- interface IConversationOption {
5097
- /**
5098
- * 会话类型
5099
- */
5100
- conversationType: ConversationType;
5101
- /**
5102
- * 会话 Id
5103
- */
5104
- targetId: string;
5096
+ interface IConversationOption extends IConversationIdentifier {
5105
5097
  /**
5106
5098
  * 频道 Id 字符串类型,不能包含 _ , 长度不能超过 20
5107
5099
  */
@@ -6497,6 +6489,12 @@ interface INaviInfo {
6497
6489
  /** 服务地址数据列表 */
6498
6490
  addrs?: IStreamServerAddress[];
6499
6491
  };
6492
+ /**
6493
+ * 推送服务器地址
6494
+ */
6495
+ active?: {
6496
+ addrs: IStreamServerAddress[];
6497
+ };
6500
6498
  }
6501
6499
 
6502
6500
  /**
@@ -6521,7 +6519,7 @@ interface IUserProfileInfo {
6521
6519
  * 用户应用号
6522
6520
  * @description 不可修改
6523
6521
  */
6524
- uniqueId?: string;
6522
+ readonly uniqueId?: string;
6525
6523
  /**
6526
6524
  * Email
6527
6525
  */
@@ -6633,25 +6631,16 @@ interface ISubscribeStatusDetail {
6633
6631
  platform: PlatformInfo;
6634
6632
  }
6635
6633
 
6636
- /** [EN]
6637
- * TODO(translate)
6638
- */
6639
- /** [ZH]
6634
+ /**
6640
6635
  * 好友关系
6641
6636
  * @category Interface
6642
6637
  * @since 5.12.0
6643
6638
  */
6644
6639
  interface IFriendRelationInfo {
6645
- /** [EN]
6646
- * TODO(translate)
6647
- */
6648
- /** [ZH]
6640
+ /**
6649
6641
  * 用户 ID
6650
6642
  */
6651
6643
  userId: string;
6652
- /** [EN]
6653
- * TODO(translate)
6654
- */
6655
6644
  /**
6656
6645
  * 好友关系
6657
6646
  */
@@ -7290,22 +7279,6 @@ interface IServerGroupBaseInfo {
7290
7279
  memProfilePerm?: number;
7291
7280
  }
7292
7281
 
7293
- interface IUserSettingItem {
7294
- targetId: number;
7295
- type: number;
7296
- key: string;
7297
- value: any;
7298
- version: number;
7299
- status: number;
7300
- tags: IConversationTag[];
7301
- }
7302
- interface IServerUserSetting {
7303
- settings: {
7304
- [key: string]: IUserSettingItem;
7305
- };
7306
- version: number;
7307
- }
7308
-
7309
7282
  interface INotificationQuietHoursSetting {
7310
7283
  /**
7311
7284
  * 开始时间,精确到秒。格式为 HH:MM:SS,例如 01:31:17。
@@ -7534,10 +7507,6 @@ interface IEngine {
7534
7507
  * 断开连接
7535
7508
  */
7536
7509
  disconnect(closeDB?: boolean): void;
7537
- /**
7538
- * 拉取用户级配置数据
7539
- */
7540
- pullUserSettings(version: number): IPromiseResult<IServerUserSetting>;
7541
7510
  /**
7542
7511
  * 消息注册
7543
7512
  * @description
@@ -8122,6 +8091,22 @@ interface IUserGroupStatusInfo {
8122
8091
  userGroupUnBindChannel?: IChannelAndUserGroupChangeData[];
8123
8092
  }
8124
8093
 
8094
+ interface IUserSettingItem {
8095
+ targetId: number;
8096
+ type: number;
8097
+ key: string;
8098
+ value: any;
8099
+ version: number;
8100
+ status: number;
8101
+ tags: IConversationTag[];
8102
+ }
8103
+ interface IServerUserSetting {
8104
+ settings: {
8105
+ [key: string]: IUserSettingItem;
8106
+ };
8107
+ version: number;
8108
+ }
8109
+
8125
8110
  interface IEngineWatcher extends IConnectionListener {
8126
8111
  /**
8127
8112
  * @param message 消息
@@ -9028,12 +9013,6 @@ declare const RTCPBMap: CodecPBMaps;
9028
9013
  */
9029
9014
  declare type InnerRTCKeyMaps = typeof RTCPBMap;
9030
9015
 
9031
- /**
9032
- * 聊天室模块
9033
- */
9034
- interface IChatroomModule {
9035
- }
9036
-
9037
9016
  declare class PluginContext {
9038
9017
  protected readonly _context: APIContext;
9039
9018
  constructor(_context: APIContext);
@@ -9095,11 +9074,20 @@ declare class PluginContext {
9095
9074
  * 用户连接建立之前及 disconnect 之后,该方法返回 '' 值
9096
9075
  */
9097
9076
  getCurrentId(): string;
9077
+ /**
9078
+ * 获取当前已连接用户的 token
9079
+ */
9080
+ getUserToken(): string;
9098
9081
  /**
9099
9082
  * 获取当前连接状态
9100
9083
  */
9101
9084
  getConnectionStatus(): RCConnectionStatus;
9102
9085
  getDeviceId(): string;
9086
+ /**
9087
+ * 设置推送配置 (uni app 平台使用)
9088
+ * @param config 推送配置
9089
+ */
9090
+ setPushConfig(config: IAppPushConfig): void;
9103
9091
  /**
9104
9092
  * 发送消息
9105
9093
  */
@@ -9139,6 +9127,10 @@ declare class PluginContext {
9139
9127
  * @param type 目前仅支持 `IM` 与 `RTC` 两个值
9140
9128
  */
9141
9129
  createLogger(id: string, type: LogType): BasicLogger;
9130
+ /**
9131
+ * 获取统计地址
9132
+ */
9133
+ getStatsUrlList(): Promise<RCResult<string[]>>;
9142
9134
  }
9143
9135
 
9144
9136
  interface IPluginGenerator<API, InitOption> {
@@ -9331,63 +9323,18 @@ interface IConnectResult {
9331
9323
  }
9332
9324
 
9333
9325
  /**
9334
- * 流式消息数据拉取响应事件类型
9335
- * @category Enum
9326
+ * 会话聊天模块
9336
9327
  */
9337
- declare enum StreamMessageResponseEventType {
9338
- /**
9339
- * 流式消息内容传输通道就绪
9340
- */
9341
- INIT = "INIT",
9342
- /**
9343
- * 流式消息数据到达通知
9344
- */
9345
- DATA = "DATA",
9346
- /**
9347
- * 流式消息拉取结束通知
9348
- */
9349
- END = "END"
9328
+ interface IChatModule {
9350
9329
  }
9351
9330
 
9352
9331
  /**
9353
- * 流式消息内容数据结构,在 `StreamMessageEvent.DATA` 事件中返回
9354
- */
9355
- declare type IStreamMessageResponseChunkData = {
9356
- /**
9357
- * 本次事件接收到的增量内容
9358
- */
9359
- content: string;
9360
- /**
9361
- * 已拉取到的累加内容
9362
- */
9363
- fullContent: string;
9364
- };
9365
- /**
9366
- * 流式消息事件数据
9332
+ * 聊天室模块
9367
9333
  */
9368
- declare type IStreamMessageResponseEventData<T> = {
9369
- /** 流式消息 UId */
9370
- messageUId: string;
9371
- /** 消息实例,仅 Electron 平台支持 */
9372
- message?: T;
9373
- /** 当 type 值为 END 时,需要依赖 code 值确定重置或结束原因 */
9374
- code: number;
9375
- /** 响应事件类型 */
9376
- type: StreamMessageResponseEventType;
9377
- /** 接收到的流数据,仅当 type 值为 DATA 时有效 */
9378
- chunk?: IStreamMessageResponseChunkData;
9379
- /**
9380
- * 服务器端数据是否已同步完成,当值为 true 时,表示服务器已不再产生新的流数据;仅当 type 值为 END 时有效
9381
- */
9382
- complete?: boolean;
9383
- };
9384
- /** SSE 模块 */
9385
- declare class SSEModule extends EventEmitter$1<{
9386
- message: (data: IStreamMessageResponseEventData<IReceivedMessage>) => void;
9387
- }> {
9388
- #private;
9389
- constructor(ctx: APIContext, inElectron: boolean);
9390
- requestStreamMessageContent(messageUId: string): Promise<RCResult>;
9334
+ interface IChatroomModule {
9335
+ }
9336
+
9337
+ interface IDataHostingModule {
9391
9338
  }
9392
9339
 
9393
9340
  declare class APIContext {
@@ -9432,6 +9379,8 @@ declare class APIContext {
9432
9379
  * 聊天室业务模块
9433
9380
  */
9434
9381
  get chatroom(): IChatroomModule;
9382
+ get chat(): IChatModule;
9383
+ get dataHosting(): IDataHostingModule;
9435
9384
  constructor(options: IAPIContextOption);
9436
9385
  /**
9437
9386
  * 安装使用插件,并初始化插件实例
@@ -9601,6 +9550,11 @@ declare class APIContext {
9601
9550
  getConnectedTime(): number;
9602
9551
  getServerTime(): number;
9603
9552
  getDeviceId(): string;
9553
+ /**
9554
+ * 设置推送配置 (仅 Web 端支持)
9555
+ * @param config 推送配置
9556
+ */
9557
+ setPushConfig(config: IAppPushConfig): void;
9604
9558
  getCurrentUserId(): string;
9605
9559
  getConnectionStatus(): RCConnectionStatus;
9606
9560
  /** 高阶函数,生成一个验证方法,验证是否处于连接中状态,并在连接状态可用时返回导航数据 */
@@ -10417,6 +10371,10 @@ declare class APIContext {
10417
10371
  setNotificationQuietHoursWithSetting(opts: INotificationQuietHoursSetting): Promise<RCResult>;
10418
10372
  removeNotificationQuietHoursSetting(): Promise<RCResult>;
10419
10373
  getNotificationQuietHoursSetting(): Promise<RCResult<INotificationQuietHoursSetting>>;
10374
+ /**
10375
+ * 获取统计地址
10376
+ */
10377
+ getStatsUrlList(): Promise<RCResult<string[]>>;
10420
10378
  }
10421
10379
 
10422
10380
  declare class RTCPluginContext extends PluginContext {
@@ -10618,10 +10576,7 @@ declare class RTCPluginContext extends PluginContext {
10618
10576
  getRTCJoinedUserInfo(userId: string): IPromiseResult<IRTCJoinedInfo[]>;
10619
10577
  }
10620
10578
 
10621
- /**
10622
- * 引擎定义
10623
- */
10624
- declare abstract class AEngine {
10579
+ declare abstract class BasicEngine {
10625
10580
  protected readonly rtcCodec: Codec<InnerRTCKeyMaps>;
10626
10581
  protected readonly _watcher: IEngineWatcher;
10627
10582
  protected readonly _options: IAPIContextOption;
@@ -10636,6 +10591,14 @@ declare abstract class AEngine {
10636
10591
  * 聊天室业务模块
10637
10592
  */
10638
10593
  abstract get chatroom(): IChatroomModule;
10594
+ /**
10595
+ * 会话聊天模块
10596
+ */
10597
+ abstract get chat(): IChatModule;
10598
+ /**
10599
+ * 数据托管模块
10600
+ */
10601
+ abstract get dataHosting(): IDataHostingModule;
10639
10602
  /**
10640
10603
  * 引擎初始化
10641
10604
  * @param _appkey
@@ -10916,10 +10879,6 @@ declare abstract class AEngine {
10916
10879
  * @param closeDB 是否关闭数据库,默认为 true,仅 Electron 平台有效
10917
10880
  */
10918
10881
  abstract disconnect(closeDB?: boolean): Promise<void>;
10919
- /**
10920
- * 拉取用户级配置数据
10921
- */
10922
- abstract pullUserSettings(version: number): IPromiseResult<IServerUserSetting>;
10923
10882
  /**
10924
10883
  * 获取当前连接状态
10925
10884
  */
@@ -11095,6 +11054,11 @@ declare abstract class AEngine {
11095
11054
  * 获取设备ID
11096
11055
  */
11097
11056
  abstract getDeviceId(): string;
11057
+ /**
11058
+ * 设置推送配置
11059
+ * @param config 推送配置
11060
+ */
11061
+ abstract setPushConfig(config: IAppPushConfig): void;
11098
11062
  /**
11099
11063
  * 获取当前 userId
11100
11064
  */
@@ -11545,6 +11509,70 @@ declare abstract class AEngine {
11545
11509
  abstract setNotificationQuietHoursWithSetting(opts: INotificationQuietHoursSetting): Promise<RCResult>;
11546
11510
  abstract removeNotificationQuietHoursSetting(): Promise<RCResult>;
11547
11511
  abstract getNotificationQuietHoursSetting(): Promise<RCResult<INotificationQuietHoursSetting>>;
11512
+ /**
11513
+ * 获取统计地址
11514
+ */
11515
+ abstract getStatsUrlList(): Promise<RCResult<string[]>>;
11516
+ }
11517
+
11518
+ /**
11519
+ * 流式消息数据拉取响应事件类型
11520
+ * @category Enum
11521
+ */
11522
+ declare enum StreamMessageResponseEventType {
11523
+ /**
11524
+ * 流式消息内容传输通道就绪
11525
+ */
11526
+ INIT = "INIT",
11527
+ /**
11528
+ * 流式消息数据到达通知
11529
+ */
11530
+ DATA = "DATA",
11531
+ /**
11532
+ * 流式消息拉取结束通知
11533
+ */
11534
+ END = "END"
11535
+ }
11536
+
11537
+ /**
11538
+ * 流式消息内容数据结构,在 `StreamMessageEvent.DATA` 事件中返回
11539
+ */
11540
+ declare type IStreamMessageResponseChunkData = {
11541
+ /**
11542
+ * 本次事件接收到的增量内容
11543
+ */
11544
+ content: string;
11545
+ /**
11546
+ * 已拉取到的累加内容
11547
+ */
11548
+ fullContent: string;
11549
+ };
11550
+ /**
11551
+ * 流式消息事件数据
11552
+ */
11553
+ declare type IStreamMessageResponseEventData<T> = {
11554
+ /** 流式消息 UId */
11555
+ messageUId: string;
11556
+ /** 消息实例,仅 Electron 平台支持 */
11557
+ message?: T;
11558
+ /** 当 type 值为 END 时,需要依赖 code 值确定重置或结束原因 */
11559
+ code: number;
11560
+ /** 响应事件类型 */
11561
+ type: StreamMessageResponseEventType;
11562
+ /** 接收到的流数据,仅当 type 值为 DATA 时有效 */
11563
+ chunk?: IStreamMessageResponseChunkData;
11564
+ /**
11565
+ * 服务器端数据是否已同步完成,当值为 true 时,表示服务器已不再产生新的流数据;仅当 type 值为 END 时有效
11566
+ */
11567
+ complete?: boolean;
11568
+ };
11569
+ /** SSE 模块 */
11570
+ declare class SSEModule extends EventDispatcher<{
11571
+ message: (data: IStreamMessageResponseEventData<IReceivedMessage>) => void;
11572
+ }> {
11573
+ #private;
11574
+ constructor(ctx: APIContext, inElectron: boolean);
11575
+ requestStreamMessageContent(messageUId: string): Promise<RCResult>;
11548
11576
  }
11549
11577
 
11550
11578
  /**
@@ -11836,4 +11864,4 @@ declare class AppStorage {
11836
11864
  }): void;
11837
11865
  }
11838
11866
 
11839
- export { AEngine, APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationType, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendRelationType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationType, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, IChannelAndUserGroupChangeData, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomModule, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICombineV2MessageContent, ICombinedMessage, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IConversationUnreadCount, ICreateGroupFail, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEngine, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExtraMethod, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHarmonyOSPushConfig, IInsertMessage, IInsertMsgOptions, ILocalTagStatus, ILogData, ILogger, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRuntime, ISendMsgOptions, IServerConversationStatus, IServerGroupBaseInfo, IServerUserSetting, ISetConversationStatusOptions, IStorage, IStreamMessageResponseChunkData, IStreamMessageResponseEventData, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadMsg, IUpdateItem, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IWatcher, IiOSPushConfig, InnerRTCKeyMaps, InterruptionLevel, ItypingStateListener, KVString, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, PlatformInfo, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, RCConnectionStatus, RCResult, RTCApiType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, SSEModule, SentStatus, StreamMessageResponseEventType, SubscribeOperationType, SubscribeType, SuspendablePromise, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, Validator, ValidatorManage, VersionManage, assert, fail, fixUrlProtocol, forEach, getUUID, getUUID22, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, logger, map, notEmptyArray, notEmptyObject, notEmptyString, ok, runtime, transformReceivedStatusFlag, transformReceivedStatusInfo, usingCppEngine, validate };
11867
+ export { APIContext, AbsCodec, AppStorage, AreaCode, AssertRules, BasicEngine, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationType, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendRelationType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationType, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAppPushConfig, IAsyncRes, IBaseConversationInfo, IBlockedMessageInfo, IChannelAndUserGroupChangeData, IChatModule, IChatRoomEntries, IChatRoomEntry, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomModule, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomUser, IChatroomUserChangeInfo, IChrmKVEntries, IChrmKVEntry, IClearMessageOption, ICombineV2MessageContent, ICombinedMessage, IConnectionStatusListener, IConversationIdentifier, IConversationOption, IConversationState, IConversationStateListener, IConversationTag, IConversationTagListener, IConversationUnreadCount, ICreateGroupFail, IDataHostingModule, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEngine, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExtraMethod, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGetMsgOption, IGetUltraGroupListOption, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupMessageDeliverInfo, IGroupMessageDeliverStatus, IGroupMessageDeliveredStatusInfo, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHarmonyOSPushConfig, IInsertMessage, IInsertMsgOptions, ILocalTagStatus, ILogData, ILogger, IMessageDeliver, IMessageDeliveredListener, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRuntime, ISendMsgOptions, IServerConversationStatus, IServerGroupBaseInfo, IServerUserSetting, ISetConversationStatusOptions, IStorage, IStreamMessageResponseChunkData, IStreamMessageResponseEventData, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadMsg, IUpdateItem, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IWatcher, IiOSPushConfig, InnerRTCKeyMaps, InterruptionLevel, ItypingStateListener, KVString, LogL, LogLevel, LogSource, LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_UPLOAD_FILE_SIZE, MentionedInfoBody, MentionedType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageType, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, PlatformInfo, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, RCConnectionStatus, RCResult, RTCApiType, RTCJoinType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, SSEModule, SentStatus, StreamMessageResponseEventType, SubscribeOperationType, SubscribeType, SuspendablePromise, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, Validator, ValidatorManage, VersionManage, assert, fail, fixUrlProtocol, forEach, getUUID, getUUID22, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, logger, map, notEmptyArray, notEmptyObject, notEmptyString, ok, runtime, transformReceivedStatusFlag, transformReceivedStatusInfo, usingCppEngine, validate };