@rongcloud/engine 5.44.0-c-export-msgs-alpha.1 → 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 - 本期不实现,不对外,后续拓展预留
@@ -6589,6 +6620,20 @@ interface ICommandMessageContent extends IExtraDataKeyInMessage, IUserExtraKeyIn
6589
6620
  */
6590
6621
  data: string;
6591
6622
  }
6623
+ /**
6624
+ * 命令通知消息 content 数据
6625
+ * @since 5.44.0
6626
+ */
6627
+ interface ICommandNotificationMessageContent extends IExtraDataKeyInMessage, IUserExtraKeyInMessage, IMentionedInfoKeyInMessage {
6628
+ /**
6629
+ * 命令名称,可以自行定义
6630
+ */
6631
+ name: string;
6632
+ /**
6633
+ * 命令内容
6634
+ */
6635
+ data: string;
6636
+ }
6592
6637
  /**
6593
6638
  * 文件消息 content 数据
6594
6639
  * @category Interface
@@ -7334,7 +7379,7 @@ interface IUploadAuth {
7334
7379
  */
7335
7380
  deadline: number;
7336
7381
  /**
7337
- * 七牛上传 token
7382
+ * 七牛上传 token,同时也作为私有云下载鉴权 token 数据
7338
7383
  */
7339
7384
  token: string;
7340
7385
  /**
@@ -7425,28 +7470,42 @@ interface IUploadAuth {
7425
7470
  * minio 存储空间名称
7426
7471
  */
7427
7472
  minioBucketName: string;
7428
- /**
7429
- * 下载鉴权信息
7430
- */
7431
- downloadAuthInfo?: IDownloadAuth;
7432
7473
  /**
7433
7474
  * oss 存储配置,优先级高于导航 ossConfig 配置;值为 Json 字符串
7434
7475
  */
7435
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;
7436
7487
  }
7437
7488
  /**
7438
- * 下载鉴权信息
7489
+ * 私有云下载鉴权信息,不对外
7439
7490
  * @category Interface
7440
7491
  * @hidden
7441
7492
  */
7442
7493
  interface IDownloadAuth {
7443
7494
  /**
7444
7495
  * 鉴权类型
7445
- * 0: 不鉴权
7446
- * 1: 直接使用 url
7496
+ * 0: 不鉴权,使用原始 url 下载
7497
+ * 1: 服务器开启鉴权,使用当前结构的 url 数据进行下载
7498
+ * 2: 服务器开启鉴权,需要将 authParams 数据写入 Http 请求 headers 中
7499
+ */
7500
+ type: 0 | 1 | 2;
7501
+ /**
7502
+ * 仅当 type === 1 时有值
7447
7503
  */
7448
- type: 0 | 1;
7449
7504
  url?: string;
7505
+ /**
7506
+ * 仅当 type === 2 时有值,需要该值写入 Http 请求的 headers 中完成私有云鉴权
7507
+ */
7508
+ authParams?: Record<string, string>;
7450
7509
  }
7451
7510
 
7452
7511
  /**
@@ -9161,8 +9220,7 @@ interface IGroupOperationInfo {
9161
9220
  */
9162
9221
  groupId: string;
9163
9222
  /**
9164
- * 操作用户
9165
- * 注意:服务端 api 操作可能为空
9223
+ * 操作人信息。通过 Server API 操作时可能为空
9166
9224
  */
9167
9225
  operatorInfo?: IGroupMemberInfo;
9168
9226
  /**
@@ -9194,9 +9252,10 @@ interface IGroupMemberInfoChanged {
9194
9252
  */
9195
9253
  groupId: string;
9196
9254
  /**
9197
- * 操作人信息
9255
+ * 操作人信息。通过 Server API 操作时可能为空
9256
+ * @description 5.44.0 版本开始,该字段声明为可选,实际场景中可能存在该字段为空的情况
9198
9257
  */
9199
- operatorInfo: IGroupMemberInfo;
9258
+ operatorInfo?: IGroupMemberInfo;
9200
9259
  /**
9201
9260
  * 变更的群成员资料列表
9202
9261
  */
