@rongcloud/engine 5.30.0-c-tmp-alpha.1 → 5.30.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
@@ -424,6 +424,8 @@ declare const Log: {
424
424
  readonly A_CLEAR_EDITED_MSG_DRAFT_R: "A-clear_edited_msg_draft-R";
425
425
  readonly A_GET_UNREAD_MENTION_ME_CONVERSATION_LIST_T: "A-get_unread_mention_me_conversation_list-T";
426
426
  readonly A_GET_UNREAD_MENTION_ME_CONVERSATION_LIST_R: "A-get_unread_mention_me_conversation_list-R";
427
+ readonly A_GET_USER_PROFILES_T: "A-get_user_profiles-T";
428
+ readonly A_GET_USER_PROFILES_R: "A-get_user_profiles-R";
427
429
  };
428
430
 
429
431
  /** [EN]
@@ -4905,7 +4907,6 @@ interface IHarmonyOSPushConfig {
4905
4907
  /** [EN]
4906
4908
  * Push notification configuration
4907
4909
  * @category interface
4908
-
4909
4910
  */
4910
4911
  /**
4911
4912
  * 推送配置
@@ -5248,7 +5249,6 @@ interface IUpdateItem {
5248
5249
  /** [EN]
5249
5250
  * Data structure of conversations pulled from the server
5250
5251
  * @category Interface
5251
-
5252
5252
  */
5253
5253
  /**
5254
5254
  * 从服务器拉取到的会话数据结构
@@ -5475,18 +5475,15 @@ interface IReceivedConversationByTag extends IReceivedConversation {
5475
5475
  * @deprecated
5476
5476
  */
5477
5477
  declare type IUltraGroupConversation = IReceivedConversation;
5478
- /** [EN]
5479
- * Conversation update information
5480
- * @category Interface
5481
- */
5482
5478
  /**
5483
5479
  * 会话更新信息
5484
5480
  * @category Interface
5485
5481
  */
