@rongcloud/engine 5.32.0-c-rtc-alpha.1 → 5.32.0-c-rtc-alpha.3
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.cjs +1 -10
- package/index.cjs.js +1 -10
- package/index.d.ts +25 -37
- package/index.esm.js +1 -10
- package/index.mjs +1 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4712,13 +4712,24 @@ declare const isValidGroupId: (value: any) => boolean;
|
|
|
4712
4712
|
declare const isValidFileType: (fileType: number) => boolean;
|
|
4713
4713
|
|
|
4714
4714
|
declare class Codec$1<T> {
|
|
4715
|
-
private
|
|
4715
|
+
#private;
|
|
4716
|
+
private readonly pbModules;
|
|
4717
|
+
constructor(
|
|
4718
|
+
/**
|
|
4719
|
+
* proto 协议描述
|
|
4720
|
+
*/
|
|
4721
|
+
desc: string);
|
|
4716
4722
|
/**
|
|
4717
|
-
*
|
|
4718
|
-
* @param
|
|
4723
|
+
* PB 数据序列化
|
|
4724
|
+
* @param pbname - PB 名称
|
|
4725
|
+
* @param params - 待序列化数据
|
|
4719
4726
|
*/
|
|
4720
|
-
constructor(desc: string);
|
|
4721
4727
|
encode<K extends keyof T>(key: K, params: T[K]): ArrayBuffer;
|
|
4728
|
+
/**
|
|
4729
|
+
* 数据反序列化,反序列化的结果为未加工的原始数据,decode 函数本身不处理 format 过程
|
|
4730
|
+
* @param pbname 待解码数据的 PB 名
|
|
4731
|
+
* @param data 待解码数据
|
|
4732
|
+
*/
|
|
4722
4733
|
decode<K extends keyof T>(pbname: K, uint8array: Uint8Array): T[K];
|
|
4723
4734
|
}
|
|
4724
4735
|
|
|
@@ -9292,12 +9303,6 @@ interface INetwork {
|
|
|
9292
9303
|
type: NetworkType;
|
|
9293
9304
|
}
|
|
9294
9305
|
|
|
9295
|
-
interface IRTCRoomInfo {
|
|
9296
|
-
roomId: string;
|
|
9297
|
-
roomData: unknown[];
|
|
9298
|
-
userCount: number;
|
|
9299
|
-
list: unknown[];
|
|
9300
|
-
}
|
|
9301
9306
|
/** @deprecated */
|
|
9302
9307
|
interface IRtcTokenData {
|
|
9303
9308
|
rtcToken: string;
|
|
@@ -12127,7 +12132,7 @@ interface IIPCMethods {
|
|
|
12127
12132
|
/**
|
|
12128
12133
|
* 断开连接
|
|
12129
12134
|
*/
|
|
12130
|
-
disconnect(closeDB?: boolean, disablePush?: boolean): Promise<
|
|
12135
|
+
disconnect(closeDB?: boolean, disablePush?: boolean): Promise<RCResult>;
|
|
12131
12136
|
/**
|
|
12132
12137
|
* 消息注册
|
|
12133
12138
|
* @description
|
|
@@ -13947,7 +13952,7 @@ declare type ModuleType<T> = {
|
|
|
13947
13952
|
* @deprecated 因该工具已向 RTC 业务暴露,因此暂时不可删除,待 RTC 迁移到新工具后删除
|
|
13948
13953
|
*/
|
|
13949
13954
|
declare class Codec<T> {
|
|
13950
|
-
private readonly
|
|
13955
|
+
private readonly pbCodec;
|
|
13951
13956
|
/** @deprecated */
|
|
13952
13957
|
constructor(pbDefined: string);
|
|
13953
13958
|
/**
|
|
@@ -13979,12 +13984,6 @@ declare class Codec<T> {
|
|
|
13979
13984
|
*/
|
|
13980
13985
|
declare type AbsCodec<T> = Codec<T>;
|
|
13981
13986
|
|
|
13982
|
-
declare const RTCPBMap: CodecPBMaps;
|
|
13983
|
-
/**
|
|
13984
|
-
* 仅限 RCCppEngine 内用于类型约束,RTCLib 内不可直接使用
|
|
13985
|
-
*/
|
|
13986
|
-
declare type InnerRTCKeyMaps = typeof RTCPBMap;
|
|
13987
|
-
|
|
13988
13987
|
declare class PluginContext {
|
|
13989
13988
|
protected readonly _context: APIContext;
|
|
13990
13989
|
constructor(_context: APIContext);
|
|
@@ -13992,7 +13991,11 @@ declare class PluginContext {
|
|
|
13992
13991
|
* 获取 context
|
|
13993
13992
|
*/
|
|
13994
13993
|
__getContext(): APIContext;
|
|
13995
|
-
/**
|
|
13994
|
+
/**
|
|
13995
|
+
* 创建 PB 编解码器,目前仅对 RTC 业务使用
|
|
13996
|
+
* @param _ 废弃参数
|
|
13997
|
+
* @param pbDesc PB 描述
|
|
13998
|
+
*/
|
|
13996
13999
|
createCodec<T extends CodecPBMaps>(_: T, pbDesc: string): Codec<T>;
|
|
13997
14000
|
createPBCodec<T>(desc: string, _?: Map<string, keyof T>): Codec$1<T>;
|
|
13998
14001
|
/**
|
|
@@ -14676,12 +14679,6 @@ declare class APIContext {
|
|
|
14676
14679
|
readonly dataHosting: DataHosting;
|
|
14677
14680
|
private _versionInfo;
|
|
14678
14681
|
private _typingInfo;
|
|
14679
|
-
/**
|
|
14680
|
-
* RTC 相关的编解码模块,用于向前兼容 RTC 旧版本的编解码,
|
|
14681
|
-
* 包括向 CppEngine 提供 RTC 业务编解码能力
|
|
14682
|
-
* @deprecated
|
|
14683
|
-
*/
|
|
14684
|
-
readonly rtcCodec: Codec<InnerRTCKeyMaps>;
|
|
14685
14682
|
/**
|
|
14686
14683
|
* engine 内部日志工具
|
|
14687
14684
|
*/
|
|
@@ -15447,14 +15444,6 @@ declare class RTCPluginContext extends PluginContext {
|
|
|
15447
15444
|
* 新版本 rtc ping 返回值增加 version 信息
|
|
15448
15445
|
*/
|
|
15449
15446
|
rtcPingResVersion(roomId: string, mode: number, broadcastType?: number): Promise<RCResult<any>>;
|
|
15450
|
-
/**
|
|
15451
|
-
* @deprecated 兼容 rtc v3 方法调用
|
|
15452
|
-
*/
|
|
15453
|
-
getRTCRoomInfo(roomId: string): IPromiseResult<IRTCRoomInfo>;
|
|
15454
|
-
/**
|
|
15455
|
-
* @deprecated 兼容 rtc v3 方法调用
|
|
15456
|
-
*/
|
|
15457
|
-
getRTCUserInfoList(roomId: string): IPromiseResult<IRTCUsers>;
|
|
15458
15447
|
/**
|
|
15459
15448
|
* @deprecated
|
|
15460
15449
|
*/
|
|
@@ -15627,7 +15616,6 @@ declare type IUserSettingsModule = Pick<IIPCMethods, 'setTranslationLanguage' |
|
|
|
15627
15616
|
|
|
15628
15617
|
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' | 'subscribeUser' | 'unSubscribeUser' | 'getSubscribeUserList' | 'getUserProfiles' | 'getMyUserProfile' | 'updateMyUserProfile' | 'sendMessage' | 'connect' | 'disconnect' | 'addToBlacklist' | 'removeFromBlacklist' | 'getBlacklist' | 'getBlacklistStatus' | 'setMessageReceivedStatus' | 'setMessageSentStatus' | 'setCheckDuplicateMessage' | 'setProxy' | 'getProxy' | 'testProxy' | 'setUserStatusListener' | 'getFileToken' | 'rtcSignaling' | 'rtcPing' | 'setCallInfo' | 'getUserStatus' | 'searchConversationByContentWithAllChannel'>;
|
|
15629
15618
|
declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContext {
|
|
15630
|
-
protected readonly rtcCodec: Codec<InnerRTCKeyMaps>;
|
|
15631
15619
|
protected readonly _watcher: IEngineWatcher;
|
|
15632
15620
|
protected readonly _options: IAPIContextOption;
|
|
15633
15621
|
private readonly _logger;
|
|
@@ -15661,7 +15649,7 @@ declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContex
|
|
|
15661
15649
|
* 引擎初始化
|
|
15662
15650
|
* @param _appkey
|
|
15663
15651
|
*/
|
|
15664
|
-
constructor(
|
|
15652
|
+
constructor(_watcher: IEngineWatcher, _options: IAPIContextOption, _logger: BasicLogger);
|
|
15665
15653
|
protected _rtcSignalingListener?: (buffer: Uint8Array) => void;
|
|
15666
15654
|
/**
|
|
15667
15655
|
* 注册 RTC KV 变更监听器
|
|
@@ -15718,7 +15706,7 @@ declare abstract class BasicEngine implements IIPCMethodsInEngine, IModuleContex
|
|
|
15718
15706
|
* @param closeDB 是否关闭数据库,默认为 true,仅 Electron 平台有效
|
|
15719
15707
|
* @param disablePush 是否禁用推送,默认为 false(≥ 5.20.0)
|
|
15720
15708
|
*/
|
|
15721
|
-
abstract disconnect(closeDB?: boolean, disablePush?: boolean): Promise<
|
|
15709
|
+
abstract disconnect(closeDB?: boolean, disablePush?: boolean): Promise<RCResult>;
|
|
15722
15710
|
/**
|
|
15723
15711
|
* 消息注册
|
|
15724
15712
|
* @description
|
|
@@ -16107,4 +16095,4 @@ declare class AppStorage {
|
|
|
16107
16095
|
}): void;
|
|
16108
16096
|
}
|
|
16109
16097
|
|
|
16110
|
-
export { APIContext, AbsCodec, AppSettings, AppStorage, AreaCode, AssertRules, BasicEngine, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationType, DataHosting, 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, IDataHostingService, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEnginRefreshReferenceMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetGroupMembersOption, 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, IMemberInviteResponse, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMessageSendOptions, 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, IRecallCommandMessageContent, IRecallMsgOptions, IRecallNotificationMessageContent, 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,
|
|
16098
|
+
export { APIContext, AbsCodec, AppSettings, AppStorage, AreaCode, AssertRules, BasicEngine, BasicLogger, ChatroomEntryType, ChatroomSyncStatusReason, ChatroomUserChangeType, ChrmMemBanType, ChrmMemOperateType, ChrmSyncStatus, Codec, CodecPBMaps, ConnectionStatus, ConversationBatchDeletionParams, ConversationType, DataHosting, 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, IDataHostingService, IDeletedExpansion, IDownloadAuth, IEditedMessageDraft, IEnginRefreshReferenceMessageResult, IEngineWatcher, IErrorKeys, IEventListener, IExpansionListener, IExpansionListenerData, IExpansionMsgContent, IExtraDataKeyInMessage, IFileMessageContent, IFirstUnreadMessageInfo, IFollowsInfo, IFriendAdd, IFriendApplicationInfo, IFriendApplicationStatusChange, IFriendDelete, IFriendInfo, IFriendInfoChangedSync, IFriendRelationInfo, IGIFMessageContent, IGetConversationListByTimestampParams, IGetGroupMembersOption, 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, IMemberInviteResponse, IMentionedInfoKeyInMessage, IMessageAttrsForUpdateExpansion, IMessageDesc, IMessageFilter, IMessageIdentifier, IMessageListnenr, IMessageReadReceiptV4Response, IMessageReader, IMessageReaderResponse, IMessageSendOptions, 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, IRecallCommandMessageContent, IRecallMsgOptions, IRecallNotificationMessageContent, 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, 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, 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, logger, map, notEmptyArray, notEmptyObject, notEmptyString, ok, promiseWithResolvers, runtime, trans2IReceivedStatusInfo, trans2NotificationLevel, trans2NotificationStatus, transformReceivedStatusFlag, usingCppEngine, validate };
|