@@ -9213,9 +9272,10 @@ interface IGroupMemberInfoChanged {
9213
9272
  */
9214
9273
  interface IGroupInfoChanged {
9215
9274
  /**
9216
- * 操作用户信息
9275
+ * 操作人信息。通过 Server API 操作时可能为空
9276
+ * @description 5.44.0 版本开始,该字段声明为可选,实际场景中可能存在该字段为空的情况
9217
9277
  */
9218
- operatorInfo: IGroupMemberInfo;
9278
+ operatorInfo?: IGroupMemberInfo;
9219
9279
  /**
9220
9280
  * 变更的群组信息,仅包含变更字段
9221
9281
  * @deprecated 从 5.14.0 版本开始,建议使用 `changedGroupInfo` 字段替代
@@ -9591,9 +9651,15 @@ declare type IGetConversationListByTimestampParams = {
9591
9651
  */
9592
9652
  topPriority?: boolean;
9593
9653
  /**
9594
- * 会话类型,值为空或长度为 0 时,获取全部会话类型
9654
+ * 会话类型,值为空或长度为 0 时,获取全部会话类型。
9655
+ * * Web 端仅在开启“会话列表支持超级群“功能后有效。
9595
9656
  */
9596
9657
  conversationTypes?: ConversationType[];
9658
+ /**
9659
+ * 会话查询未读数过滤器,默认值为 ConversationUnreadCountFilter.ALL,仅对 Electron 平台有效。
9660
+ * @since 5.44.0
9661
+ */
9662
+ unreadCountFilter?: ConversationUnreadCountFilter;
9597
9663
  };
9598
9664
 
9599
9665
  /** 已读回执用户信息 */
@@ -10650,13 +10716,6 @@ interface IIPCMethods {
10650
10716
  * @param conversationTypes 会话类型
10651
10717
  */
10652
10718
  getUnreadConversationList(includeUG: boolean, conversationTypes?: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
10653
- /**
10654
- * 分页获取会话列表,V2-Adapter Electron 独有功能,Web 平台不支持
10655
- * @param index 分页索引
10656
- * @param limit 分页数量
10657
- * @returns 会话列表
10658
- */
10659
- getConversationListByPageIndex(index: number, limit: number): Promise<RCResult<IReceivedConversation[]>>;
10660
10719
  /**
10661
10720
  * 获取全部本地会话列表,仅支持 Electron 平台
10662
10721
  * @param includeUG 会话列表支持超级群开关
@@ -11043,6 +11102,26 @@ interface IRobotInfo {
11043
11102
  updateTime: number;
11044
11103
  }
11045
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
+
11046
11125
  declare type IErrorKeys = {
11047
11126
  /**
11048
11127
  * 更新错误的 key 数组
@@ -11866,6 +11945,12 @@ declare class PluginContext {
11866
11945
  * 获取统计地址
11867
11946
  */
11868
11947
  getStatsUrlList(): Promise<RCResult<string[]>>;
11948
+ /**
11949
+ * 注册自定义信令监听器,不支持 Electron 平台
11950
+ * @param signalNames - 需要监听处理的下行信令
11951
+ * @param handler - 回调函数
11952
+ */
11953
+ registerCustomSignalHandler(signalNames: string[], handler: ICustomSignalHandler): void;
11869
11954
  }
11870
11955
 
11871
11956
  interface IPluginGenerator<API, InitOption> {
@@ -12520,6 +12605,12 @@ declare class APIContext {
12520
12605
  * @param options
12521
12606
  */
12522
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;
12523
12614
  /**
12524
12615
  * 获取应用设置
12525
12616
  * @since 5.22.0
@@ -12772,13 +12863,6 @@ declare class APIContext {
12772
12863
  getTopConversationList(conversationTypes?: ConversationType[], channelId?: string): Promise<RCResult<IReceivedConversation[]>>;
12773
12864
  getUnreadConversationList(conversationTypes?: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
12774
12865
  getBlockedConversationList(): Promise<RCResult<IReceivedConversation[]>>;
12775
- /**
12776
- * 分页获取会话列表,V2-Adapter Electron 独有功能,Web 平台不支持
12777
- * @param index 分页索引
12778
- * @param limit 分页数量
12779
- * @returns 会话列表
12780
- */
12781
- getConversationListByPageIndex(index: number, limit: number): Promise<RCResult<IReceivedConversation[]>>;
12782
12866
  /**
12783
12867
  * 获取全部本地会话列表
12784
12868
  * @param channelId 组织 ID,用于多组织场景,不传则获取全部组织会话
@@ -13425,7 +13509,7 @@ declare class RTCPluginContext extends PluginContext {
13425
13509
  /**
13426
13510
  * 会话聊天模块
13427
13511
  */
13428
- 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'> {
13429
13513
  /** 超级群是否已同步完成 */
13430
13514
  get ugSynced(): boolean;
13431
13515
  getRealtimeConversations(count: number, startTime: number, order: 0 | 1): Promise<RCResult<IReceivedConversation[]>>;
@@ -13596,4 +13680,4 @@ declare const assert: (key: string, value: any, validator: AssertRules | ((value
13596
13680
  */
13597
13681
  declare const validate: (key: string, value: any, validator: AssertRules | ((value?: any) => boolean), required?: boolean) => boolean;
13598
13682
 
13599
- 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, 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 };