@rongcloud/engine 5.44.0-c-export-msgs-alpha.2 → 5.44.0

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
@@ -2198,6 +2198,12 @@ declare enum ErrorCode {
2198
2198
  * @since 5.32.0
2199
2199
  */
2200
2200
  METHOD_BUSY = 33103,
2201
+ /**
2202
+ * 33301
2203
+ * 不允许主动拉取远端会话
2204
+ * @since 5.20.0
2205
+ */
2206
+ NOT_ALLOW_PULL_CONVERSATION = 33301,
2201
2207
  /**
2202
2208
  * 33302
2203
2209
  * SDK 拉取远端会话列表失败。
@@ -2233,6 +2239,12 @@ declare enum ErrorCode {
2233
2239
  * @since 5.42.0
2234
2240
  */
2235
2241
  REACTION_ID_INVALID = 33405,
2242
+ /**
2243
+ * 33406
2244
+ * 会话未读数查询过滤器非法
2245
+ * @since 5.44.0
2246
+ */
2247
+ INVALID_PARAMETER_UNREAD_COUNT_FILTER = 33406,
2236
2248
  /**
2237
2249
  * 34001
2238
2250
  * 连接已存在。
@@ -4097,6 +4109,30 @@ declare const MessageReactionOperationType: {
4097
4109
  };
4098
4110
  declare type MessageReactionOperationType = typeof MessageReactionOperationType[keyof typeof MessageReactionOperationType];
4099
4111
 
4112
+ /**
4113
+ * 会话查询未读数过滤器
4114
+ * @since 5.44.0
4115
+ */
4116
+ declare const ConversationUnreadCountFilter: {
4117
+ /**
4118
+ * 获取所有会话
4119
+ */
4120
+ readonly ALL: 0;
4121
+ /**
4122
+ * 获取包含未读消息的会话
4123
+ */
4124
+ readonly UNREAD_ONLY: 1;
4125
+ /**
4126
+ * 获取包含 "@我" 的消息的会话
4127
+ */
4128
+ readonly MENTION_ONLY: 2;
4129
+ /**
4130
+ * 获取不包含未读消息的会话
4131
+ */
4132
+ readonly NO_UNREAD: 3;
4133
+ };
4134
+ declare type ConversationUnreadCountFilter = typeof ConversationUnreadCountFilter[keyof typeof ConversationUnreadCountFilter];
4135
+
4100
4136
  /**
4101
4137
  * 网络状态枚举
4102
4138
  */
@@ -5236,11 +5272,6 @@ interface IConversationListLoaderOptions {
5236
5272
  * @hidden - 本期不实现,不对外,后续拓展预留
5237
5273
  */
5238
5274
  topPriority?: boolean;
5239
- /**
5240
- * 获取包含未读消息的会话
5241
- * @hidden - 本期不实现,不对外,后续拓展预留
5242
- */
5243
- hasUnreadMessage?: boolean;
5244
5275
  /**
5245
5276
  * 获取免打扰会话
5246
5277
  * @hidden - 本期不实现,不对外,后续拓展预留
@@ -7348,7 +7379,7 @@ interface IUploadAuth {
7348
7379
  */
7349
7380
  deadline: number;
7350
7381
  /**
7351
- * 七牛上传 token
7382
+ * 七牛上传 token,同时也作为私有云下载鉴权 token 数据
7352
7383
  */
7353
7384
  token: string;
7354
7385
  /**
@@ -7439,28 +7470,42 @@ interface IUploadAuth {
7439
7470
  * minio 存储空间名称
7440
7471
  */
7441
7472
  minioBucketName: string;
7442
- /**
7443
- * 下载鉴权信息
7444
- */
7445
- downloadAuthInfo?: IDownloadAuth;
7446
7473
  /**
7447
7474
  * oss 存储配置,优先级高于导航 ossConfig 配置;值为 Json 字符串
7448
7475
  */
7449
7476
  ossConfig?: string;
7477
+ /**
7478
+ * 私有云下载鉴权信息
7479
+ * @hidden
7480
+ * * 应将 token 作为第一优先检查条件,当其有值时,拼接 `url?token=${token}` 进行下载
7481
+ * * 当 !token 时,检查 downloadAuthInfo 数据:
7482
+ * 1. (!downloadAuthInfo || downloadAuthInfo.type === 0):直接使用原始 url 下载
7483
+ * 2. (downloadAuthInfo.type === 1):使用 downloadAuthInfo.url 进行下载
7484
+ * 3. (downloadAuthInfo.type === 2):需要将 downloadAuthInfo.authParams 写入 Http 请求的 headers 中完成鉴权
7485
+ */
7486
+ downloadAuthInfo?: IDownloadAuth;
7450
7487
  }
7451
7488
  /**
7452
- * 下载鉴权信息
7489
+ * 私有云下载鉴权信息,不对外
7453
7490
  * @category Interface
7454
7491
  * @hidden
7455
7492
  */
7456
7493
  interface IDownloadAuth {
7457
7494
  /**
7458
7495
  * 鉴权类型
7459
- * 0: 不鉴权
7460
- * 1: 直接使用 url
7496
+ * 0: 不鉴权,使用原始 url 下载
7497
+ * 1: 服务器开启鉴权,使用当前结构的 url 数据进行下载
7498
+ * 2: 服务器开启鉴权,需要将 authParams 数据写入 Http 请求 headers 中
7499
+ */
7500
+ type: 0 | 1 | 2;
7501
+ /**
7502
+ * 仅当 type === 1 时有值
7461
7503
  */
7462
- type: 0 | 1;
7463
7504
  url?: string;
7505
+ /**
7506
+ * 仅当 type === 2 时有值,需要该值写入 Http 请求的 headers 中完成私有云鉴权
7507
+ */
7508
+ authParams?: Record<string, string>;
7464
7509
  }
7465
7510
 
7466
7511
  /**
@@ -9175,8 +9220,7 @@ interface IGroupOperationInfo {
9175
9220
  */
9176
9221
  groupId: string;
9177
9222
  /**
9178
- * 操作用户
9179
- * 注意:服务端 api 操作可能为空
9223
+ * 操作人信息。通过 Server API 操作时可能为空
9180
9224
  */
9181
9225
  operatorInfo?: IGroupMemberInfo;
9182
9226
  /**
@@ -9208,9 +9252,10 @@ interface IGroupMemberInfoChanged {
9208
9252
  */
9209
9253
  groupId: string;
9210
9254
  /**
9211
- * 操作人信息
9255
+ * 操作人信息。通过 Server API 操作时可能为空
9256
+ * @description 5.44.0 版本开始,该字段声明为可选,实际场景中可能存在该字段为空的情况
9212
9257
  */
9213
- operatorInfo: IGroupMemberInfo;
9258
+ operatorInfo?: IGroupMemberInfo;
9214
9259
  /**
9215
9260
  * 变更的群成员资料列表
9216
9261
  */
@@ -9227,9 +9272,10 @@ interface IGroupMemberInfoChanged {
9227
9272
  */
9228
9273
  interface IGroupInfoChanged {
9229
9274
  /**
9230
- * 操作用户信息
9275
+ * 操作人信息。通过 Server API 操作时可能为空
9276
+ * @description 5.44.0 版本开始,该字段声明为可选,实际场景中可能存在该字段为空的情况
9231
9277
  */
9232
- operatorInfo: IGroupMemberInfo;
9278
+ operatorInfo?: IGroupMemberInfo;
9233
9279
  /**
9234
9280
  * 变更的群组信息,仅包含变更字段
9235
9281
  * @deprecated 从 5.14.0 版本开始,建议使用 `changedGroupInfo` 字段替代
@@ -9605,9 +9651,15 @@ declare type IGetConversationListByTimestampParams = {
9605
9651
  */
9606
9652
  topPriority?: boolean;
9607
9653
  /**
9608
- * 会话类型,值为空或长度为 0 时,获取全部会话类型
9654
+ * 会话类型,值为空或长度为 0 时,获取全部会话类型。
9655
+ * * Web 端仅在开启“会话列表支持超级群“功能后有效。
9609
9656
  */
9610
9657
  conversationTypes?: ConversationType[];
9658
+ /**
9659
+ * 会话查询未读数过滤器,默认值为 ConversationUnreadCountFilter.ALL,仅对 Electron 平台有效。
9660
+ * @since 5.44.0
9661
+ */
9662
+ unreadCountFilter?: ConversationUnreadCountFilter;
9611
9663
  };
9612
9664
 
9613
9665
  /** 已读回执用户信息 */
@@ -10664,13 +10716,6 @@ interface IIPCMethods {
10664
10716
  * @param conversationTypes 会话类型
10665
10717
  */
10666
10718
  getUnreadConversationList(includeUG: boolean, conversationTypes?: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
10667
- /**
10668
- * 分页获取会话列表,V2-Adapter Electron 独有功能,Web 平台不支持
10669
- * @param index 分页索引
10670
- * @param limit 分页数量
10671
- * @returns 会话列表
10672
- */
10673
- getConversationListByPageIndex(index: number, limit: number): Promise<RCResult<IReceivedConversation[]>>;
10674
10719
  /**
10675
10720
  * 获取全部本地会话列表,仅支持 Electron 平台
10676
10721
  * @param includeUG 会话列表支持超级群开关
@@ -11057,6 +11102,26 @@ interface IRobotInfo {
11057
11102
  updateTime: number;
11058
11103
  }
11059
11104
 
11105
+ interface ISignalInfo {
11106
+ /**
11107
+ * 接收到的服务器下行 cmp 信令标识
11108
+ */
11109
+ name: string;
11110
+ /**
11111
+ * protobuf 数据
11112
+ */
11113
+ data: Uint8Array;
11114
+ /**
11115
+ * targetId
11116
+ */
11117
+ targetId: string;
11118
+ /**
11119
+ * 信令数据时间戳
11120
+ */
11121
+ timestamp: number;
11122
+ }
11123
+ declare type ICustomSignalHandler = (info: ISignalInfo) => void;
11124
+
11060
11125
  declare type IErrorKeys = {
11061
11126
  /**
11062
11127
  * 更新错误的 key 数组
@@ -11880,6 +11945,12 @@ declare class PluginContext {
11880
11945
  * 获取统计地址
11881
11946
  */
11882
11947
  getStatsUrlList(): Promise<RCResult<string[]>>;
11948
+ /**
11949
+ * 注册自定义信令监听器,不支持 Electron 平台
11950
+ * @param signalNames - 需要监听处理的下行信令
11951
+ * @param handler - 回调函数
11952
+ */
11953
+ registerCustomSignalHandler(signalNames: string[], handler: ICustomSignalHandler): void;
11883
11954
  }
11884
11955
 
11885
11956
  interface IPluginGenerator<API, InitOption> {
@@ -12534,6 +12605,12 @@ declare class APIContext {
12534
12605
  * @param options
12535
12606
  */
12536
12607
  install<T, O>(plugin: IPluginGenerator<T, O>, options: O): T | null;
12608
+ /**
12609
+ * 注册自定义信令监听器,不支持 Electron 平台
12610
+ * @param signalNames - 需要监听处理的下行信令
12611
+ * @param handler - 回调函数
12612
+ */
12613
+ registerCustomSignalHandler(signalNames: string[], handler: ICustomSignalHandler): void;
12537
12614
  /**
12538
12615
  * 获取应用设置
12539
12616
  * @since 5.22.0
@@ -12786,13 +12863,6 @@ declare class APIContext {
12786
12863
  getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<RCResult<IReceivedConversation[]>>;
12787
12864
  getUnreadConversationList(conversationTypes?: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
12788
12865
  getBlockedConversationList(): Promise<RCResult<IReceivedConversation[]>>;
12789
- /**
12790
- * 分页获取会话列表,V2-Adapter Electron 独有功能,Web 平台不支持
12791
- * @param index 分页索引
12792
- * @param limit 分页数量
12793
- * @returns 会话列表
12794
- */
12795
- getConversationListByPageIndex(index: number, limit: number): Promise<RCResult<IReceivedConversation[]>>;
12796
12866
  /**
12797
12867
  * 获取全部本地会话列表
12798
12868
  * @param channelId 组织 ID,用于多组织场景,不传则获取全部组织会话
@@ -13439,7 +13509,7 @@ declare class RTCPluginContext extends PluginContext {
13439
13509
  /**
13440
13510
  * 会话聊天模块
13441
13511
  */
13442
- interface IChatService extends Pick<IIPCMethods, 'getTotalUnreadCount' | 'getConversation' | 'batchSetConversationToTop' | 'batchSetConversationNotificationLevel' | 'getConversationNotificationLevel' | 'setConversationTypeNotificationLevel' | 'getConversationTypeNotificationLevel' | 'clearAllSGUnreadCount' | 'deleteRemoteMessage' | 'deleteRemoteMessageByTimestamp' | 'batchClearRemoteHistoryMessages' | 'sendReadReceiptResponseV5' | 'getMessageReadReceiptInfoV5ByIdentifiers' | 'getMessagesReadReceiptUsersByPageV5' | 'getMessagesReadReceiptByUsersV5' | 'searchConversationByContent' | 'requestSpeechToTextForMessage' | 'setMessageSpeechToTextVisible' | 'addTagForConversations' | 'getTagsForConversation' | 'setConversationStatusInTag' | 'removeTagForConversations' | 'removeTagsForConversation' | 'getConversationListByTag' | 'getUnreadCountByTag' | 'getUntaggedConversationListByPage' | 'batchSetConversationTranslateStrategy' | 'modifyMessageWithParams' | 'refreshReferenceMessageWithParams' | 'batchDeleteConversations' | 'sendReadReceiptV2' | 'syncRemoteConversations' | 'sendUltraGroupTypingStatus' | 'getUltraGroupList' | 'getRemoteMessagesByUIds' | 'getUGUnreadMentionedDigest' | 'getHistoryMessagesByObjectNames' | 'getContinuousMessages' | 'getMessagesAroundTimestamp' | 'deleteLocalUGMessagesForAllChannel' | 'updateUGMessageExpansion' | 'setUGDefaultNotificationLevel' | 'getUGDefaultNotificationLevel' | 'getUnreadMentionedMessages' | 'getUnreadMentionedCount' | 'getAllUnreadMentionedCount' | 'getTotalUnreadCountByLevels' | 'getConversationUnreadCount' | 'getFirstUnreadMessage' | 'getFirstUnreadMessageDigest' | 'getUGUnreadCountForAllChannels' | 'getUGUnreadInfoList' | 'getUGFirstUnreadMessageDigest' | 'getConversations' | 'clearConversationUnreadCount' | 'markRemoteConversationAsRead' | 'getTopConversationList' | 'getUnreadConversationList' | 'getConversationListByPageIndex' | 'getAllConversationList' | 'getConversationListByTimestamp' | 'clearConversations' | 'getBlockedConversationList' | 'getBlockedUGList' | 'saveEditedMessageDraft' | 'getEditedMessageDraft' | 'clearEditedMessageDraft' | 'getUnreadMentionMeConversationList' | 'sendUltraGroupTypingStatus' | 'updateConversationReadTime' | 'clearUnreadCountByTimestamp' | 'getMessageReader' | 'getMessageReadReceiptV4' | 'sendReadReceiptMessageV4' | 'getConversationsIncludingRobots' | 'addMessageReaction' | 'removeMessageReaction' | 'batchGetMessageReactionSummaries' | 'getMessageReactions' | 'getMessageReactionUsers'> {
13512
+ interface IChatService extends Pick<IIPCMethods, 'getTotalUnreadCount' | 'getConversation' | 'batchSetConversationToTop' | 'batchSetConversationNotificationLevel' | 'getConversationNotificationLevel' | 'setConversationTypeNotificationLevel' | 'getConversationTypeNotificationLevel' | 'clearAllSGUnreadCount' | 'deleteRemoteMessage' | 'deleteRemoteMessageByTimestamp' | 'batchClearRemoteHistoryMessages' | 'sendReadReceiptResponseV5' | 'getMessageReadReceiptInfoV5ByIdentifiers' | 'getMessagesReadReceiptUsersByPageV5' | 'getMessagesReadReceiptByUsersV5' | 'searchConversationByContent' | 'requestSpeechToTextForMessage' | 'setMessageSpeechToTextVisible' | 'addTagForConversations' | 'getTagsForConversation' | 'setConversationStatusInTag' | 'removeTagForConversations' | 'removeTagsForConversation' | 'getConversationListByTag' | 'getUnreadCountByTag' | 'getUntaggedConversationListByPage' | 'batchSetConversationTranslateStrategy' | 'modifyMessageWithParams' | 'refreshReferenceMessageWithParams' | 'batchDeleteConversations' | 'sendReadReceiptV2' | 'syncRemoteConversations' | 'sendUltraGroupTypingStatus' | 'getUltraGroupList' | 'getRemoteMessagesByUIds' | 'getUGUnreadMentionedDigest' | 'getHistoryMessagesByObjectNames' | 'getContinuousMessages' | 'getMessagesAroundTimestamp' | 'deleteLocalUGMessagesForAllChannel' | 'updateUGMessageExpansion' | 'setUGDefaultNotificationLevel' | 'getUGDefaultNotificationLevel' | 'getUnreadMentionedMessages' | 'getUnreadMentionedCount' | 'getAllUnreadMentionedCount' | 'getTotalUnreadCountByLevels' | 'getConversationUnreadCount' | 'getFirstUnreadMessage' | 'getFirstUnreadMessageDigest' | 'getUGUnreadCountForAllChannels' | 'getUGUnreadInfoList' | 'getUGFirstUnreadMessageDigest' | 'getConversations' | 'clearConversationUnreadCount' | 'markRemoteConversationAsRead' | 'getTopConversationList' | 'getUnreadConversationList' | 'getAllConversationList' | 'getConversationListByTimestamp' | 'clearConversations' | 'getBlockedConversationList' | 'getBlockedUGList' | 'saveEditedMessageDraft' | 'getEditedMessageDraft' | 'clearEditedMessageDraft' | 'getUnreadMentionMeConversationList' | 'sendUltraGroupTypingStatus' | 'updateConversationReadTime' | 'clearUnreadCountByTimestamp' | 'getMessageReader' | 'getMessageReadReceiptV4' | 'sendReadReceiptMessageV4' | 'getConversationsIncludingRobots' | 'addMessageReaction' | 'removeMessageReaction' | 'batchGetMessageReactionSummaries' | 'getMessageReactions' | 'getMessageReactionUsers'> {
13443
13513
  /** 超级群是否已同步完成 */
13444
13514
  get ugSynced(): boolean;
13445
13515
  getRealtimeConversations(count: number, startTime: number, order: 0 | 1): Promise<RCResult<IReceivedConversation[]>>;
@@ -13610,4 +13680,4 @@ declare const assert: (key: string, value: any, validator: AssertRules | ((value
13610
13680
  */
13611
13681
  declare const validate: (key: string, value: any, validator: AssertRules | ((value?: any) => boolean), required?: boolean) => boolean;
13612
13682
 
13613
- export { APIContext, AbsCodec, AppSettings, AreaCode, AssertRules, BaseTranslateParam, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationListLoader, ConversationType, DataHosting, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, FilterRobotType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendRelationType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationType, GroupReadReceiptVersion, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAppPushConfig, IAsyncRes, IAuditInfoKeyInMessage, IAuditInfoValueInMessage, IBlockedMessageInfo, IChannelAndUserGroupChangeData, IChartroomUserAction, IChatRoomEntries, IChatRoomEntry, IChatService, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomErrorKeys, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomService, IChatroomUser, IChatroomUserChangeInfo, IClearMessageOption, ICombineMessageContent, ICombineV2MessageContent, ICombinedMessage, ICommandMessageContent, ICommandNotificationMessageContent, IConnectionStatusListener, IConversationCachePolicy, IConversationFilter, IConversationIdentifier, IConversationListLoaderOptions, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagFilter, IConversationTagListener, IConversationUnreadCount, IConvertHQVoiceMessageToTextOption, IConvertSpeechToTextOption, IConvertVoiceMessageToTextOption, ICreateGroupFail, IDataHostingService, IDataManagementInfo, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEngineMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetConversationsIncludingRobotsOption, IGetGroupMembersOption, IGetHistoryMessageOption, IGetHistoryMessageResult, IGetHistoryMessagesByTypesOption, IGetMessageReactionUsersParam, IGetMessageReactionsParam, IGetUltraGroupListOption, IGetUnreadMentionMeConversationListParams, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupNotificationMessageContent, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHQVoiceMessageContent, IHarmonyOSPushConfig, IIPCMethods, IIPCMethodsSync, IIPCMethodsWithoutResult, IImageMessageContent, IInformationNotificationMessageContent, IInsertMessage, ILocalTagStatus, ILocationMessageContent, ILogData, ILogger, IMemberInviteResponse, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageExtraData, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReaction, IMessageReactionEvent, IMessageReactionEventData, IMessageReactionSummaryQueryParam, IMessageReactionUser, IMessageReactionUsersResult, IMessageReactionsResult, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMessageSendOptions, IModifyMessageParams, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPlatformOnlineStatus, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IQuoteInfo, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallCommandMessageContent, IRecallMsgOptions, IRecallNotificationMessageContent, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IReferContentInMessage, IReferContentKeyInMessage, IReferenceMessageContent, IRefreshReferenceMessageParams, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRichContentMessageContent, IRobotInfo, IRuntime, ISRSMsgContent, ISearchMessageParams, ISearchMessagesResult, ISendMsgOptions, IServerGroupBaseInfo, ISightMessageContent, ISpeechToTextInfo, ISpeechToTextResponse, IStorage, IStreamMessageContent, IStreamMessageResponseChunkData, IStreamMessageResponseEventData, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserOnlineStatus, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITextMessageContent, ITimeRange, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraUnreadMsg, IUpdateItem, IUpdateMessageReactionParam, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserExtraKeyInMessage, IUserExtraValueInMessage, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IUserSettingsChangedEvent, IUserSettingsModule, IVoiceMessageContent, IWatcher, IiOSPushConfig, InnerInsertMessageParams, InnerTransParam, InterruptionLevel, ItypingStateListener, KVString, LogDBProxy, LogL, LogLevel, LogSource, Log as LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_U32_INTEGER, MAX_UPLOAD_FILE_SIZE, MentionedInfo, MentionedType, MessageAuditType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageModifyInfo, MessageModifyStatus, MessageReactionOperationType, MessageRegisterParams, MessageType, MessageTypeDescription, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, Platform, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, QuoteMessageStatus, RCConnectionStatus, RCResult, RTCApiType, RTCJoinType, RTCMode, RTCPluginContext, ReadReceiptInfoV5, ReadReceiptResponseV5, ReadReceiptUser, ReadReceiptUsersOption, ReadReceiptUsersResult, ReceivedStatus, ReferenceMessageStatus, SSEModule, SentStatus, SpeechToTextStatus, StreamMessageResponseEventType, SubscribeOperationType, SubscribeType, SuspendablePromise, TranslateInfo, TranslateItem, TranslateMessageParam, TranslateMessagesParams, TranslateMode, TranslateStatus, TranslateStrategy, TranslateTextParam, TranslateTextsParams, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, UserSettingsChangedKey, UserType, Validator, VersionManage, assert, createLogDBProxy, fail, fixUrlProtocol, forEach, getMessageTypeDescription, getUUID, getUUID22, hasMessageTypeDescription, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidTargetId, map, notEmptyArray, notEmptyObject, notEmptyString, ok, promiseWithResolvers, runtime, trans2IReceivedStatusInfo, trans2NotificationLevel, trans2NotificationStatus, transformReceivedStatusFlag, usingCppEngine, validate };
13683
+ export { APIContext, AbsCodec, AppSettings, AreaCode, AssertRules, BaseTranslateParam, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationListLoader, ConversationType, ConversationUnreadCountFilter, DataHosting, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, FilterRobotType, FriendAddPermission, FriendApplicationStatus, FriendApplicationType, FriendRelationType, GroupApplicationDirection, GroupApplicationStatus, GroupApplicationType, GroupInviteHandlePermission, GroupJoinPermission, GroupMemberInfoEditPermission, GroupMemberRole, GroupOperation, GroupOperationPermission, GroupOperationRole, GroupOperationStatus, GroupOperationType, GroupReadReceiptVersion, HttpMethod, IAPIContextOption, IAndroidPushConfig, IAppPushConfig, IAsyncRes, IAuditInfoKeyInMessage, IAuditInfoValueInMessage, IBlockedMessageInfo, IChannelAndUserGroupChangeData, IChartroomUserAction, IChatRoomEntries, IChatRoomEntry, IChatService, IChatroomEntries, IChatroomEntry, IChatroomEntryListenerData, IChatroomErrorKeys, IChatroomInfo, IChatroomJoinResponse, IChatroomListener, IChatroomListenerData, IChatroomNotifyBan, IChatroomNotifyBlock, IChatroomNotifyMultiLoginSync, IChatroomRejoinedFailed, IChatroomRejoinedInfo, IChatroomRejoinedSuccessed, IChatroomService, IChatroomUser, IChatroomUserChangeInfo, IClearMessageOption, ICombineMessageContent, ICombineV2MessageContent, ICombinedMessage, ICommandMessageContent, ICommandNotificationMessageContent, IConnectionStatusListener, IConversationCachePolicy, IConversationFilter, IConversationIdentifier, IConversationListLoaderOptions, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagFilter, IConversationTagListener, IConversationUnreadCount, IConvertHQVoiceMessageToTextOption, IConvertSpeechToTextOption, IConvertVoiceMessageToTextOption, ICreateGroupFail, ICustomSignalHandler, IDataHostingService, IDataManagementInfo, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEngineMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetConversationsIncludingRobotsOption, IGetGroupMembersOption, IGetHistoryMessageOption, IGetHistoryMessageResult, IGetHistoryMessagesByTypesOption, IGetMessageReactionUsersParam, IGetMessageReactionsParam, IGetUltraGroupListOption, IGetUnreadMentionMeConversationListParams, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupNotificationMessageContent, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHQVoiceMessageContent, IHarmonyOSPushConfig, IIPCMethods, IIPCMethodsSync, IIPCMethodsWithoutResult, IImageMessageContent, IInformationNotificationMessageContent, IInsertMessage, ILocalTagStatus, ILocationMessageContent, ILogData, ILogger, IMemberInviteResponse, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageExtraData, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReaction, IMessageReactionEvent, IMessageReactionEventData, IMessageReactionSummaryQueryParam, IMessageReactionUser, IMessageReactionUsersResult, IMessageReactionsResult, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMessageSendOptions, IModifyMessageParams, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPlatformOnlineStatus, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IQuoteInfo, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallCommandMessageContent, IRecallMsgOptions, IRecallNotificationMessageContent, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IReferContentInMessage, IReferContentKeyInMessage, IReferenceMessageContent, IRefreshReferenceMessageParams, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRichContentMessageContent, IRobotInfo, IRuntime, ISRSMsgContent, ISearchMessageParams, ISearchMessagesResult, ISendMsgOptions, IServerGroupBaseInfo, ISightMessageContent, ISignalInfo, ISpeechToTextInfo, ISpeechToTextResponse, IStorage, IStreamMessageContent, IStreamMessageResponseChunkData, IStreamMessageResponseEventData, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserOnlineStatus, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITextMessageContent, ITimeRange, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraUnreadMsg, IUpdateItem, IUpdateMessageReactionParam, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserExtraKeyInMessage, IUserExtraValueInMessage, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IUserSettingsChangedEvent, IUserSettingsModule, IVoiceMessageContent, IWatcher, IiOSPushConfig, InnerInsertMessageParams, InnerTransParam, InterruptionLevel, ItypingStateListener, KVString, LogDBProxy, LogL, LogLevel, LogSource, Log as LogTagId, LogType, MAX_MESSAGE_CONTENT_BYTES, MAX_U32_INTEGER, MAX_UPLOAD_FILE_SIZE, MentionedInfo, MentionedType, MessageAuditType, MessageBlockSourceType, MessageBlockType, MessageDirection, MessageModifyInfo, MessageModifyStatus, MessageReactionOperationType, MessageRegisterParams, MessageType, MessageTypeDescription, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, Platform, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, QuoteMessageStatus, RCConnectionStatus, RCResult, RTCApiType, RTCJoinType, RTCMode, RTCPluginContext, ReadReceiptInfoV5, ReadReceiptResponseV5, ReadReceiptUser, ReadReceiptUsersOption, ReadReceiptUsersResult, ReceivedStatus, ReferenceMessageStatus, SSEModule, SentStatus, SpeechToTextStatus, StreamMessageResponseEventType, SubscribeOperationType, SubscribeType, SuspendablePromise, TranslateInfo, TranslateItem, TranslateMessageParam, TranslateMessagesParams, TranslateMode, TranslateStatus, TranslateStrategy, TranslateTextParam, TranslateTextsParams, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, UserSettingsChangedKey, UserType, Validator, VersionManage, assert, createLogDBProxy, fail, fixUrlProtocol, forEach, getMessageTypeDescription, getUUID, getUUID22, hasMessageTypeDescription, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidTargetId, map, notEmptyArray, notEmptyObject, notEmptyString, ok, promiseWithResolvers, runtime, trans2IReceivedStatusInfo, trans2NotificationLevel, trans2NotificationStatus, transformReceivedStatusFlag, usingCppEngine, validate };