@rongcloud/engine 5.13.0-alpha.1 → 5.14.0-c-test-alpha-1

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
@@ -1840,6 +1840,11 @@ declare enum ErrorCode {
1840
1840
  * 开发者接口调用时传入的 MessageExpansion 非法
1841
1841
  */
1842
1842
  INVALID_PARAMETER_MESSAGE_EXPANSION = 34220,
1843
+ /**
1844
+ * 34224
1845
+ * 开发者调用接口传入的时间(字符串)参数非法。可能原因:开发者调用接口传入的时间(字符串)参数类型不是字符串或者字符串为空。
1846
+ */
1847
+ INVALID_PARAMETER_TIMESTRING = 34224,
1843
1848
  /**
1844
1849
  * 34225
1845
1850
  * RCConversationIdentifier 参数非法。 可能原因:开发者调用接口传入的 RCConversationIdentifier 参数类型不对或者参数为空
@@ -2012,6 +2017,11 @@ declare enum ErrorCode {
2012
2017
  * 参数 target id 列表非法
2013
2018
  */
2014
2019
  INVALID_PARAMETER_TARGETID_LIST = 34282,
2020
+ /**
2021
+ * 34283
2022
+ * 参数 span minutes 非法
2023
+ */
2024
+ INVALID_PARAMETER_SPAN_MINUTES = 34283,
2015
2025
  /**
2016
2026
  * 34284
2017
2027
  * 参数 ConversationType 列表非法
@@ -2461,6 +2471,24 @@ declare enum ErrorCode {
2461
2471
  * 开发者调用时传入的 pushData 无效
2462
2472
  */
2463
2473
  INVALID_PARAMETER_PUSH_DATA = 35050,
2474
+ /**
2475
+ * 35051
2476
+ * dns 代理超时
2477
+ * @since 5.12.2
2478
+ */
2479
+ DNS_PROXY_TIMEOUT = 35051,
2480
+ /**
2481
+ * 35052
2482
+ * dns 代理错误
2483
+ * @since 5.12.2
2484
+ */
2485
+ DNS_PROXY_ERROR = 35052,
2486
+ /**
2487
+ * 35053
2488
+ * dns 代理数据解构错误
2489
+ * @since 5.12.2
2490
+ */
2491
+ DNS_PROXY_DATA_DESTRUCTUR_ERROR = 35053,
2464
2492
  /**
2465
2493
  * 35054
2466
2494
  * 传入的 disableUpdateLastMessage 参数无效。在会话类型为 ULTRA GROUP 时,该字段不允许设置为 true
@@ -3133,6 +3161,24 @@ declare enum InterruptionLevel {
3133
3161
  CRITICAL = "critical"
3134
3162
  }
3135
3163
 
3164
+ /**
3165
+ * 全局免打扰级别定义
3166
+ */
3167
+ declare enum PushNotificationQuietHoursLevel {
3168
+ /**
3169
+ * 未设置(向上查询群或者APP级别设置),存量数据中 0 表示未设置
3170
+ */
3171
+ PUSH_NOTIFICATION_QUIET_HOURS_LEVEL_DEFAULT = 0,
3172
+ /**
3173
+ * 群聊超级群仅@消息通知,单聊代表消息不通知
3174
+ */
3175
+ PUSH_NOTIFICATION_QUIET_HOURS_LEVEL_MENTION_MESSAGE = 1,
3176
+ /**
3177
+ * 消息通知被屏蔽,即不接收消息通知
3178
+ */
3179
+ PUSH_NOTIFICATION_QUIET_HOURS_LEVEL_BLOCKED = 5
3180
+ }
3181
+
3136
3182
  /**
3137
3183
  * 网络状态枚举
3138
3184
  */
@@ -4485,7 +4531,7 @@ interface IReceivedConversation {
4485
4531
  */
4486
4532
  unreadMentionedMeCount?: number;
4487
4533
  /**
4488
- * 会话操作时间,暂仅 Electron 平台支持
4534
+ * 会话操作时间,暂不支持超级群会话
4489
4535
  */
4490
4536
  operationTime?: number;
4491
4537
  /**
@@ -5870,10 +5916,90 @@ declare const ok: typeof RCResult.ok;
5870
5916
  declare const unknown: typeof RCResult.unknown;
5871
5917
  declare const fail: typeof RCResult.fail;
5872
5918
 
5919
+ declare class Validator {
5920
+ protected readonly _apiName: string;
5921
+ /**
5922
+ * @param apiName 记录方法名
5923
+ * @returns
5924
+ */
5925
+ static create(apiName: string): Validator;
5926
+ /** 验证结果是否有效 */
5927
+ private _isValid;
5928
+ /** 当结果无效时定义错误码 */
5929
+ private _code;
5930
+ private _errmsg;
5931
+ /** 检测结果失败时定义错误码及错误信息,整个检测过程中仅第一次调用生效 */
5932
+ fail(code: number, msg?: string): Validator;
5933
+ /** 获取检测结果 */
5934
+ result(): RCResult;
5935
+ /**
5936
+ * @internal
5937
+ * @param _apiName
5938
+ */
5939
+ constructor(_apiName: string);
5940
+ /**
5941
+ * 验证参数是否合规
5942
+ * @param key
5943
+ * @param value
5944
+ * @param handler
5945
+ * @param required
5946
+ */
5947
+ validate(key: string, value: any, handler: (value: any) => boolean, required?: boolean): Validator;
5948
+ /**
5949
+ * 验证参数是否合规,不合规时抛出 CMSYError
5950
+ * @param key - 参数名,当抛出异常时用于提供详细错误信息
5951
+ * @param value - 待验证数据
5952
+ * @param handler - 验证方法,返回一个 boolean
5953
+ * @param required - 待验证参数是否未必填项
5954
+ * @throws CMSYError
5955
+ */
5956
+ assert(key: string, value: any, handler: (value: any) => boolean, required?: boolean): Validator;
5957
+ isString(key: string, value: unknown, required?: boolean): Validator;
5958
+ /** string 类型检查 */
5959
+ assertString(key: string, value: unknown, required?: boolean): Validator;
5960
+ /** 长度不为 0 的有效字符串 */
5961
+ isNotEmptyString(key: string, value: unknown, required?: boolean): Validator;
5962
+ assertNotEmptyString(key: string, value: unknown, required?: boolean): Validator;
5963
+ isLimitedString(key: string, value: unknown, minLength: number, maxLength: number, required?: boolean): Validator;
5964
+ /** 限定长度字符串检查,检查失败时抛出 CMSYError */
5965
+ assertLimitedString(key: string, value: unknown, minLength: number, maxLength: number, required?: boolean): Validator;
5966
+ isBoolean(key: string, value: unknown, required?: boolean): Validator;
5967
+ /** 布尔值类型检查 */
5968
+ assertBoolean(key: string, value: unknown, required?: boolean): Validator;
5969
+ isNumber(key: string, value: unknown, required?: boolean): Validator;
5970
+ /** Number 类型检查 */
5971
+ assertNumber(key: string, value: unknown, required?: boolean): Validator;
5972
+ isLimitedNumber(key: string, value: unknown, min: number, max: number, required?: boolean): Validator;
5973
+ /** 检查限定范围数字 */
5974
+ assertLimitedNumber(key: string, value: unknown, min: number, max: number, required?: boolean): Validator;
5975
+ isInteger(key: string, value: unknown, required?: boolean): Validator;
5976
+ /** 整数检查 */
5977
+ assertInteger(key: string, value: unknown, required?: boolean): Validator;
5978
+ isLimitedInteger(key: string, value: unknown, min: number, max: number, required?: boolean): Validator;
5979
+ /** 有限整数检查 */
5980
+ assertLimitedInteger(key: string, value: unknown, min: number, max: number, required?: boolean): Validator;
5981
+ isArray(key: string, value: unknown, required?: boolean): Validator;
5982
+ /** Array 类型检查 */
5983
+ assertArray(key: string, value: unknown, required?: boolean): Validator;
5984
+ isLimitedArray(key: string, value: unknown, maxLength: number, required?: boolean, minLength?: number): Validator;
5985
+ /** 检查是否为限定长度的数组 */
5986
+ assertLimitedArray(key: string, value: unknown, maxLength: number, required?: boolean, minLength?: number): Validator;
5987
+ isTypedArray(key: string, value: unknown, itemValidator: (item: any) => boolean, required?: boolean): Validator;
5988
+ /** 类型化数组检查,除数组类型检查外,增加对每个元素的检查 */
5989
+ assertTypedArray(key: string, value: unknown, itemValidator: (item: any) => boolean, required?: boolean): Validator;
5990
+ isLimitedTypedArray(key: string, value: unknown, maxLength: number, itemValidator: (item: any) => boolean, required?: boolean, minLength?: number): Validator;
5991
+ /** 检查是否为限定长度的类型化数组 */
5992
+ assertLimitedTypedArray(key: string, value: unknown, maxLength: number, itemValidator: (item: any) => boolean, required?: boolean, minLength?: number): Validator;
5993
+ isObject(key: string, value: unknown, required?: boolean): Validator;
5994
+ /** Object 类型检查 */
5995
+ assertObject(key: string, value: unknown, required?: boolean): Validator;
5996
+ isValueOf<T extends Object>(key: string, value: unknown, target: T, required?: boolean): Validator;
5997
+ assertValueOf<T extends Object>(key: string, value: unknown, target: T, required?: boolean): Validator;
5998
+ }
5999
+
5873
6000
  /**
5874
6001
  * 异步任务结果结构
5875
6002
  * @category Interface
5876
- * @deprecated
5877
6003
  */
5878
6004
  declare type IAsyncRes<T = void> = Pick<RCResult<T>, 'code' | 'data'> & {
5879
6005
  msg?: string;
@@ -5883,7 +6009,6 @@ declare type IAsyncRes<T = void> = Pick<RCResult<T>, 'code' | 'data'> & {
5883
6009
  * @description
5884
6010
  * 通过 `Promise.resolve` 来处理预期内的异常,进而通过 Uncatch Promise Error 暴露预期外的异常
5885
6011
  * @category Type
5886
- * @deprecated
5887
6012
  */
5888
6013
  declare type IPromiseResult<T = void> = Promise<IAsyncRes<T>>;
5889
6014
 
@@ -6351,16 +6476,25 @@ interface ISubscribeStatusDetail {
6351
6476
  platform: PlatformInfo;
6352
6477
  }
6353
6478
 
6354
- /**
6479
+ /** [EN]
6480
+ * TODO(translate)
6481
+ */
6482
+ /** [ZH]
6355
6483
  * 好友关系
6356
6484
  * @category Interface
6357
6485
  * @since 5.12.0
6358
6486
  */
6359
6487
  interface IFriendRelationInfo {
6360
- /**
6488
+ /** [EN]
6489
+ * TODO(translate)
6490
+ */
6491
+ /** [ZH]
6361
6492
  * 用户 ID
6362
6493
  */
6363
6494
  userId: string;
6495
+ /** [EN]
6496
+ * TODO(translate)
6497
+ */
6364
6498
  /**
6365
6499
  * 好友关系
6366
6500
  */
@@ -6918,13 +7052,23 @@ interface IGroupInfoChanged {
6918
7052
  */
6919
7053
  operatorInfo: IGroupMemberInfo;
6920
7054
  /**
6921
- * 群组信息
7055
+ * 变更的群组信息,仅包含变更字段
7056
+ * @deprecated - 从 5.14.0 版本开始,建议使用 `changedGroupInfo` 字段替代
6922
7057
  */
6923
7058
  groupInfo: IGroupInfo;
7059
+ /**
7060
+ * 变更的群组信息,仅包含变更字段
7061
+ */
7062
+ changedGroupInfo: IGroupInfo;
6924
7063
  /**
6925
7064
  * 操作时间
6926
7065
  */
6927
7066
  operationTime: number;
7067
+ /**
7068
+ * 全量群组信息
7069
+ * @since 5.14.0
7070
+ */
7071
+ fullGroupInfo: IGroupInfo;
6928
7072
  }
6929
7073
  /**
6930
7074
  * 群组备注更新信息
@@ -7004,6 +7148,25 @@ interface IServerUserSetting {
7004
7148
  version: number;
7005
7149
  }
7006
7150
 
7151
+ interface INotificationQuietHoursSetting {
7152
+ /**
7153
+ * 开始时间,精确到秒。格式为 HH:MM:SS,例如 01:31:17。
7154
+ */
7155
+ startTime: string;
7156
+ /**
7157
+ * 免打扰时间窗口大小,单位为分钟。范围为 [1-1439]。
7158
+ */
7159
+ spanMinutes: number;
7160
+ /**
7161
+ * 免打扰级别配置
7162
+ */
7163
+ level: PushNotificationQuietHoursLevel;
7164
+ /**
7165
+ * 时区配置,默认为 UTC 时间
7166
+ */
7167
+ timezone?: string;
7168
+ }
7169
+
7007
7170
  /**
7008
7171
  * 进程内缓存数据
7009
7172
  */
@@ -7638,6 +7801,9 @@ interface IEngine {
7638
7801
  searchFriendsInfo(nickname: string): Promise<IAsyncRes<IFriendInfo[]>>;
7639
7802
  setFriendAddPermission(permission: FriendAddPermission): Promise<IAsyncRes<void>>;
7640
7803
  getFriendAddPermission(): Promise<IAsyncRes<FriendAddPermission>>;
7804
+ setNotificationQuietHoursWithSetting(opts: INotificationQuietHoursSetting): Promise<RCResult>;
7805
+ removeNotificationQuietHoursSetting(): Promise<RCResult>;
7806
+ getNotificationQuietHoursSetting(): Promise<RCResult<INotificationQuietHoursSetting>>;
7641
7807
  rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<IAsyncRes<any>>;
7642
7808
  rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: any): Promise<{
7643
7809
  code: ErrorCode;
@@ -9931,6 +10097,9 @@ declare class APIContext {
9931
10097
  * 批量查询实时会话未读数
9932
10098
  */
9933
10099
  getRealtimeConUnreadCounts(conversations: IConversationIdentifier[]): Promise<IAsyncRes<IConversationUnreadCount[]>>;
10100
+ setNotificationQuietHoursWithSetting(opts: INotificationQuietHoursSetting): Promise<RCResult>;
10101
+ removeNotificationQuietHoursSetting(): Promise<RCResult>;
10102
+ getNotificationQuietHoursSetting(): Promise<RCResult<INotificationQuietHoursSetting>>;
9934
10103
  }
9935
10104
 
9936
10105
  declare class RTCPluginContext extends PluginContext {
@@ -11058,6 +11227,9 @@ declare abstract class AEngine {
11058
11227
  abstract clearRealtimeConUnreadCount(conversation: IConversationIdentifier): Promise<IAsyncRes>;
11059
11228
  abstract removeRealtimeConversations(conversations: IConversationIdentifier[]): Promise<IAsyncRes>;
11060
11229
  abstract getRealtimeConUnreadCounts(conversations: IConversationIdentifier[]): Promise<IAsyncRes<IConversationUnreadCount[]>>;
11230
+ abstract setNotificationQuietHoursWithSetting(opts: INotificationQuietHoursSetting): Promise<RCResult>;
11231
+ abstract removeNotificationQuietHoursSetting(): Promise<RCResult>;
11232
+ abstract getNotificationQuietHoursSetting(): Promise<RCResult<INotificationQuietHoursSetting>>;
11061
11233
  }
11062
11234
 
11063
11235
  /**
@@ -11349,4 +11521,4 @@ declare class AppStorage {
11349
11521
  }): void;
11350
11522
  }
11351
11523
 
11352
- export { AEngine, APIContext, 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, 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, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEngine, IEngineWatcher, 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, IOSInfo, IOperateInfo, IOperateStatusNotify, IOperateSummary, IPagingQueryOption, IPagingQueryResult, IPluginGenerator, IPrivateReadReceiptData, IProcessCache, IProcessCode, IProcessInfo, IPromiseResult, IProxy, IPushConfig, IQuitGroupConfig, IRTCInnerListener, IRTCRoomBindOption, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRuntime, ISendMsgOptions, IServerConversationStatus, IServerGroupBaseInfo, IServerUserSetting, ISetConversationStatusOptions, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IWatcher, IiOSPushConfig, InnerRTCKeyMaps, InterruptionLevel, ItypingStateListener, 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, QueryFriendsDirectionType, RCConnectionStatus, RCResult, RTCApiType, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, SentStatus, SubscribeOperationType, SubscribeType, SuspendablePromise, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, ValidatorManage, VersionManage, assert, fail, fixUrlProtocol, forEach, getUUID, getUUID22, httpRequest, isArray, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, logger, map, notEmptyString, ok, runtime, transformReceivedStatusFlag, transformReceivedStatusInfo, unknown, usingCppEngine, validate };
11524
+ export { AEngine, APIContext, 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, 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, IDeletedExpansion, IDeliveredUser, IDownloadAuth, IEngine, IEngineWatcher, 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, IRTCRoomBindOption, IReadReceiptData, IReadReceiptInfo, IReadReceiptResponseInfo, IRecallMsgOptions, IReceivedConversation, IReceivedConversationByTag, IReceivedMessage, IReceivedStatusInfo, IRemoveChatRoomEntries, IRemoveChatRoomEntry, IRemoveChatroomEntries, IRemoveChatroomEntry, IRequest, IResponse, IRuntime, ISendMsgOptions, IServerConversationStatus, IServerGroupBaseInfo, IServerUserSetting, ISetConversationStatusOptions, ISubscribeRelationInfo, ISubscribeStatusDetail, ISubscribeUserStatusInfo, ISyncReadStatusData, ITagInfo, ITagListener, ITagParam, ITypingMessage, ITypingUser, IUltraChannelChangeInfo, IUltraChannelDeleteInfo, IUltraChannelUserKickedInfo, IUltraExMsgOptions, IUltraGroupConversation, IUltraGroupOption, IUltraGroupUnreadInfo, IUltraGroupUnreadMentionedOption, IUltraModifyMsgOptions, IUltraMsgQueryOptions, IUltraUnreadMsg, IUpdateItem, IUpdatedConversation, IUpdatedExpansion, IUploadAuth, IUserGroupChangeData, IUserGroupStatusInfo, IUserProfile, IUserProfileInfo, IWatcher, IiOSPushConfig, InnerRTCKeyMaps, InterruptionLevel, ItypingStateListener, 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, RTCMode, RTCPluginContext, ReceivedStatus, SEND_MESSAGE_TYPE_OPTION, SentStatus, SubscribeOperationType, SubscribeType, SuspendablePromise, UPLOAD_FILE_CHUNK_SIZE, UUId, UltraGroupChannelChangeType, UltraGroupChannelType, UploadMethod, UserProfileVisibility, Validator, ValidatorManage, VersionManage, assert, fail, fixUrlProtocol, forEach, getUUID, getUUID22, httpRequest, isArray, isHttpUrl, isInteger, isLimitedArray, isLimitedString, isNumber, isObject, isString, isUndefined, isValidConversation, isValidConversationType, isValidEnum, isValidFileType, isValidGroupId, isValidNotificationLevel, isValidTargetId, logger, map, notEmptyString, ok, runtime, transformReceivedStatusFlag, transformReceivedStatusInfo, unknown, usingCppEngine, validate };