5486
- interface IUpdatedConversation extends IReceivedConversation {
5487
- /** [EN]
5488
- * Updates
5482
+ interface IUpdatedConversation {
5483
+ /**
5484
+ * 会话数据
5489
5485
  */
5486
+ conversation: IReceivedConversation;
5490
5487
  /**
5491
5488
  * 更新项
5492
5489
  */
@@ -6252,8 +6249,8 @@ interface IReceivedMessage<T = any> {
6252
6249
  */
6253
6250
  /**
6254
6251
  * 用于判断消息是否被修改过,仅获取历史消息接口时有效;接收在线或离线消息时无效。
6255
- * * 5.26.0 版本之前,仅支持超级群历史消息
6256
- * * 5.26.0 版本开始,增加支持单聊、群聊历史消息
6252
+ * * 5.26.0 版本之前,仅支持超级群历史消息,从 5.26.0 版本开始,增加支持单聊、群聊历史消息
6253
+ * * 5.28.1 版本开始,支持 Electron 平台
6257
6254
  */
6258
6255
  isModifyMessage?: boolean;
6259
6256
  /** [EN]
@@ -6340,7 +6337,6 @@ interface IUserProfile {
6340
6337
  /** [EN]
6341
6338
  * Operation details
6342
6339
  * @category Interface
6343
-
6344
6340
  */
6345
6341
  /**
6346
6342
  * 操作明细信息
@@ -6656,7 +6652,6 @@ interface InnerInsertMessageParams {
6656
6652
  /** [EN]
6657
6653
  * Insert message structure
6658
6654
  * @category Interface
6659
-
6660
6655
  */
6661
6656
  /**
6662
6657
  * 插入消息结构
@@ -7954,9 +7949,9 @@ declare const ReferenceMessageStatus: {
7954
7949
  * TODO(Translation)
7955
7950
  */
7956
7951
  /**
7957
- * 状态非法,比如:引用的消息被修改。
7952
+ * 引用的消息被修改。
7958
7953
  */
7959
- INVALID: number;
7954
+ MODIFIED: number;
7960
7955
  /** [EN]
7961
7956
  * TODO(Translation)
7962
7957
  */
@@ -8023,7 +8018,7 @@ interface IReferenceMessageContent extends IExtraDataKeyInMessage, IUserExtraKey
8023
8018
  /**
8024
8019
  * 引用消息状态
8025
8020
  * @since 5.26.0
8026
- * @description 该属性仅 Electron 平台支持,Web 不支持该属性
8021
+ * @description Web 该属性仅在刷新引用消息回调数据中有效,其他情况下无效。
8027
8022
  */
8028
8023
  referMsgStatus?: ReferenceMessageStatus;
8029
8024
  }
@@ -8384,7 +8379,6 @@ interface IChatroomNotifyBlock {
8384
8379
  /** [EN]
8385
8380
  * @category Interface
8386
8381
  * @since 5.7.9
8387
-
8388
8382
  */
8389
8383
  /**
8390
8384
  * @category Interface
@@ -9488,8 +9482,9 @@ declare class Validator {
9488
9482
  * 当验证结果为失败时,设置错误码和错误信息;若验证结果未失败,则不生效
9489
9483
  * @param code 错误码
9490
9484
  * @param msg 错误信息
9485
+ * @param coverCode 是否覆盖错误码,默认为 false,即仅在失败后赋值一次,避免未失败时赋值,避免修改赋值
9491
9486
  */
9492
- fail(code: number, msg?: string): Validator;
9487
+ fail(code: number, msg?: string, coverCode?: boolean): Validator;
9493
9488
  /**
9494
9489
  * 设置验证结果为失败,并设置错误码和错误信息
9495
9490
  * @param code 错误码
@@ -9529,6 +9524,7 @@ declare class Validator {
9529
9524
  isString(key: string, value: unknown, required?: boolean): Validator;
9530
9525
  /** string 类型检查 */
9531
9526
  assertString(key: string, value: unknown, required?: boolean): Validator;
9527
+ isHttpUrl(key: string, value: unknown, required?: boolean): Validator;
9532
9528
  /** 长度不为 0 的有效字符串 */
9533
9529
  isNotEmptyString(key: string, value: unknown, required?: boolean): Validator;
9534
9530
  assertNotEmptyString(key: string, value: unknown, required?: boolean): Validator;
@@ -10178,7 +10174,6 @@ interface ISubscribeUserStatusInfo {
10178
10174
  * Online status information
10179
10175
  * @category Interface
10180
10176
  * @since 5.9.8
10181
-
10182
10177
  */
10183
10178
  /**
10184
10179
  * 在线状态信息
@@ -10831,7 +10826,6 @@ interface IGroupInfo extends IGroupInfoOption {
10831
10826
  * Configuration for being kicked out of a group or voluntarily leaving a group
10832
10827
  * @category Interface
10833
10828
  * @since 5.12.0
10834
-
10835
10829
  */
10836
10830
  /**
10837
10831
  * 踢出群组或者主动退群配置
@@ -11027,7 +11021,6 @@ interface IGroupApplicationInfo {
11027
11021
  * Group application list
11028
11022
  * @category Interface
11029
11023
  * @since 5.12.0
11030
-
11031
11024
  */
11032
11025
  /**
11033
11026
  * 群申请列表
@@ -11087,7 +11080,6 @@ interface IGroupFollowsList {
11087
11080
  * Users I follow information
11088
11081
  * @category Interface
11089
11082
  * @since 5.12.0
11090
-
11091
11083
  */
11092
11084
  /**
11093
11085
  * 特别关注用户信息
@@ -11142,7 +11134,6 @@ interface IGroupFollowsUserInfo {
11142
11134
  * Group operation information
11143
11135
  * @category Interface
11144
11136
  * @since 5.12.0
11145
-
11146
11137
  */
11147
11138
  /**
11148
11139
  * 群组操作信息
@@ -11241,7 +11232,6 @@ interface IGroupMemberInfoChanged {
11241
11232
  * Group profile change callback
11242
11233
  * @category Interface
11243
11234
  * @since 5.12.0
11244
-
11245
11235
  */
11246
11236
  /**
11247
11237
  * 群组资料变更回调
@@ -11259,7 +11249,6 @@ interface IGroupInfoChanged {
11259
11249
  /** [EN]
11260
11250
  * Changed group information, only includes the modified fields
11261
11251
  * @deprecated - Starting from version 5.14.0, it is recommended to use the `changedGroupInfo` field instead
11262
-
11263
11252
  */
11264
11253
  /**
11265
11254
  * 变更的群组信息,仅包含变更字段
@@ -11294,7 +11283,6 @@ interface IGroupInfoChanged {
11294
11283
  * Group alias update information
11295
11284
  * @category Interface
11296
11285
  * @since 5.12.0
11297
-
11298
11286
  */
11299
11287
  /**
11300
11288
  * 群组备注更新信息
@@ -12148,7 +12136,7 @@ interface IIPCMethods {
12148
12136
  */
12149
12137
  getSubscribeUserStatus(subscribeType: SubscribeType, userIds: string[]): Promise<RCResult<ISubscribeUserStatusInfo[]>>;
12150
12138
  updateMyUserProfile(profile: IUserProfileInfo): Promise<IAsyncRes<IUpdateMyProfileFail>>;
12151
- getUserProfiles(userIds: string[]): Promise<IAsyncRes<IUserProfileInfo[]>>;
12139
+ getUserProfiles(userIds: string[]): Promise<RCResult<IUserProfileInfo[]>>;
12152
12140
  getMyUserProfile(): Promise<IAsyncRes<IUserProfileInfo>>;
12153
12141
  updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<IAsyncRes>;
12154
12142
  getMyUserProfileVisibility(): Promise<IAsyncRes<UserProfileVisibility>>;
@@ -13640,10 +13628,9 @@ declare class EventEmitter {
13640
13628
  }
13641
13629
 
13642
13630
  /** [EN]
13643
- * This definition is deprecated. Use `IRemoveChatroomEntries` instead.
13644
- * @deprecated
13645
- * @category Type
13646
-
13631
+ * This definition is deprecated. Use `IRemoveChatroomEntries` instead.
13632
+ * @deprecated
13633
+ * @category Type
13647
13634
  */
13648
13635
  /**
13649
13636
  * 定义已废弃,请使用 `IRemoveChatroomEntries` 替换
@@ -13652,7 +13639,7 @@ declare class EventEmitter {
13652
13639
  */
13653
13640
  declare type IRemoveChatRoomEntries = IRemoveChatroomEntries;
13654
13641
  /** [EN]
13655
- * This definition is deprecated. Please use `IChatroomEntry` instead.\n * @category Type\n * @deprecated
13642
+ * This definition is deprecated. Please use `IChatroomEntry` instead.\n * @category Type\n * @deprecated
13656
13643
  */
13657
13644
  /**
13658
13645
  * 定义已废弃,请使用 `IChatroomEntry` 替换
@@ -14504,6 +14491,7 @@ declare class APIContext {
14504
14491
  setPushConfig(config: IAppPushConfig): void;
14505
14492
  getCurrentUserId(): string;
14506
14493
  getConnectionStatus(): RCConnectionStatus;
14494
+ private _validateUserProfile;
14507
14495
  /** 高阶函数,生成一个验证方法,验证是否处于连接中状态,并在连接状态可用时返回导航数据 */
14508
14496
  get validateConnected(): () => RCResult<INaviInfo>;
14509
14497
  /**
@@ -14930,7 +14918,7 @@ declare class APIContext {
14930
14918
  getSubscribeUserStatus(subscribeType: SubscribeType, userIds: string[]): Promise<RCResult<ISubscribeUserStatusInfo[]>>;
14931
14919
  getSubscribeUsersOnlineStatus(userIds: string[]): Promise<RCResult<ISubscribeUserOnlineStatus[]>>;
14932
14920
  updateMyUserProfile(profile: IUserProfileInfo): Promise<IAsyncRes<IUpdateMyProfileFail>>;
14933
- getUserProfiles(userIds: string[]): Promise<IAsyncRes<IUserProfileInfo[]>>;
14921
+ getUserProfiles(userIds: string[]): Promise<RCResult<IUserProfileInfo[]>>;
14934
14922
  getMyUserProfile(): Promise<IAsyncRes<IUserProfileInfo>>;
14935
14923
  updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<IAsyncRes>;
14936
14924
  getMyUserProfileVisibility(): Promise<IAsyncRes<UserProfileVisibility>>;
@@ -15397,7 +15385,7 @@ declare class RTCPluginContext extends PluginContext {
15397
15385
  */
15398
15386
  declare type IUserSettingsModule = Pick<IIPCMethods, 'setTranslationLanguage' | 'getTranslationLanguage' | 'setAutoTranslateEnabled' | 'getAutoTranslateEnabled'>;
15399
15387
 
15400
- declare type IIPCMethodsInEngine = Pick<IIPCMethods, 'searchMessagesWithParams' | 'createTag' | 'removeTag' | 'updateTag' | 'getTagList' | 'translateWithParams' | 'getFileUrl' | 'saveTextMessageDraft' | 'getTextMessageDraft' | 'clearTextMessageDraft' | 'getHistoryMessage' | 'clearLocalMessages' | 'deleteLocalMessages' | 'deleteLocalMessagesByTimestamp' | 'batchClearLocalMessagesByTimestamp' | 'insertMessage' | 'batchInsertMessage' | 'setMessageContent' | 'getLocalMessageCount' | 'recallMsg' | 'getSubscribeUsersOnlineStatus' | 'getSubscribeUserStatus'>;
15388
+ declare type IIPCMethodsInEngine = Pick<IIPCMethods, 'searchMessagesWithParams' | 'createTag' | 'removeTag' | 'updateTag' | 'getTagList' | 'translateWithParams' | 'getFileUrl' | 'saveTextMessageDraft' | 'getTextMessageDraft' | 'clearTextMessageDraft' | 'getHistoryMessage' | 'clearLocalMessages' | 'deleteLocalMessages' | 'deleteLocalMessagesByTimestamp' | 'batchClearLocalMessagesByTimestamp' | 'insertMessage' | 'batchInsertMessage' | 'setMessageContent' | 'getLocalMessageCount' | 'recallMsg' | 'getSubscribeUsersOnlineStatus' | 'getSubscribeUserStatus' | 'getUserProfiles'>;
15401
15389
  declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContext {
15402
15390
  protected readonly rtcCodec: Codec<InnerRTCKeyMaps>;
15403
15391
  protected readonly _watcher: IEngineWatcher;
@@ -15742,7 +15730,7 @@ declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContex
15742
15730
  */
15743
15731
  abstract getSubscribeUserStatus(subscribeType: SubscribeType, userIds: string[]): Promise<RCResult<ISubscribeUserStatusInfo[]>>;
15744
15732
  abstract updateMyUserProfile(profile: IUserProfileInfo): Promise<IAsyncRes<IUpdateMyProfileFail>>;
15745
- abstract getUserProfiles(userIds: string[]): Promise<IAsyncRes<IUserProfileInfo[]>>;
15733
+ abstract getUserProfiles(userIds: string[]): Promise<RCResult<IUserProfileInfo[]>>;
15746
15734
  abstract getMyUserProfile(): Promise<IAsyncRes<IUserProfileInfo>>;
15747
15735
  abstract updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<IAsyncRes>;
15748
15736
  abstract getMyUserProfileVisibility(): Promise<IAsyncRes<UserProfileVisibility>>;
@@ -16155,4 +16143,4 @@ declare class AppStorage {
16155
16143
  }): void;
16156
16144
  }
16157
16145
 
16158
- export { APIContext, AbsCodec, AppSettings, AppStorage, AreaCode, AssertRules, BasicEngine, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationType, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, 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, 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, IConversationFilter, IConversationIdentifier, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagListener, IConversationUnreadCount, IConvertHQVoiceMessageToTextOption, IConvertSpeechToTextOption, IConvertVoiceMessageToTextOption, ICreateGroupFail, IDataHostingModule, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEnginRefreshReferenceMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetHistoryMessageOption, IGetHistoryMessageResult, IGetHistoryMessagesByTypesOption, IGetUltraGroupListOption, IGetUnreadMentionMeConversationListParams, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupNotificationMessageContent, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHQVoiceMessageContent, IHarmonyOSPushConfig, IIPCMethods, IImageMessageContent, IInformationNotificationMessageContent, IInsertMessage, ILocalTagStatus, ILocationMessageContent, ILogData, ILogger, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IModifyMessageParams, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPlatformOnlineStatus, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IReferContentInMessage, IReferContentKeyInMessage, IReferenceMessageContent, IRefreshReferenceMessageParams, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRichContentMessageContent, IRuntime, 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, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserExtraKeyInMessage, IUserExtraValueInMessage, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IUserSettingsChangedEvent, IUserSettingsModule, IVoiceMessageContent, IWatcher, IiOSPushConfig, InnerInsertMessageParams, InnerRTCKeyMaps, 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, MessageRegisterParams, MessageType, MessageTypeDescription, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, Platform, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, RCConnectionStatus, RCResult, RTCApiType, RTCJoinType, RTCMode, RTCPluginContext, ReadReceiptInfoV5, ReadReceiptResponseV5, ReadReceiptUser, ReadReceiptUsersOption, ReadReceiptUsersResult, ReceivedStatus, 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, ValidatorManage, VersionManage, assert, createLogDBProxy, fail, fixUrlProtocol, forEach, getMessageTypeDescription, getUUID, getUUID22, hasMessageTypeDescription, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidTargetId, logger, map, notEmptyArray, notEmptyObject, notEmptyString, ok, runtime, trans2IReceivedStatusInfo, trans2NotificationLevel, trans2NotificationStatus, transformReceivedStatusFlag, usingCppEngine, validate };
16146
+ export { APIContext, AbsCodec, AppSettings, AppStorage, AreaCode, AssertRules, BasicEngine, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationType, DirectionType, EnableLogL, ErrorCode, EventEmitter, FileType, 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, 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, IConversationFilter, IConversationIdentifier, IConversationOption, IConversationStateListener, IConversationTag, IConversationTagListener, IConversationUnreadCount, IConvertHQVoiceMessageToTextOption, IConvertSpeechToTextOption, IConvertVoiceMessageToTextOption, ICreateGroupFail, IDataHostingModule, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEnginRefreshReferenceMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetHistoryMessageOption, IGetHistoryMessageResult, IGetHistoryMessagesByTypesOption, IGetUltraGroupListOption, IGetUnreadMentionMeConversationListParams, IGooglePushConfig, IGroupApplicationInfo, IGroupFollowsChangedSync, IGroupFollowsList, IGroupFollowsUserInfo, IGroupInfo, IGroupInfoChanged, IGroupInfoOption, IGroupMemberInfo, IGroupMemberInfoChanged, IGroupMembers, IGroupNotificationMessageContent, IGroupOperationInfo, IGroupReadReceiptData, IGroupRemarkChangedSync, IHQVoiceMessageContent, IHarmonyOSPushConfig, IIPCMethods, IImageMessageContent, IInformationNotificationMessageContent, IInsertMessage, ILocalTagStatus, ILocationMessageContent, ILogData, ILogger, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IModifyMessageParams, INaviInfo, INetwork, INotificationQuietHoursSetting, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPlatformOnlineStatus, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCJoinedInfo, IRTCRoomBindOption, IRTCUsers, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IReferContentInMessage, IReferContentKeyInMessage, IReferenceMessageContent, IRefreshReferenceMessageParams, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRichContentMessageContent, IRuntime, 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, IUpdateMyProfileFail, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserExtraKeyInMessage, IUserExtraValueInMessage, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IUserSettingsChangedEvent, IUserSettingsModule, IVoiceMessageContent, IWatcher, IiOSPushConfig, InnerInsertMessageParams, InnerRTCKeyMaps, 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, MessageRegisterParams, MessageType, MessageTypeDescription, NotificationLevel, NotificationStatus, OnlineStatus, OperateStatus, Codec$1 as PBCodec, Platform, PluginContext, PushImportanceHonor, PushNotificationQuietHoursLevel, QueryFriendsDirectionType, 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, ValidatorManage, VersionManage, assert, createLogDBProxy, fail, fixUrlProtocol, forEach, getMessageTypeDescription, getUUID, getUUID22, hasMessageTypeDescription, httpRequest, isArray, isBoolean, isFunction, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNull, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidTargetId, logger, map, notEmptyArray, notEmptyObject, notEmptyString, ok, runtime, trans2IReceivedStatusInfo, trans2NotificationLevel, trans2NotificationStatus, transformReceivedStatusFlag, usingCppEngine, validate };