@rongcloud/electron-renderer 5.30.0 → 5.32.0-c-rtc-alpha.2
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 -1
- package/index.cjs.js +1 -1
- package/index.d.ts +73 -89
- package/index.esm.js +2 -2
- package/index.mjs +2 -2
- package/package.json +2 -2
- package/renderer.cjs.js +1 -1
- package/renderer.esm.js +2 -2
package/index.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { BasicEngine, IChatroomService, IChatService,
|
|
1
|
+
import { BasicEngine, IChatroomService, IChatService, IDataHostingService, IUserSettingsModule, IEngineWatcher, IAPIContextOption, IPromiseResult, INaviInfo, LogType, BasicLogger, RCConnectionStatus, RCResult, IConversationIdentifier, IGetHistoryMessageOption, IReceivedMessage, IGetHistoryMessagesByTypesOption, MessageDirection, IRecallMsgOptions, ConversationType, IReceivedConversation, IGetConversationListByTimestampParams, ConversationBatchDeletionParams, NotificationLevel, IFirstUnreadMessageInfo, TranslateStrategy, IMessageSendOptions, IMessageReaderResponse, IMessageReadReceiptV4Response, MessageRegisterParams, IChatroomJoinResponse, IChatroomInfo, IGetHistoryMessageResult, IChatroomEntry, IChatroomEntries, IRemoveChatroomEntry, IRemoveChatroomEntries, FileType, IUploadAuth, UploadMethod, ErrorCode, InnerInsertMessageParams, IInsertMessage, IClearMessageOption, ISearchMessageParams, ISearchMessagesResult, IAppPushConfig, IRTCRoomBindOption, ITagParam, ITagInfo, IReceivedConversationByTag, ILocalTagStatus, IConversationTag, IGetUltraGroupListOption, IUltraGroupUnreadInfo, IOSInfo, IProcessInfo, IProxy, INetwork, SubscribeType, ISubscribeUserStatusInfo, IUserProfileInfo, IUpdateMyProfileFail, UserProfileVisibility, IServerGroupBaseInfo, ICreateGroupFail, IErrorKeys, IGroupInfo, IQuitGroupConfig, GroupOperationType, GroupMemberRole, IGetGroupMembersOption, IPagingQueryResult, IGroupMemberInfo, IPagingQueryOption, IProcessCode, IMemberInviteResponse, GroupApplicationDirection, GroupApplicationStatus, IGroupApplicationInfo, IFollowsInfo, DirectionType, IFriendRelationInfo, QueryFriendsDirectionType, IFriendInfo, FriendApplicationType, FriendApplicationStatus, IFriendApplicationInfo, FriendAddPermission, INotificationQuietHoursSetting, IMessageIdentifier, ReadReceiptInfoV5, ReadReceiptUsersOption, ReadReceiptUsersResult, IConvertSpeechToTextOption, InnerTransParam, TranslateMode, IModifyMessageParams, IEnginRefreshReferenceMessageResult, IUltraGroupUnreadMentionedOption, IUltraUnreadMsg, IExpansionMsgContent, ISubscribeUserOnlineStatus, IEditedMessageDraft, IGetUnreadMentionMeConversationListParams } from '@rongcloud/engine';
|
|
2
2
|
|
|
3
|
-
declare class RCCppEngine extends BasicEngine implements IChatroomService, IChatService,
|
|
3
|
+
declare class RCCppEngine extends BasicEngine implements IChatroomService, IChatService, IDataHostingService, IUserSettingsModule {
|
|
4
4
|
#private;
|
|
5
5
|
private _cache;
|
|
6
6
|
get chat(): IChatService;
|
|
7
7
|
get chatroom(): IChatroomService;
|
|
8
8
|
get userSettings(): IUserSettingsModule;
|
|
9
|
-
|
|
9
|
+
get dataHosting(): IDataHostingService;
|
|
10
|
+
constructor(watcher: IEngineWatcher, options: IAPIContextOption);
|
|
10
11
|
private _setConnectionStatus;
|
|
11
12
|
private sendHTTPRequest;
|
|
12
13
|
setUserStatusListener(config: {
|
|
@@ -24,7 +25,8 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
24
25
|
get naviInfo(): INaviInfo | null;
|
|
25
26
|
createLogger(id: string, type: LogType): BasicLogger;
|
|
26
27
|
get connectionStatus(): RCConnectionStatus;
|
|
27
|
-
|
|
28
|
+
get usingCppEngine(): boolean;
|
|
29
|
+
connect(token: string, reconnectKickEnable: boolean, openCallPlus: boolean, traceId: string): Promise<RCResult<string>>;
|
|
28
30
|
reportSDKInfo(versionInfo: {
|
|
29
31
|
[name: string]: string;
|
|
30
32
|
}): void;
|
|
@@ -69,17 +71,17 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
69
71
|
batchSetConversationToTop(conversations: IConversationIdentifier[], isTop?: boolean, isUpdateTime?: boolean, isCreateConversation?: boolean): Promise<RCResult>;
|
|
70
72
|
batchSetConversationNotificationLevel(conversations: IConversationIdentifier[], notificationLevel: NotificationLevel): Promise<RCResult>;
|
|
71
73
|
batchSetConversationTranslateStrategy(conversations: IConversationIdentifier[], strategy: TranslateStrategy): Promise<RCResult>;
|
|
72
|
-
sendMessage(
|
|
74
|
+
sendMessage(identifier: IConversationIdentifier, options: IMessageSendOptions, traceId: string, onBefore?: (messageId: number) => void): Promise<RCResult<IReceivedMessage>>;
|
|
73
75
|
sendReadReceiptV2(targetId: string, messageUIds: string[], channelId?: string): Promise<RCResult>;
|
|
74
|
-
getMessageReader(targetId: string, messageUId: string, channelId
|
|
76
|
+
getMessageReader(targetId: string, messageUId: string, channelId: string): Promise<RCResult<IMessageReaderResponse>>;
|
|
75
77
|
/**
|
|
76
78
|
* 发送已读回执 (V4)
|
|
77
79
|
*/
|
|
78
|
-
sendReadReceiptMessageV4(conversation: IConversationIdentifier, startMsgUid: string, endMsgUid: string): Promise<
|
|
80
|
+
sendReadReceiptMessageV4(conversation: IConversationIdentifier, startMsgUid: string, endMsgUid: string): Promise<RCResult>;
|
|
79
81
|
/**
|
|
80
82
|
* 获取消息已读回执列表,暂仅支持群聊 (V4)
|
|
81
83
|
*/
|
|
82
|
-
getMessageReadReceiptV4(conversation: IConversationIdentifier, messageUid: string):
|
|
84
|
+
getMessageReadReceiptV4(conversation: IConversationIdentifier, messageUid: string): Promise<RCResult<IMessageReadReceiptV4Response>>;
|
|
83
85
|
/**
|
|
84
86
|
* 批量获取消息已读回执列表,暂仅支持群聊 (V4)
|
|
85
87
|
*/
|
|
@@ -87,8 +89,8 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
87
89
|
/**
|
|
88
90
|
* 多端同步会话的已读时间 (V4)
|
|
89
91
|
*/
|
|
90
|
-
updateConversationReadTime(conversation: IConversationIdentifier, timestamp: number): Promise<
|
|
91
|
-
disconnect(closeDB?: boolean, disablePush?: boolean): Promise<
|
|
92
|
+
updateConversationReadTime(conversation: IConversationIdentifier, timestamp: number): Promise<RCResult>;
|
|
93
|
+
disconnect(closeDB?: boolean, disablePush?: boolean): Promise<RCResult>;
|
|
92
94
|
registerMessageType(objectName: string, desc: MessageRegisterParams): void;
|
|
93
95
|
joinChatroom(chatroomId: string, count: number, createIfNotExist: boolean, extra?: string): Promise<RCResult<IChatroomJoinResponse>>;
|
|
94
96
|
quitChatroom(chatroomId: string): Promise<RCResult>;
|
|
@@ -100,20 +102,20 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
100
102
|
removeChatroomEntries(chatroomId: string, entryOptions: IRemoveChatroomEntries): Promise<RCResult>;
|
|
101
103
|
getChatroomEntry(chatroomId: string, key: string): Promise<RCResult<string>>;
|
|
102
104
|
getAllChatroomEntries(chatroomId: string): Promise<RCResult<Record<string, string>>>;
|
|
103
|
-
getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryUriString?: string, url?: string, size?: number): Promise<
|
|
105
|
+
getFileToken(fileType: FileType, fileName?: string, httpMethod?: string, queryUriString?: string, url?: string, size?: number): Promise<RCResult<IUploadAuth>>;
|
|
104
106
|
getFileUrl(fileType: FileType, uploadMethod: UploadMethod, fileName: string, originName: string): Promise<RCResult<{
|
|
105
107
|
downloadUrl: string;
|
|
106
108
|
}>>;
|
|
107
109
|
setUserStatus(status: number): Promise<ErrorCode>;
|
|
108
110
|
subscribeUserStatus(userIds: string[]): Promise<ErrorCode>;
|
|
109
|
-
getUserStatus(userId: string):
|
|
111
|
+
getUserStatus(userId: string): Promise<RCResult<{
|
|
110
112
|
status: string;
|
|
111
|
-
}
|
|
113
|
+
}>>;
|
|
112
114
|
clearConversations(conversationTypes?: ConversationType[], channelId?: string): Promise<RCResult>;
|
|
113
|
-
addToBlacklist(userId: string): Promise<
|
|
114
|
-
removeFromBlacklist(userId: string): Promise<
|
|
115
|
-
getBlacklist():
|
|
116
|
-
getBlacklistStatus(userId: string):
|
|
115
|
+
addToBlacklist(userId: string): Promise<RCResult>;
|
|
116
|
+
removeFromBlacklist(userId: string): Promise<RCResult>;
|
|
117
|
+
getBlacklist(): Promise<RCResult<string[]>>;
|
|
118
|
+
getBlacklistStatus(userId: string): Promise<RCResult<number>>;
|
|
117
119
|
insertMessage(conversation: IConversationIdentifier, insertOptions: InnerInsertMessageParams): Promise<RCResult<IReceivedMessage>>;
|
|
118
120
|
batchInsertMessage(messages: IInsertMessage[], checkDuplicate: boolean): Promise<RCResult<boolean>>;
|
|
119
121
|
getLocalMessageCount(conversation: IConversationIdentifier): Promise<RCResult<number>>;
|
|
@@ -126,26 +128,23 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
126
128
|
setMessageContent(messageId: number, content: string, messageType: string): Promise<RCResult>;
|
|
127
129
|
setMessageSearchField(messageId: number, content: any, searchFiles: string): Promise<ErrorCode>;
|
|
128
130
|
searchConversationByContent(keyword: string, customMessageTypes: string[], channelId: string, conversationTypes: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
|
|
129
|
-
searchConversationByContentWithAllChannel(keyword: string, customMessageTypes: string[], conversationTypes?: ConversationType[]):
|
|
131
|
+
searchConversationByContentWithAllChannel(keyword: string, customMessageTypes: string[], conversationTypes?: ConversationType[]): Promise<RCResult<IReceivedConversation[]>>;
|
|
130
132
|
searchMessagesWithParams(params: ISearchMessageParams): Promise<RCResult<ISearchMessagesResult>>;
|
|
131
133
|
getUnreadMentionedMessages(conversation: IConversationIdentifier): Promise<RCResult<IReceivedMessage[]>>;
|
|
132
134
|
getUnreadMentionedCount(conversation: IConversationIdentifier): Promise<RCResult<number>>;
|
|
133
135
|
getMessagesAroundTimestamp(conversation: IConversationIdentifier, timestamp: number, beforeCount: number, afterCount: number): Promise<RCResult<IReceivedMessage[]>>;
|
|
134
|
-
setMessageSentStatus(messageId: number, sentStatus: number): Promise<
|
|
135
|
-
setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<
|
|
136
|
+
setMessageSentStatus(messageId: number, sentStatus: number): Promise<RCResult>;
|
|
137
|
+
setMessageReceivedStatus(messageId: number, receivedStatus: number): Promise<RCResult>;
|
|
136
138
|
updateMessageReceiptStatus(conversationType: ConversationType, targetId: string, timestamp: number, channelId?: string): Promise<RCResult<boolean>>;
|
|
137
|
-
clearUnreadCountByTimestamp(
|
|
139
|
+
clearUnreadCountByTimestamp(conversation: IConversationIdentifier, timestamp: number): Promise<RCResult>;
|
|
138
140
|
clearAllSGUnreadCount(): Promise<RCResult>;
|
|
139
141
|
get serverTime(): number;
|
|
140
142
|
get deviceId(): string;
|
|
141
143
|
setPushConfig(config: IAppPushConfig): void;
|
|
142
144
|
get userId(): string;
|
|
143
145
|
bindRTCRoomForChatroom(options: IRTCRoomBindOption): Promise<RCResult>;
|
|
144
|
-
rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: ArrayBuffer): Promise<
|
|
145
|
-
|
|
146
|
-
buffer?: Uint8Array;
|
|
147
|
-
}>;
|
|
148
|
-
rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<IAsyncRes<any>>;
|
|
146
|
+
rtcSignaling(roomId: string, method: string, isQuery: boolean, sourceData: ArrayBuffer): Promise<RCResult<Uint8Array>>;
|
|
147
|
+
rtcPing(roomId: string, mode: number, broadcastType?: number): Promise<RCResult<any>>;
|
|
149
148
|
createTag(tag: ITagParam): Promise<RCResult>;
|
|
150
149
|
removeTag(tagId: string): Promise<RCResult>;
|
|
151
150
|
updateTag(tag: ITagParam): Promise<RCResult>;
|
|
@@ -158,7 +157,7 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
158
157
|
setConversationStatusInTag(tagId: string, conversation: IConversationIdentifier, status: ILocalTagStatus): Promise<RCResult>;
|
|
159
158
|
getTagsForConversation(conversation: IConversationIdentifier): Promise<RCResult<IConversationTag[]>>;
|
|
160
159
|
clearLocalData(): Promise<RCResult<boolean>>;
|
|
161
|
-
setCallInfo(targetId: string, key: string, value: string): Promise<
|
|
160
|
+
setCallInfo(targetId: string, key: string, value: string): Promise<RCResult<{
|
|
162
161
|
key: string;
|
|
163
162
|
value: string;
|
|
164
163
|
}>>;
|
|
@@ -166,7 +165,7 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
166
165
|
getUltraGroupList(options?: IGetUltraGroupListOption): Promise<RCResult<IReceivedConversation[]>>;
|
|
167
166
|
getBlockedUGList(): Promise<RCResult<IReceivedConversation[]>>;
|
|
168
167
|
getBlockedConversationList(includeUG: boolean): Promise<RCResult<IReceivedConversation[]>>;
|
|
169
|
-
sendUltraMessage(
|
|
168
|
+
sendUltraMessage(conversation: IConversationIdentifier, options: IMessageSendOptions, traceId: string, onSendBefore?: (messageId: number) => void): Promise<RCResult<IReceivedMessage>>;
|
|
170
169
|
getConversationNotificationLevel(conversation: IConversationIdentifier): Promise<RCResult<NotificationLevel>>;
|
|
171
170
|
setConversationTypeNotificationLevel(conversationType: ConversationType, level: NotificationLevel): Promise<RCResult>;
|
|
172
171
|
getConversationTypeNotificationLevel(conversationType: ConversationType): Promise<RCResult<NotificationLevel>>;
|
|
@@ -189,37 +188,34 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
189
188
|
/**
|
|
190
189
|
* 设置代理
|
|
191
190
|
*/
|
|
192
|
-
setProxy(proxy: IProxy | null):
|
|
191
|
+
setProxy(proxy: IProxy | null): Promise<RCResult>;
|
|
193
192
|
/**
|
|
194
193
|
* 获取代理
|
|
195
194
|
*/
|
|
196
|
-
getProxy():
|
|
195
|
+
getProxy(): Promise<RCResult<IProxy>>;
|
|
197
196
|
/**
|
|
198
197
|
* 测试代理
|
|
199
198
|
*/
|
|
200
|
-
testProxy(proxy: IProxy, testHost: string): Promise<
|
|
199
|
+
testProxy(proxy: IProxy, testHost: string): Promise<RCResult>;
|
|
201
200
|
/**
|
|
202
201
|
* 设置融云消息重排开关
|
|
203
202
|
*/
|
|
204
|
-
setCheckDuplicateMessage(enableCheck: boolean): Promise<
|
|
203
|
+
setCheckDuplicateMessage(enableCheck: boolean): Promise<RCResult<boolean>>;
|
|
205
204
|
/**
|
|
206
205
|
* 设置聊天室消息去重开关
|
|
207
206
|
* @param enableCheck 是否开启去重
|
|
208
207
|
*/
|
|
209
208
|
setCheckChatRoomDuplicateMessage(enableCheck: boolean): Promise<RCResult>;
|
|
210
209
|
setNetwork(data: INetwork, isUnPrintLog?: boolean): void;
|
|
211
|
-
|
|
212
|
-
* 订阅用户状态事件
|
|
213
|
-
*/
|
|
214
|
-
subscribeUser(userIds: string[], subscribeType: SubscribeType, expiry: number): Promise<IAsyncRes<string[]>>;
|
|
210
|
+
subscribeUser(userIds: string[], subscribeType: SubscribeType, expiry: number): Promise<RCResult<string[]>>;
|
|
215
211
|
/**
|
|
216
212
|
* 取消订阅用户状态事件
|
|
217
213
|
*/
|
|
218
|
-
unSubscribeUser(userIds: string[], subscribeType: SubscribeType): Promise<
|
|
214
|
+
unSubscribeUser(userIds: string[], subscribeType: SubscribeType): Promise<RCResult>;
|
|
219
215
|
/**
|
|
220
216
|
* 获取已订阅列表
|
|
221
217
|
*/
|
|
222
|
-
getSubscribeUserList(subscribeType: SubscribeType, count: number, offset: number): Promise<
|
|
218
|
+
getSubscribeUserList(subscribeType: SubscribeType, count: number, offset: number): Promise<RCResult<ISubscribeUserStatusInfo[]>>;
|
|
223
219
|
/**
|
|
224
220
|
* 获取指定用户的在线状态
|
|
225
221
|
*/
|
|
@@ -228,60 +224,48 @@ declare class RCCppEngine extends BasicEngine implements IChatroomService, IChat
|
|
|
228
224
|
* 批量获取会话
|
|
229
225
|
*/
|
|
230
226
|
getConversations(conversations: IConversationIdentifier[]): Promise<RCResult<IReceivedConversation[]>>;
|
|
231
|
-
updateMyUserProfile(profile: IUserProfileInfo): Promise<
|
|
227
|
+
updateMyUserProfile(profile: IUserProfileInfo): Promise<RCResult<IUpdateMyProfileFail>>;
|
|
232
228
|
getUserProfiles(userIds: string[]): Promise<RCResult<IUserProfileInfo[]>>;
|
|
233
|
-
getMyUserProfile(): Promise<
|
|
234
|
-
updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<
|
|
235
|
-
getMyUserProfileVisibility(): Promise<
|
|
236
|
-
searchUserProfileByUniqueId(uniqueId: string): Promise<
|
|
237
|
-
createGroup(groupId: string, baseInfo: IServerGroupBaseInfo, extProfile:
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
getGroupApplications(option: IPagingQueryOption, directions?: GroupApplicationDirection[], status?: GroupApplicationStatus[]): Promise<IAsyncRes<IPagingQueryResult<IGroupApplicationInfo>>>;
|
|
264
|
-
getJoinedGroupsByRole(role: GroupMemberRole, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupInfo>>>;
|
|
265
|
-
searchJoinedGroups(groupName: string, option: IPagingQueryOption): Promise<IAsyncRes<IPagingQueryResult<IGroupInfo>>>;
|
|
266
|
-
getJoinedGroups(groupIds: string[]): Promise<IAsyncRes<IGroupInfo[]>>;
|
|
267
|
-
setGroupRemark(groupId: string, remark: string | null): Promise<IAsyncRes<void>>;
|
|
268
|
-
setGroupFollows(optType: GroupOperationType, groupId: string, userIds: string[]): Promise<IAsyncRes<void>>;
|
|
269
|
-
getGroupFollows(groupId: string): Promise<IAsyncRes<IFollowsInfo[]>>;
|
|
270
|
-
addFriend(userId: string, directionType: DirectionType, extra: string): Promise<IAsyncRes<IProcessCode>>;
|
|
271
|
-
deleteFriends(userIds: string[], directionType: DirectionType): Promise<IAsyncRes<void>>;
|
|
272
|
-
acceptFriendApplication(userId: string): Promise<IAsyncRes<void>>;
|
|
273
|
-
refuseFriendApplication(userId: string, reason: string): Promise<IAsyncRes<void>>;
|
|
229
|
+
getMyUserProfile(): Promise<RCResult<IUserProfileInfo>>;
|
|
230
|
+
updateMyUserProfileVisibility(visibility: UserProfileVisibility): Promise<RCResult>;
|
|
231
|
+
getMyUserProfileVisibility(): Promise<RCResult<UserProfileVisibility>>;
|
|
232
|
+
searchUserProfileByUniqueId(uniqueId: string): Promise<RCResult<IUserProfileInfo>>;
|
|
233
|
+
createGroup(groupId: string, baseInfo: IServerGroupBaseInfo, extProfile?: Record<string, string>, inviteeUserIds?: string[]): Promise<RCResult<ICreateGroupFail>>;
|
|
234
|
+
updateGroupInfo(groupId: string, baseInfo: IServerGroupBaseInfo, extProfile?: Record<string, string>): Promise<RCResult<IErrorKeys>>;
|
|
235
|
+
getGroupsInfo(groupIds: string[]): Promise<RCResult<IGroupInfo[]>>;
|
|
236
|
+
kickGroupMembers(groupId: string, userIds: string[], config: Required<IQuitGroupConfig>): Promise<RCResult>;
|
|
237
|
+
quitGroup(groupId: string, config: Required<IQuitGroupConfig>): Promise<RCResult>;
|
|
238
|
+
dismissGroup(groupId: string): Promise<RCResult>;
|
|
239
|
+
transferGroupOwner(groupId: string, newOwnerId: string, quitGroupAfterTransfer: boolean, config: Required<IQuitGroupConfig>): Promise<RCResult>;
|
|
240
|
+
setGroupManagers(type: GroupOperationType, groupId: string, userIds: string[]): Promise<RCResult>;
|
|
241
|
+
getGroupMembersByRole(groupId: string, role: GroupMemberRole, option: Required<IGetGroupMembersOption>): Promise<RCResult<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
242
|
+
getGroupMembers(groupId: string, userIds: string[]): Promise<RCResult<IGroupMemberInfo[]>>;
|
|
243
|
+
setGroupMemberInfo(groupId: string, userId: string, nickname: string, extra: string): Promise<RCResult<IErrorKeys>>;
|
|
244
|
+
searchGroupMembers(groupId: string, nickName: string, option: Required<IPagingQueryOption>): Promise<RCResult<IPagingQueryResult<IGroupMemberInfo>>>;
|
|
245
|
+
joinGroup(groupId: string): Promise<RCResult<IProcessCode>>;
|
|
246
|
+
inviteUsersToGroup(groupId: string, userIds: string[]): Promise<RCResult<IProcessCode>>;
|
|
247
|
+
memberInviteResponse(params: IMemberInviteResponse): Promise<RCResult<IProcessCode>>;
|
|
248
|
+
getGroupApplications(option: Required<IPagingQueryOption>, directions: GroupApplicationDirection[], status: GroupApplicationStatus[]): Promise<RCResult<IPagingQueryResult<IGroupApplicationInfo>>>;
|
|
249
|
+
getJoinedGroupsByRole(role: GroupMemberRole, option: Required<IPagingQueryOption>): Promise<RCResult<IPagingQueryResult<IGroupInfo>>>;
|
|
250
|
+
searchJoinedGroups(groupName: string, option: Required<IPagingQueryOption>): Promise<RCResult<IPagingQueryResult<IGroupInfo>>>;
|
|
251
|
+
getJoinedGroups(groupIds: string[]): Promise<RCResult<IGroupInfo[]>>;
|
|
252
|
+
setGroupRemark(groupId: string, remark: string): Promise<RCResult>;
|
|
253
|
+
setGroupFollows(optType: GroupOperationType, groupId: string, userIds: string[]): Promise<RCResult>;
|
|
254
|
+
getGroupFollows(groupId: string): Promise<RCResult<IFollowsInfo[]>>;
|
|
255
|
+
addFriend(userId: string, directionType: DirectionType, extra: string): Promise<RCResult<IProcessCode>>;
|
|
256
|
+
deleteFriends(userIds: string[], directionType: DirectionType): Promise<RCResult>;
|
|
257
|
+
acceptFriendRequest(userId: string): Promise<RCResult>;
|
|
258
|
+
refuseFriendRequest(userId: string, reason?: string): Promise<RCResult>;
|
|
274
259
|
setFriendInfo(userId: string, remark: string, extProfile: {
|
|
275
260
|
[key: string]: string;
|
|
276
|
-
}): Promise<
|
|
277
|
-
checkFriends(userIds: string[], directionType: DirectionType): Promise<
|
|
278
|
-
getFriends(directionType: QueryFriendsDirectionType, option: IPagingQueryOption
|
|
279
|
-
getFriendApplications(option: IPagingQueryOption
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
getFriendAddPermission(): Promise<IAsyncRes<FriendAddPermission>>;
|
|
261
|
+
}): Promise<RCResult<IErrorKeys>>;
|
|
262
|
+
checkFriends(userIds: string[], directionType: DirectionType): Promise<RCResult<IFriendRelationInfo[]>>;
|
|
263
|
+
getFriends(directionType: QueryFriendsDirectionType, option: Required<IPagingQueryOption>): Promise<RCResult<IPagingQueryResult<IFriendInfo>>>;
|
|
264
|
+
getFriendApplications(option: Required<IPagingQueryOption>, types: FriendApplicationType[], status: FriendApplicationStatus[]): Promise<RCResult<IPagingQueryResult<IFriendApplicationInfo>>>;
|
|
265
|
+
getFriendsInfo(userIds: string[]): Promise<RCResult<IFriendInfo[]>>;
|
|
266
|
+
searchFriendsInfo(nickname: string): Promise<RCResult<IFriendInfo[]>>;
|
|
267
|
+
setFriendAddPermission(permission: FriendAddPermission): Promise<RCResult>;
|
|
268
|
+
getFriendAddPermission(): Promise<RCResult<FriendAddPermission>>;
|
|
285
269
|
getRealtimeConversations: () => Promise<RCResult<any>>;
|
|
286
270
|
getRealtimeConTotalUnreadCount: () => Promise<RCResult<any>>;
|
|
287
271
|
clearRealtimeConUnreadCount: () => Promise<RCResult<any>>;
|
package/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{ipcRenderer as e,contextBridge as t}from"electron";import{createLogDBProxy as r,BasicLogger as n,VersionManage as
|
|
1
|
+
import{ipcRenderer as e,contextBridge as t}from"electron";import{createLogDBProxy as r,BasicLogger as n,VersionManage as o,LogTagId as i,RCConnectionStatus as a,runtime as l,BasicEngine as u,ErrorCode as s,ok as c,fail as b}from"@rongcloud/engine";
|
|
2
2
|
/*! *****************************************************************************
|
|
3
3
|
Copyright (c) Microsoft Corporation.
|
|
4
4
|
|
|
@@ -12,4 +12,4 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
12
12
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
13
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
14
|
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
-
***************************************************************************** */var f=function(e,t){return f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},f(e,t)};function g(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}f(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function d(e,t,r,n){return new(r||(r=Promise))((function(i,o){function a(e){try{u(n.next(e))}catch(e){o(e)}}function l(e){try{u(n.throw(e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(a,l)}u((n=n.apply(e,t||[])).next())}))}function y(e,t){var r,n,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:l(0),throw:l(1),return:l(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function l(o){return function(l){return function(o){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(i=2&o[0]?n.return:o[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,o[1])).done)return i;switch(n=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,n=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]<i[3])){a.label=o[1];break}if(6===o[0]&&a.label<i[1]){a.label=i[1],i=o;break}if(i&&a.label<i[2]){a.label=i[2],a.ops.push(o);break}i[2]&&a.ops.pop(),a.trys.pop();continue}o=t.call(e,a)}catch(e){o=[6,e],n=0}finally{r=i=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,l])}}}function h(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,i,o=r.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(n=o.next()).done;)a.push(n.value)}catch(e){i={error:e}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(i)throw i.error}}return a}function m(e,t,r){if(r||2===arguments.length)for(var n,i=0,o=t.length;i<o;i++)!n&&i in t||(n||(n=Array.prototype.slice.call(t,0,i)),n[i]=t[i]);return e.concat(n||Array.prototype.slice.call(t))}function v(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)}var w,P,_,M=function(e){function t(t,n,i,o){var a=this,l=r();return l.setLogReader((function(e,t,r,n){return d(a,void 0,void 0,(function(){return y(this,(function(e){return[2,{logs:[]}]}))}))})),l.setLogWriter((function(e){o(e)})),a=e.call(this,t,n,i,l)||this}return g(t,e),Object.defineProperty(t.prototype,"getTimestamp4RealtimeLog",{enumerable:!1,configurable:!0,writable:!0,value:function(){return 0}}),Object.defineProperty(t.prototype,"setTimestamp4RealtimeLog",{enumerable:!1,configurable:!0,writable:!0,value:function(e){}}),t}(n),O=0,j=Date.now(),C=function(e){var t=Date.now();return j!==t&&(j=t,O=0),[e,window.__ContextBridge__.getProcessInfo("pid"),t,O++].join("__")};i.add("electron-renderer","5.30.0");var U=function(){return d(void 0,void 0,void 0,(function(){return y(this,(function(e){return[2,c(l.NOT_SUPPORT,"Not support")]}))}))},T=function(e){function t(t,r,n){var i,a=this,l=function(e){window.__ContextBridge__.send("__RC_CHANNEL_SEND_2_MAIN__","onReceiveRendererLog",e)},u=new M(n.appkey,"IMLib","IM",l);return a=e.call(this,t,r,n,u)||this,w.add(a),Object.defineProperty(a,"_cache",{enumerable:!0,configurable:!0,writable:!0,value:void 0}),P.set(a,void 0),Object.defineProperty(a,"_resolveMaps",{enumerable:!0,configurable:!0,writable:!0,value:{}}),Object.defineProperty(a,"batchGetMessageReadReceiptInfoV4",{enumerable:!0,configurable:!0,writable:!0,value:U}),Object.defineProperty(a,"getRealtimeConversations",{enumerable:!0,configurable:!0,writable:!0,value:U}),Object.defineProperty(a,"getRealtimeConTotalUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:U}),Object.defineProperty(a,"clearRealtimeConUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:U}),Object.defineProperty(a,"removeRealtimeConversations",{enumerable:!0,configurable:!0,writable:!0,value:U}),Object.defineProperty(a,"batchGetRealtimeConUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:U}),function(e,t,r,n,i){if("m"===n)throw new TypeError("Private method is not writable");if("a"===n&&!i)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!i:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");"a"===n?i.call(e,r):i?i.value=r:t.set(e,r)}(a,P,l,"f"),u.setOutputLevel(n.logOutputLevel),window.__ContextBridge__.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(e,t){for(var n=[],i=2;i<arguments.length;i++)n[i-2]=arguments[i];var l=r[t];if(l){switch(t){case"onNaviDataChange":a._cache.naviInfo=n[0];break;case"onRTCDataChange":return void a._receiveRtcKv(new Uint8Array(n[0]));case"onConnected":a._cache=n[0];break;case"onSuspend":a._setConnectionStatus(s.SUSPENDED);break;case"onDisconnected":a._setConnectionStatus(s.DISCONNECTED);break;case"onConnecting":a._setConnectionStatus(s.CONNECTING)}l.apply(void 0,m([],h(n),!1))}else a.logger.error(o.L_UNSUPPORT_NTF_FROM_MAIN_E,t)})),window.__ContextBridge__.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=a._resolveMaps[t];i&&(delete a._resolveMaps[t],i.apply(void 0,m([],h(r),!1)))})),a._options.httpInMainProcess&&(b.httpReq=a.sendHTTPRequest.bind(a)),window.__ContextBridge__.send("__RC_INNER_COMMAND_INIT__",{navigators:n.navigators,areaCode:n.areaCode,logServerUrl:n.logServerUrl,environment:n.environment,enableReadReceiptStorage:n.enableReadReceiptStorage,useNaviV2:null!==(i=n.useNaviV2)&&void 0!==i&&i}),a._cache=a._callMainSync("getMainProcessCache"),a}return g(t,e),Object.defineProperty(t.prototype,"chat",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"chatroom",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"userSettings",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"_setConnectionStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){this._cache.connectionStatus=e}}),Object.defineProperty(t.prototype,"sendHTTPRequest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("sendHTTPRequest",e)}}),Object.defineProperty(t.prototype,"setUserStatusListener",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){throw new Error("TODO -> RCCppEngine.setUserStatusListener")}}),Object.defineProperty(t.prototype,"_callMain",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return new Promise((function(n){var i,o=C(e);t._resolveMaps[o]=n,(i=window.__ContextBridge__).send.apply(i,m(["__RC_CHANNEL_CALL_MAIN__",o,e],h(r),!1))}))}}),Object.defineProperty(t.prototype,"_send2Main",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];(t=window.__ContextBridge__).send.apply(t,m(["__RC_CHANNEL_SEND_2_MAIN__",e],h(r),!1))}}),Object.defineProperty(t.prototype,"_callMainSync",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return this.logger.info(o.L_CALL_MAIN_SYNC_O,e),(t=window.__ContextBridge__).sendSync.apply(t,m(["__RC_CHANNEL_CALL_MAIN_SYNC__",e],h(r),!1))}}),Object.defineProperty(t.prototype,"refetchNaviInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("refetchNaviInfo")}}),Object.defineProperty(t.prototype,"naviInfo",{get:function(){return this._cache.naviInfo},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"createLogger",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return new M(this._appkey,e,t,v(this,P,"f"))}}),Object.defineProperty(t.prototype,"connectionStatus",{get:function(){return this._cache.connectionStatus},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"connect",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return d(this,void 0,void 0,(function(){return y(this,(function(i){return[2,this._callMain("connect",e,t,r,n)]}))}))}}),Object.defineProperty(t.prototype,"reportSDKInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){this._send2Main("reportSDKInfo",e)}}),Object.defineProperty(t.prototype,"connectedTime",{get:function(){return this._cache.connectedTime},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"getHistoryMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getHistoryMessage",e,t,r)}}),Object.defineProperty(t.prototype,"getContinuousMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getContinuousMessages",e,t)}}),Object.defineProperty(t.prototype,"getHistoryMessagesByObjectNames",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getHistoryMessagesByObjectNames",e,t)}}),Object.defineProperty(t.prototype,"deleteRemoteMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"deleteRemoteMessage",e,t)}}),Object.defineProperty(t.prototype,"recallMsg",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"recallMsg",e,t)}}),Object.defineProperty(t.prototype,"deleteRemoteMessageByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"deleteRemoteMessageByTimestamp",e,t)}}),Object.defineProperty(t.prototype,"getTopConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getTopConversationList",e,t,r)}}),Object.defineProperty(t.prototype,"getUnreadConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getUnreadConversationList",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByPageIndex",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getConversationListByPageIndex",e,t)}}),Object.defineProperty(t.prototype,"getAllConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getAllConversationList",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getConversationListByTimestamp",e,t)}}),Object.defineProperty(t.prototype,"getUntaggedConversationListByPage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getUntaggedConversationListByPage",e,t,r)}}),Object.defineProperty(t.prototype,"getConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getConversation",e)}}),Object.defineProperty(t.prototype,"batchDeleteConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"batchDeleteConversations",e)}}),Object.defineProperty(t.prototype,"getTotalUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getTotalUnreadCount",e,t,r)}}),Object.defineProperty(t.prototype,"getConversationUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getConversationUnreadCount",e)}}),Object.defineProperty(t.prototype,"getTotalUnreadCountByLevels",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getTotalUnreadCountByLevels",e,t,r)}}),Object.defineProperty(t.prototype,"clearConversationUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"clearConversationUnreadCount",e)}}),Object.defineProperty(t.prototype,"getFirstUnreadMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getFirstUnreadMessage",e)}}),Object.defineProperty(t.prototype,"getFirstUnreadMessageDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getFirstUnreadMessageDigest",e)}}),Object.defineProperty(t.prototype,"saveTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"saveTextMessageDraft",e,t)}}),Object.defineProperty(t.prototype,"getTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getTextMessageDraft",e)}}),Object.defineProperty(t.prototype,"clearTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"clearTextMessageDraft",e)}}),Object.defineProperty(t.prototype,"batchSetConversationToTop",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"batchSetConversationToTop",e,t,r,n)}}),Object.defineProperty(t.prototype,"batchSetConversationNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"batchSetConversationNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"batchSetConversationTranslateStrategy",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"batchSetConversationTranslateStrategy",e,t)}}),Object.defineProperty(t.prototype,"sendMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n,i){var a=this,l=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return i&&(this._resolveMaps[l]=function(e){try{i(e)}catch(e){a.logger.error(o.L_CALLBACK_E,JSON.stringify({error:null==e?void 0:e.stack,pos:"sendMsgBefore"}))}}),v(this,w,"m",_).call(this,"sendMessage",e,t,r,n,l)}}),Object.defineProperty(t.prototype,"sendReadReceiptV2",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"sendReadReceiptV2",e,t,r)}}),Object.defineProperty(t.prototype,"getMessageReader",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("getMessageReader",e,t,r)}}),Object.defineProperty(t.prototype,"sendReadReceiptMessageV4",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("sendReadReceiptMessageV4",e,t,r)}}),Object.defineProperty(t.prototype,"getMessageReadReceiptV4",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("getMessageReadReceiptV4",e,t)}}),Object.defineProperty(t.prototype,"updateConversationReadTime",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("updateConversationReadTime",e,t)}}),Object.defineProperty(t.prototype,"disconnect",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return d(this,void 0,void 0,(function(){return y(this,(function(r){return[2,this._callMain("disconnect",e,t)]}))}))}}),Object.defineProperty(t.prototype,"registerMessageType",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){this._send2Main("registerMessageType",e,t)}}),Object.defineProperty(t.prototype,"joinChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"joinChatroom",e,t,r,n)}}),Object.defineProperty(t.prototype,"quitChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"quitChatroom",e)}}),Object.defineProperty(t.prototype,"getChatroomInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getChatroomInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getChatroomHistoryMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"getChatroomHistoryMessages",e,t,r,n)}}),Object.defineProperty(t.prototype,"setChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"setChatroomEntry",e,t,r)}}),Object.defineProperty(t.prototype,"setChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"setChatroomEntries",e,t)}}),Object.defineProperty(t.prototype,"removeChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"removeChatroomEntry",e,t,r)}}),Object.defineProperty(t.prototype,"removeChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"removeChatroomEntries",e,t)}}),Object.defineProperty(t.prototype,"getChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getChatroomEntry",e,t)}}),Object.defineProperty(t.prototype,"getAllChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getAllChatroomEntries",e)}}),Object.defineProperty(t.prototype,"getFileToken",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n,i,o){return this._callMain("getFileToken",e,t,r,n,i,o)}}),Object.defineProperty(t.prototype,"getFileUrl",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"getFileUrl",e,t,r,n)}}),Object.defineProperty(t.prototype,"setUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("setUserStatus",e)}}),Object.defineProperty(t.prototype,"subscribeUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("subscribeUserStatus",e)}}),Object.defineProperty(t.prototype,"getUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getUserStatus",e)}}),Object.defineProperty(t.prototype,"clearConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"clearConversations",e,t)}}),Object.defineProperty(t.prototype,"addToBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("addToBlacklist",e)}}),Object.defineProperty(t.prototype,"removeFromBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("removeFromBlacklist",e)}}),Object.defineProperty(t.prototype,"getBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("getBlacklist")}}),Object.defineProperty(t.prototype,"getBlacklistStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getBlacklistStatus",e)}}),Object.defineProperty(t.prototype,"insertMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"insertMessage",e,t)}}),Object.defineProperty(t.prototype,"batchInsertMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"batchInsertMessage",e,t)}}),Object.defineProperty(t.prototype,"getLocalMessageCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getLocalMessageCount",e)}}),Object.defineProperty(t.prototype,"deleteLocalMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"deleteLocalMessages",e)}}),Object.defineProperty(t.prototype,"deleteLocalMessagesByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"deleteLocalMessagesByTimestamp",e,t,r)}}),Object.defineProperty(t.prototype,"batchClearLocalMessagesByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"batchClearLocalMessagesByTimestamp",e)}}),Object.defineProperty(t.prototype,"batchClearRemoteHistoryMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"batchClearRemoteHistoryMessages",e,t)}}),Object.defineProperty(t.prototype,"clearLocalMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"clearLocalMessages",e)}}),Object.defineProperty(t.prototype,"getMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getMessage",e)}}),Object.defineProperty(t.prototype,"setMessageContent",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"setMessageContent",e,t,r)}}),Object.defineProperty(t.prototype,"setMessageSearchField",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setMessageSearchField",e,t,r)}}),Object.defineProperty(t.prototype,"searchConversationByContent",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"searchConversationByContent",e,t,r,n)}}),Object.defineProperty(t.prototype,"searchConversationByContentWithAllChannel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("searchConversationByContentWithAllChannel",e,t,r)}}),Object.defineProperty(t.prototype,"searchMessagesWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"searchMessagesWithParams",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionedMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUnreadMentionedMessages",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionedCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUnreadMentionedCount",e)}}),Object.defineProperty(t.prototype,"getMessagesAroundTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"getMessagesAroundTimestamp",e,t,r,n)}}),Object.defineProperty(t.prototype,"setMessageSentStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("setMessageSentStatus",e,t)}}),Object.defineProperty(t.prototype,"setMessageReceivedStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("setMessageReceivedStatus",e,t)}}),Object.defineProperty(t.prototype,"updateMessageReceiptStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"updateMessageReceiptStatus",e,t,r,n)}}),Object.defineProperty(t.prototype,"clearUnreadCountByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return this._callMain("clearUnreadCountByTimestamp",e,t,r,n)}}),Object.defineProperty(t.prototype,"clearAllSGUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,v(this,w,"m",_).call(this,"clearAllSGUnreadCount")]}))}))}}),Object.defineProperty(t.prototype,"serverTime",{get:function(){return Date.now()-this._cache.deltaTime},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deviceId",{get:function(){return this._cache.deviceId},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"setPushConfig",{enumerable:!1,configurable:!0,writable:!0,value:function(e){}}),Object.defineProperty(t.prototype,"userId",{get:function(){return this._cache.crtUserId},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"bindRTCRoomForChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("bindRTCRoomForChatroom",e)}}),Object.defineProperty(t.prototype,"rtcSignaling",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return d(this,void 0,void 0,(function(){var i,o,a,l;return y(this,(function(u){switch(u.label){case 0:return i=Array.prototype.slice.call(new Uint8Array(n)),[4,this._callMain("rtcSignaling",e,t,r,i)];case 1:return o=u.sent(),a=o.code,l=o.buffer,[2,{code:a,buffer:l?new Uint8Array(l):l}]}}))}))}}),Object.defineProperty(t.prototype,"rtcPing",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("rtcPing",e,t,r)}}),Object.defineProperty(t.prototype,"createTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"createTag",e)}}),Object.defineProperty(t.prototype,"removeTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"removeTag",e)}}),Object.defineProperty(t.prototype,"updateTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"updateTag",e)}}),Object.defineProperty(t.prototype,"getTagList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getTagList")}}),Object.defineProperty(t.prototype,"addTagForConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"addTagForConversations",e,t)}}),Object.defineProperty(t.prototype,"removeTagForConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"removeTagForConversations",e,t)}}),Object.defineProperty(t.prototype,"removeTagsForConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"removeTagsForConversation",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getConversationListByTag",e,t,r)}}),Object.defineProperty(t.prototype,"getUnreadCountByTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getUnreadCountByTag",e,t)}}),Object.defineProperty(t.prototype,"setConversationStatusInTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"setConversationStatusInTag",e,t,r)}}),Object.defineProperty(t.prototype,"getTagsForConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getTagsForConversation",e)}}),Object.defineProperty(t.prototype,"clearLocalData",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"clearLocalData")}}),Object.defineProperty(t.prototype,"setCallInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setCallInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getAllUnreadMentionedCount",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getAllUnreadMentionedCount")}}),Object.defineProperty(t.prototype,"getUltraGroupList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUltraGroupList",e)}}),Object.defineProperty(t.prototype,"getBlockedUGList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getBlockedUGList")}}),Object.defineProperty(t.prototype,"getBlockedConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getBlockedConversationList",e)}}),Object.defineProperty(t.prototype,"sendUltraMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return this.sendMessage(a.ULTRA_GROUP,e,t,r,n)}}),Object.defineProperty(t.prototype,"getConversationNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getConversationNotificationLevel",e)}}),Object.defineProperty(t.prototype,"setConversationTypeNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"setConversationTypeNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"getConversationTypeNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getConversationTypeNotificationLevel",e)}}),Object.defineProperty(t.prototype,"getUGUnreadCountForAllChannels",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getUGUnreadCountForAllChannels",e,t,r)}}),Object.defineProperty(t.prototype,"setUGDefaultNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"setUGDefaultNotificationLevel",e,t,r)}}),Object.defineProperty(t.prototype,"getUGDefaultNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getUGDefaultNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"getUGUnreadInfoList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUGUnreadInfoList",e)}}),Object.defineProperty(t.prototype,"getOSInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,this._callMain("getOSInfo")]}))}))}}),Object.defineProperty(t.prototype,"getProcessInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,{code:l.SUCCESS,data:{title:window.__ContextBridge__.getProcessInfo("title"),pid:window.__ContextBridge__.getProcessInfo("pid"),ppid:window.__ContextBridge__.getProcessInfo("ppid"),platform:window.__ContextBridge__.getProcessInfo("platform"),arch:window.__ContextBridge__.getProcessInfo("arch"),uptime:window.__ContextBridge__.callProcessMethod("uptime"),cpuUsage:window.__ContextBridge__.callProcessMethod("cpuUsage"),memoryUsage:window.__ContextBridge__.callProcessMethod("cpuUsage"),resourceUsage:window.__ContextBridge__.callProcessMethod("cpuUsage")}}]}))}))}}),Object.defineProperty(t.prototype,"getMainProcessInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,this._callMain("getMainProcessInfo")]}))}))}}),Object.defineProperty(t.prototype,"setProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("setProxy",e)}}),Object.defineProperty(t.prototype,"getProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("getProxy")}}),Object.defineProperty(t.prototype,"testProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("testProxy",e,t)}}),Object.defineProperty(t.prototype,"setCheckDuplicateMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("checkDuplicateMessage",e)}}),Object.defineProperty(t.prototype,"setCheckChatRoomDuplicateMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"setCheckChatRoomDuplicateMessage",e)}}),Object.defineProperty(t.prototype,"setNetwork",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){this._send2Main("setNetwork",e,t)}}),Object.defineProperty(t.prototype,"subscribeUser",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("subscribeUser",e,t,r)}}),Object.defineProperty(t.prototype,"unSubscribeUser",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("unSubscribeUser",e,t)}}),Object.defineProperty(t.prototype,"getSubscribeUserList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("getSubscribeUserList",e,t,r)}}),Object.defineProperty(t.prototype,"getSubscribeUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getSubscribeUserStatus",e,t)}}),Object.defineProperty(t.prototype,"getConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getConversations",e)}}),Object.defineProperty(t.prototype,"updateMyUserProfile",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("updateMyUserProfile",e)}}),Object.defineProperty(t.prototype,"getUserProfiles",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUserProfiles",e)}}),Object.defineProperty(t.prototype,"getMyUserProfile",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("getMyUserProfile")}}),Object.defineProperty(t.prototype,"updateMyUserProfileVisibility",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("updateMyUserProfileVisibility",e)}}),Object.defineProperty(t.prototype,"getMyUserProfileVisibility",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("getMyUserProfileVisibility")}}),Object.defineProperty(t.prototype,"searchUserProfileByUniqueId",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("searchUserProfileByUniqueId",e)}}),Object.defineProperty(t.prototype,"createGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return d(this,void 0,void 0,(function(){return y(this,(function(i){return[2,this._callMain("createGroup",e,t,r,n)]}))}))}}),Object.defineProperty(t.prototype,"updateGroupInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("updateGroupInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getGroupsInfo",e)}}),Object.defineProperty(t.prototype,"kickGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("kickGroupMembers",e,t,r)}}),Object.defineProperty(t.prototype,"quitGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("quitGroup",e,t)}}),Object.defineProperty(t.prototype,"dismissGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("dismissGroup",e)}}),Object.defineProperty(t.prototype,"transferGroupOwner",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return this._callMain("transferGroupOwner",e,t,r,n)}}),Object.defineProperty(t.prototype,"setGroupManagers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setGroupManagers",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupMembersByRole",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("getGroupMembersByRole",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("getGroupMembers",e,t)}}),Object.defineProperty(t.prototype,"setGroupMemberInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return this._callMain("setGroupMemberInfo",e,t,r,n)}}),Object.defineProperty(t.prototype,"searchGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("searchGroupMembers",e,t,r)}}),Object.defineProperty(t.prototype,"joinGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("joinGroup",e)}}),Object.defineProperty(t.prototype,"inviteUsersToGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("inviteUsersToGroup",e,t)}}),Object.defineProperty(t.prototype,"memberInviteResponse",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("memberInviteResponse",e)}}),Object.defineProperty(t.prototype,"getGroupApplications",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("getGroupApplications",e,t,r)}}),Object.defineProperty(t.prototype,"getJoinedGroupsByRole",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("getJoinedGroupsByRole",e,t)}}),Object.defineProperty(t.prototype,"searchJoinedGroups",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("searchJoinedGroups",e,t)}}),Object.defineProperty(t.prototype,"getJoinedGroups",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getJoinedGroups",e)}}),Object.defineProperty(t.prototype,"setGroupRemark",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("setGroupRemark",e,t)}}),Object.defineProperty(t.prototype,"setGroupFollows",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setGroupFollows",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupFollows",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getGroupFollows",e)}}),Object.defineProperty(t.prototype,"addFriend",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("addFriend",e,t,r)}}),Object.defineProperty(t.prototype,"deleteFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("deleteFriends",e,t)}}),Object.defineProperty(t.prototype,"acceptFriendApplication",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("acceptFriendApplication",e)}}),Object.defineProperty(t.prototype,"refuseFriendApplication",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("refuseFriendApplication",e,t)}}),Object.defineProperty(t.prototype,"setFriendInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setFriendInfo",e,t,r)}}),Object.defineProperty(t.prototype,"checkFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("checkFriends",e,t)}}),Object.defineProperty(t.prototype,"getFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("getFriends",e)}}),Object.defineProperty(t.prototype,"getFriendApplications",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("getFriendApplications",e,t,r)}}),Object.defineProperty(t.prototype,"deleteFriendApplication",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return this._callMain("deleteFriendApplication",e,t)}}),Object.defineProperty(t.prototype,"getFriendsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("getFriendsInfo",e)}}),Object.defineProperty(t.prototype,"searchFriendsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("searchFriendsInfo",e)}}),Object.defineProperty(t.prototype,"setFriendAddPermission",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("setFriendAddPermission",e)}}),Object.defineProperty(t.prototype,"getFriendAddPermission",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("getFriendAddPermission")}}),Object.defineProperty(t.prototype,"setNotificationQuietHoursWithSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return d(this,void 0,void 0,(function(){return y(this,(function(t){return[2,v(this,w,"m",_).call(this,"setNotificationQuietHoursWithSetting",e)]}))}))}}),Object.defineProperty(t.prototype,"removeNotificationQuietHoursSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,v(this,w,"m",_).call(this,"removeNotificationQuietHoursSetting")]}))}))}}),Object.defineProperty(t.prototype,"getNotificationQuietHoursSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(){return d(this,void 0,void 0,(function(){return y(this,(function(e){return[2,v(this,w,"m",_).call(this,"getNotificationQuietHoursSetting")]}))}))}}),Object.defineProperty(t.prototype,"getStatsUrlList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getStatsUrlList")}}),Object.defineProperty(t.prototype,"sendReadReceiptResponseV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"sendReadReceiptResponseV5",e,t)}}),Object.defineProperty(t.prototype,"getMessageReadReceiptInfoV5ByIdentifiers",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getMessageReadReceiptInfoV5ByIdentifiers",e)}}),Object.defineProperty(t.prototype,"getMessagesReadReceiptUsersByPageV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getMessagesReadReceiptUsersByPageV5",e,t,r)}}),Object.defineProperty(t.prototype,"getMessagesReadReceiptByUsersV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"getMessagesReadReceiptByUsersV5",e,t,r)}}),Object.defineProperty(t.prototype,"requestSpeechToTextForMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"requestSpeechToTextForMessage",e)}}),Object.defineProperty(t.prototype,"setMessageSpeechToTextVisible",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"setMessageSpeechToTextVisible",e,t)}}),Object.defineProperty(t.prototype,"translateWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return v(this,w,"m",_).call(this,"translateWithParams",e,t,r,n)}}),Object.defineProperty(t.prototype,"setTranslationLanguage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"setTranslationLanguage",e)}}),Object.defineProperty(t.prototype,"getTranslationLanguage",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getTranslationLanguage")}}),Object.defineProperty(t.prototype,"setAutoTranslateEnabled",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"setAutoTranslateEnabled",e)}}),Object.defineProperty(t.prototype,"getAutoTranslateEnabled",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"getAutoTranslateEnabled")}}),Object.defineProperty(t.prototype,"modifyMessageWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"modifyMessageWithParams",e)}}),Object.defineProperty(t.prototype,"refreshReferenceMessageWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return d(this,void 0,void 0,(function(){var i,a,l,u=this;return y(this,(function(c){return a=(i=function(e,t){var r=[e,Date.now(),Math.floor(Math.random()*Date.now())].join("_");return u._resolveMaps[r]=function(r){try{t(r)}catch(t){u.logger.error(o.L_CALLBACK_E,JSON.stringify({error:null==t?void 0:t.stack,pos:e}))}},r})("localMessageBlock",n),l=i("remoteMessageBlock",r),[2,v(this,w,"m",_).call(this,"refreshReferenceMessageWithParams",e,t,l,a)]}))}))}}),Object.defineProperty(t.prototype,"syncRemoteConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(){return v(this,w,"m",_).call(this,"syncRemoteConversations")}}),Object.defineProperty(t.prototype,"sendUltraGroupTypingStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"sendUltraGroupTypingStatus",e)}}),Object.defineProperty(t.prototype,"getRemoteMessagesByUIds",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getRemoteMessagesByUIds",e,t)}}),Object.defineProperty(t.prototype,"getUGUnreadMentionedDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUGUnreadMentionedDigest",e)}}),Object.defineProperty(t.prototype,"deleteLocalUGMessagesForAllChannel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"deleteLocalUGMessagesForAllChannel",e,t)}}),Object.defineProperty(t.prototype,"updateUGMessageExpansion",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return v(this,w,"m",_).call(this,"updateUGMessageExpansion",e,t,r)}}),Object.defineProperty(t.prototype,"getUGFirstUnreadMessageDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getUGFirstUnreadMessageDigest",e)}}),Object.defineProperty(t.prototype,"getSubscribeUsersOnlineStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getSubscribeUsersOnlineStatus",e)}}),Object.defineProperty(t.prototype,"saveEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"saveEditedMessageDraft",e,t)}}),Object.defineProperty(t.prototype,"getEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"getEditedMessageDraft",e)}}),Object.defineProperty(t.prototype,"clearEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return v(this,w,"m",_).call(this,"clearEditedMessageDraft",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionMeConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return v(this,w,"m",_).call(this,"getUnreadMentionMeConversationList",e,t)}}),t}(p);P=new WeakMap,w=new WeakSet,_=function(e){for(var t=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return new Promise((function(n){var i,o=C(e);t._resolveMaps[o]=function(e){var t=e.code,r=e.msg,i=e.data;t!==l.SUCCESS?n(c(t,r,i)):n(u(i))},(i=window.__ContextBridge__).send.apply(i,m(["__RC_CHANNEL_CALL_MAIN__",o,e],h(r),!1))}))};var S={on:function(t,r){e.on(t,(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];r.apply(void 0,m([e],h(t),!1))}))},send:function(t){for(var r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];e.send.apply(e,m([t],h(r),!1))},sendSync:function(t){for(var r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return e.sendSync.apply(e,m([t],h(r),!1))},getProcessInfo:function(e){return process[e]},callProcessMethod:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return(t=process)[e].apply(t,m([],h(r),!1))}};window&&(window.RCCppEngine=T,window.__ContextBridge__=S);var R=function(){t&&t.exposeInMainWorld("__ContextBridge__",S)};export{T as RCCppEngine,R as initContextBridge};
|
|
15
|
+
***************************************************************************** */var f=function(e,t){return f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},f(e,t)};function p(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}f(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function g(e,t,r,n){return new(r||(r=Promise))((function(o,i){function a(e){try{u(n.next(e))}catch(e){i(e)}}function l(e){try{u(n.throw(e))}catch(e){i(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(a,l)}u((n=n.apply(e,t||[])).next())}))}function h(e,t){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:l(0),throw:l(1),return:l(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(i){return function(l){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(o=a.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=t.call(e,a)}catch(e){i=[6,e],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,l])}}}function y(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)a.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return a}function d(e,t,r){if(r||2===arguments.length)for(var n,o=0,i=t.length;o<i;o++)!n&&o in t||(n||(n=Array.prototype.slice.call(t,0,o)),n[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))}function m(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)}var v,w,P,O=function(e){function t(t,n,o,i){var a=this,l=r();return l.setLogReader((function(e,t,r,n){return g(a,void 0,void 0,(function(){return h(this,(function(e){return[2,{logs:[]}]}))}))})),l.setLogWriter((function(e){i(e)})),a=e.call(this,t,n,o,l)||this}return p(t,e),Object.defineProperty(t.prototype,"getTimestamp4RealtimeLog",{enumerable:!1,configurable:!0,writable:!0,value:function(){return 0}}),Object.defineProperty(t.prototype,"setTimestamp4RealtimeLog",{enumerable:!1,configurable:!0,writable:!0,value:function(e){}}),t}(n),j=0,C=Date.now(),_=function(e){var t=Date.now();return C!==t&&(C=t,j=0),[e,window.__ContextBridge__.getProcessInfo("pid"),t,j++].join("__")};o.add("electron-renderer","5.32.0-c-rtc-alpha.2");var M=function(){return g(void 0,void 0,void 0,(function(){return h(this,(function(e){return[2,b(s.NOT_SUPPORT,"Not support")]}))}))},U=function(e){function t(t,r){var n,o=this,u=function(e){window.__ContextBridge__.send("__RC_CHANNEL_SEND_2_MAIN__","onReceiveRendererLog",e)},s=new O(r.appkey,"IMLib","IM",u);return o=e.call(this,t,r,s)||this,v.add(o),Object.defineProperty(o,"_cache",{enumerable:!0,configurable:!0,writable:!0,value:void 0}),w.set(o,void 0),Object.defineProperty(o,"_resolveMaps",{enumerable:!0,configurable:!0,writable:!0,value:{}}),Object.defineProperty(o,"batchGetMessageReadReceiptInfoV4",{enumerable:!0,configurable:!0,writable:!0,value:M}),Object.defineProperty(o,"getRealtimeConversations",{enumerable:!0,configurable:!0,writable:!0,value:M}),Object.defineProperty(o,"getRealtimeConTotalUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:M}),Object.defineProperty(o,"clearRealtimeConUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:M}),Object.defineProperty(o,"removeRealtimeConversations",{enumerable:!0,configurable:!0,writable:!0,value:M}),Object.defineProperty(o,"batchGetRealtimeConUnreadCount",{enumerable:!0,configurable:!0,writable:!0,value:M}),function(e,t,r,n,o){if("m"===n)throw new TypeError("Private method is not writable");if("a"===n&&!o)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!o:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");"a"===n?o.call(e,r):o?o.value=r:t.set(e,r)}(o,w,u,"f"),s.setOutputLevel(r.logOutputLevel),window.__ContextBridge__.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(e,r){for(var n=[],l=2;l<arguments.length;l++)n[l-2]=arguments[l];var u=t[r];if(u){switch(r){case"onNaviDataChange":o._cache.naviInfo=n[0];break;case"onRTCDataChange":return void o._receiveRtcKv(new Uint8Array(n[0]));case"onConnected":o._cache=n[0];break;case"onSuspend":o._setConnectionStatus(a.SUSPENDED);break;case"onDisconnected":o._setConnectionStatus(a.DISCONNECTED);break;case"onConnecting":o._setConnectionStatus(a.CONNECTING)}u.apply(void 0,d([],y(n),!1))}else o.logger.error(i.L_UNSUPPORT_NTF_FROM_MAIN_E,r)})),window.__ContextBridge__.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=o._resolveMaps[t];i&&(delete o._resolveMaps[t],i.apply(void 0,d([],y(r),!1)))})),o._options.httpInMainProcess&&(l.httpReq=o.sendHTTPRequest.bind(o)),window.__ContextBridge__.send("__RC_INNER_COMMAND_INIT__",{navigators:r.navigators,areaCode:r.areaCode,logServerUrl:r.logServerUrl,environment:r.environment,enableReadReceiptStorage:r.enableReadReceiptStorage,useNaviV2:null!==(n=r.useNaviV2)&&void 0!==n&&n}),o._cache=o._callMainSync("getMainProcessCache"),o}return p(t,e),Object.defineProperty(t.prototype,"chat",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"chatroom",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"userSettings",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"dataHosting",{get:function(){return this},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"_setConnectionStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){this._cache.connectionStatus=e}}),Object.defineProperty(t.prototype,"sendHTTPRequest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("sendHTTPRequest",e)}}),Object.defineProperty(t.prototype,"setUserStatusListener",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){throw new Error("TODO -> RCCppEngine.setUserStatusListener")}}),Object.defineProperty(t.prototype,"_callMain",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return new Promise((function(n){var o,i=_(e);t._resolveMaps[i]=n,(o=window.__ContextBridge__).send.apply(o,d(["__RC_CHANNEL_CALL_MAIN__",i,e],y(r),!1))}))}}),Object.defineProperty(t.prototype,"_send2Main",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];(t=window.__ContextBridge__).send.apply(t,d(["__RC_CHANNEL_SEND_2_MAIN__",e],y(r),!1))}}),Object.defineProperty(t.prototype,"_callMainSync",{enumerable:!1,configurable:!0,writable:!0,value:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return this.logger.info(i.L_CALL_MAIN_SYNC_O,e),(t=window.__ContextBridge__).sendSync.apply(t,d(["__RC_CHANNEL_CALL_MAIN_SYNC__",e],y(r),!1))}}),Object.defineProperty(t.prototype,"refetchNaviInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return this._callMain("refetchNaviInfo")}}),Object.defineProperty(t.prototype,"naviInfo",{get:function(){return this._cache.naviInfo},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"createLogger",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return new O(this._appkey,e,t,m(this,w,"f"))}}),Object.defineProperty(t.prototype,"connectionStatus",{get:function(){return this._cache.connectionStatus},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"usingCppEngine",{get:function(){return!0},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"connect",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return g(this,void 0,void 0,(function(){return h(this,(function(o){return[2,m(this,v,"m",P).call(this,"connect",e,t,r,n)]}))}))}}),Object.defineProperty(t.prototype,"reportSDKInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){this._send2Main("reportSDKInfo",e)}}),Object.defineProperty(t.prototype,"connectedTime",{get:function(){return this._cache.connectedTime},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"getHistoryMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getHistoryMessage",e,t,r)}}),Object.defineProperty(t.prototype,"getContinuousMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getContinuousMessages",e,t)}}),Object.defineProperty(t.prototype,"getHistoryMessagesByObjectNames",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getHistoryMessagesByObjectNames",e,t)}}),Object.defineProperty(t.prototype,"deleteRemoteMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"deleteRemoteMessage",e,t)}}),Object.defineProperty(t.prototype,"recallMsg",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"recallMsg",e,t)}}),Object.defineProperty(t.prototype,"deleteRemoteMessageByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"deleteRemoteMessageByTimestamp",e,t)}}),Object.defineProperty(t.prototype,"getTopConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getTopConversationList",e,t,r)}}),Object.defineProperty(t.prototype,"getUnreadConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getUnreadConversationList",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByPageIndex",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getConversationListByPageIndex",e,t)}}),Object.defineProperty(t.prototype,"getAllConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getAllConversationList",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getConversationListByTimestamp",e,t)}}),Object.defineProperty(t.prototype,"getUntaggedConversationListByPage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getUntaggedConversationListByPage",e,t,r)}}),Object.defineProperty(t.prototype,"getConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getConversation",e)}}),Object.defineProperty(t.prototype,"batchDeleteConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"batchDeleteConversations",e)}}),Object.defineProperty(t.prototype,"getTotalUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getTotalUnreadCount",e,t,r)}}),Object.defineProperty(t.prototype,"getConversationUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getConversationUnreadCount",e)}}),Object.defineProperty(t.prototype,"getTotalUnreadCountByLevels",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getTotalUnreadCountByLevels",e,t,r)}}),Object.defineProperty(t.prototype,"clearConversationUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"clearConversationUnreadCount",e)}}),Object.defineProperty(t.prototype,"getFirstUnreadMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getFirstUnreadMessage",e)}}),Object.defineProperty(t.prototype,"getFirstUnreadMessageDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getFirstUnreadMessageDigest",e)}}),Object.defineProperty(t.prototype,"saveTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"saveTextMessageDraft",e,t)}}),Object.defineProperty(t.prototype,"getTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getTextMessageDraft",e)}}),Object.defineProperty(t.prototype,"clearTextMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"clearTextMessageDraft",e)}}),Object.defineProperty(t.prototype,"batchSetConversationToTop",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"batchSetConversationToTop",e,t,r,n)}}),Object.defineProperty(t.prototype,"batchSetConversationNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"batchSetConversationNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"batchSetConversationTranslateStrategy",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"batchSetConversationTranslateStrategy",e,t)}}),Object.defineProperty(t.prototype,"sendMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){var o=this,a=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return n&&(this._resolveMaps[a]=function(e){try{n(e)}catch(e){o.logger.error(i.L_CALLBACK_E,JSON.stringify({error:null==e?void 0:e.stack,pos:"sendMsgBefore"}))}}),m(this,v,"m",P).call(this,"sendMessage",e,t,r,a)}}),Object.defineProperty(t.prototype,"sendReadReceiptV2",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"sendReadReceiptV2",e,t,r)}}),Object.defineProperty(t.prototype,"getMessageReader",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getMessageReader",e,t,r)}}),Object.defineProperty(t.prototype,"sendReadReceiptMessageV4",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"sendReadReceiptMessageV4",e,t,r)}}),Object.defineProperty(t.prototype,"getMessageReadReceiptV4",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getMessageReadReceiptV4",e,t)}}),Object.defineProperty(t.prototype,"updateConversationReadTime",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"updateConversationReadTime",e,t)}}),Object.defineProperty(t.prototype,"disconnect",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return g(this,void 0,void 0,(function(){return h(this,(function(r){return[2,m(this,v,"m",P).call(this,"disconnect",e,t)]}))}))}}),Object.defineProperty(t.prototype,"registerMessageType",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){this._send2Main("registerMessageType",e,t)}}),Object.defineProperty(t.prototype,"joinChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"joinChatroom",e,t,r,n)}}),Object.defineProperty(t.prototype,"quitChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"quitChatroom",e)}}),Object.defineProperty(t.prototype,"getChatroomInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getChatroomInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getChatroomHistoryMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"getChatroomHistoryMessages",e,t,r,n)}}),Object.defineProperty(t.prototype,"setChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setChatroomEntry",e,t,r)}}),Object.defineProperty(t.prototype,"setChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setChatroomEntries",e,t)}}),Object.defineProperty(t.prototype,"removeChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"removeChatroomEntry",e,t,r)}}),Object.defineProperty(t.prototype,"removeChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"removeChatroomEntries",e,t)}}),Object.defineProperty(t.prototype,"getChatroomEntry",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getChatroomEntry",e,t)}}),Object.defineProperty(t.prototype,"getAllChatroomEntries",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getAllChatroomEntries",e)}}),Object.defineProperty(t.prototype,"getFileToken",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n,o,i){return m(this,v,"m",P).call(this,"getFileToken",e,t,r,n,o,i)}}),Object.defineProperty(t.prototype,"getFileUrl",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"getFileUrl",e,t,r,n)}}),Object.defineProperty(t.prototype,"setUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("setUserStatus",e)}}),Object.defineProperty(t.prototype,"subscribeUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("subscribeUserStatus",e)}}),Object.defineProperty(t.prototype,"getUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUserStatus",e)}}),Object.defineProperty(t.prototype,"clearConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"clearConversations",e,t)}}),Object.defineProperty(t.prototype,"addToBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"addToBlacklist",e)}}),Object.defineProperty(t.prototype,"removeFromBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"removeFromBlacklist",e)}}),Object.defineProperty(t.prototype,"getBlacklist",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getBlacklist")}}),Object.defineProperty(t.prototype,"getBlacklistStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getBlacklistStatus",e)}}),Object.defineProperty(t.prototype,"insertMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"insertMessage",e,t)}}),Object.defineProperty(t.prototype,"batchInsertMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"batchInsertMessage",e,t)}}),Object.defineProperty(t.prototype,"getLocalMessageCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getLocalMessageCount",e)}}),Object.defineProperty(t.prototype,"deleteLocalMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"deleteLocalMessages",e)}}),Object.defineProperty(t.prototype,"deleteLocalMessagesByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"deleteLocalMessagesByTimestamp",e,t,r)}}),Object.defineProperty(t.prototype,"batchClearLocalMessagesByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"batchClearLocalMessagesByTimestamp",e)}}),Object.defineProperty(t.prototype,"batchClearRemoteHistoryMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"batchClearRemoteHistoryMessages",e,t)}}),Object.defineProperty(t.prototype,"clearLocalMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"clearLocalMessages",e)}}),Object.defineProperty(t.prototype,"getMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getMessage",e)}}),Object.defineProperty(t.prototype,"setMessageContent",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setMessageContent",e,t,r)}}),Object.defineProperty(t.prototype,"setMessageSearchField",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return this._callMain("setMessageSearchField",e,t,r)}}),Object.defineProperty(t.prototype,"searchConversationByContent",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"searchConversationByContent",e,t,r,n)}}),Object.defineProperty(t.prototype,"searchConversationByContentWithAllChannel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"searchConversationByContentWithAllChannel",e,t,r)}}),Object.defineProperty(t.prototype,"searchMessagesWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"searchMessagesWithParams",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionedMessages",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUnreadMentionedMessages",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionedCount",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUnreadMentionedCount",e)}}),Object.defineProperty(t.prototype,"getMessagesAroundTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"getMessagesAroundTimestamp",e,t,r,n)}}),Object.defineProperty(t.prototype,"setMessageSentStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setMessageSentStatus",e,t)}}),Object.defineProperty(t.prototype,"setMessageReceivedStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setMessageReceivedStatus",e,t)}}),Object.defineProperty(t.prototype,"updateMessageReceiptStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"updateMessageReceiptStatus",e,t,r,n)}}),Object.defineProperty(t.prototype,"clearUnreadCountByTimestamp",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"clearUnreadCountByTimestamp",e,t)}}),Object.defineProperty(t.prototype,"clearAllSGUnreadCount",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,m(this,v,"m",P).call(this,"clearAllSGUnreadCount")]}))}))}}),Object.defineProperty(t.prototype,"serverTime",{get:function(){return Date.now()-this._cache.deltaTime},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"deviceId",{get:function(){return this._cache.deviceId},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"setPushConfig",{enumerable:!1,configurable:!0,writable:!0,value:function(e){}}),Object.defineProperty(t.prototype,"userId",{get:function(){return this._cache.crtUserId},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"bindRTCRoomForChatroom",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return this._callMain("bindRTCRoomForChatroom",e)}}),Object.defineProperty(t.prototype,"rtcSignaling",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return g(this,void 0,void 0,(function(){var o;return h(this,(function(i){switch(i.label){case 0:return o=Array.prototype.slice.call(new Uint8Array(n)),[4,m(this,v,"m",P).call(this,"rtcSignaling",e,t,r,o)];case 1:return[2,i.sent().trans((function(e){return new Uint8Array(e)}))]}}))}))}}),Object.defineProperty(t.prototype,"rtcPing",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"rtcPing",e,t,r)}}),Object.defineProperty(t.prototype,"createTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"createTag",e)}}),Object.defineProperty(t.prototype,"removeTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"removeTag",e)}}),Object.defineProperty(t.prototype,"updateTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"updateTag",e)}}),Object.defineProperty(t.prototype,"getTagList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getTagList")}}),Object.defineProperty(t.prototype,"addTagForConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"addTagForConversations",e,t)}}),Object.defineProperty(t.prototype,"removeTagForConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"removeTagForConversations",e,t)}}),Object.defineProperty(t.prototype,"removeTagsForConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"removeTagsForConversation",e,t)}}),Object.defineProperty(t.prototype,"getConversationListByTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getConversationListByTag",e,t,r)}}),Object.defineProperty(t.prototype,"getUnreadCountByTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getUnreadCountByTag",e,t)}}),Object.defineProperty(t.prototype,"setConversationStatusInTag",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setConversationStatusInTag",e,t,r)}}),Object.defineProperty(t.prototype,"getTagsForConversation",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getTagsForConversation",e)}}),Object.defineProperty(t.prototype,"clearLocalData",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"clearLocalData")}}),Object.defineProperty(t.prototype,"setCallInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setCallInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getAllUnreadMentionedCount",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getAllUnreadMentionedCount")}}),Object.defineProperty(t.prototype,"getUltraGroupList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUltraGroupList",e)}}),Object.defineProperty(t.prototype,"getBlockedUGList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getBlockedUGList")}}),Object.defineProperty(t.prototype,"getBlockedConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getBlockedConversationList",e)}}),Object.defineProperty(t.prototype,"sendUltraMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return this.sendMessage(e,t,r,n)}}),Object.defineProperty(t.prototype,"getConversationNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getConversationNotificationLevel",e)}}),Object.defineProperty(t.prototype,"setConversationTypeNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setConversationTypeNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"getConversationTypeNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getConversationTypeNotificationLevel",e)}}),Object.defineProperty(t.prototype,"getUGUnreadCountForAllChannels",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getUGUnreadCountForAllChannels",e,t,r)}}),Object.defineProperty(t.prototype,"setUGDefaultNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setUGDefaultNotificationLevel",e,t,r)}}),Object.defineProperty(t.prototype,"getUGDefaultNotificationLevel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getUGDefaultNotificationLevel",e,t)}}),Object.defineProperty(t.prototype,"getUGUnreadInfoList",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUGUnreadInfoList",e)}}),Object.defineProperty(t.prototype,"getOSInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,this._callMain("getOSInfo")]}))}))}}),Object.defineProperty(t.prototype,"getProcessInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,{code:s.SUCCESS,data:{title:window.__ContextBridge__.getProcessInfo("title"),pid:window.__ContextBridge__.getProcessInfo("pid"),ppid:window.__ContextBridge__.getProcessInfo("ppid"),platform:window.__ContextBridge__.getProcessInfo("platform"),arch:window.__ContextBridge__.getProcessInfo("arch"),uptime:window.__ContextBridge__.callProcessMethod("uptime"),cpuUsage:window.__ContextBridge__.callProcessMethod("cpuUsage"),memoryUsage:window.__ContextBridge__.callProcessMethod("cpuUsage"),resourceUsage:window.__ContextBridge__.callProcessMethod("cpuUsage")}}]}))}))}}),Object.defineProperty(t.prototype,"getMainProcessInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,this._callMain("getMainProcessInfo")]}))}))}}),Object.defineProperty(t.prototype,"setProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setProxy",e)}}),Object.defineProperty(t.prototype,"getProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getProxy")}}),Object.defineProperty(t.prototype,"testProxy",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"testProxy",e,t)}}),Object.defineProperty(t.prototype,"setCheckDuplicateMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setCheckDuplicateMessage",e)}}),Object.defineProperty(t.prototype,"setCheckChatRoomDuplicateMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setCheckChatRoomDuplicateMessage",e)}}),Object.defineProperty(t.prototype,"setNetwork",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){this._send2Main("setNetwork",e,t)}}),Object.defineProperty(t.prototype,"subscribeUser",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"subscribeUser",e,t,r)}}),Object.defineProperty(t.prototype,"unSubscribeUser",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"unSubscribeUser",e,t)}}),Object.defineProperty(t.prototype,"getSubscribeUserList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getSubscribeUserList",e,t,r)}}),Object.defineProperty(t.prototype,"getSubscribeUserStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getSubscribeUserStatus",e,t)}}),Object.defineProperty(t.prototype,"getConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getConversations",e)}}),Object.defineProperty(t.prototype,"updateMyUserProfile",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"updateMyUserProfile",e)}}),Object.defineProperty(t.prototype,"getUserProfiles",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUserProfiles",e)}}),Object.defineProperty(t.prototype,"getMyUserProfile",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getMyUserProfile")}}),Object.defineProperty(t.prototype,"updateMyUserProfileVisibility",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"updateMyUserProfileVisibility",e)}}),Object.defineProperty(t.prototype,"getMyUserProfileVisibility",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getMyUserProfileVisibility")}}),Object.defineProperty(t.prototype,"searchUserProfileByUniqueId",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"searchUserProfileByUniqueId",e)}}),Object.defineProperty(t.prototype,"createGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return g(this,void 0,void 0,(function(){return h(this,(function(o){return[2,m(this,v,"m",P).call(this,"createGroup",e,t,r,n)]}))}))}}),Object.defineProperty(t.prototype,"updateGroupInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"updateGroupInfo",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getGroupsInfo",e)}}),Object.defineProperty(t.prototype,"kickGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"kickGroupMembers",e,t,r)}}),Object.defineProperty(t.prototype,"quitGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"quitGroup",e,t)}}),Object.defineProperty(t.prototype,"dismissGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"dismissGroup",e)}}),Object.defineProperty(t.prototype,"transferGroupOwner",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"transferGroupOwner",e,t,r,n)}}),Object.defineProperty(t.prototype,"setGroupManagers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setGroupManagers",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupMembersByRole",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getGroupMembersByRole",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getGroupMembers",e,t)}}),Object.defineProperty(t.prototype,"setGroupMemberInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"setGroupMemberInfo",e,t,r,n)}}),Object.defineProperty(t.prototype,"searchGroupMembers",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"searchGroupMembers",e,t,r)}}),Object.defineProperty(t.prototype,"joinGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"joinGroup",e)}}),Object.defineProperty(t.prototype,"inviteUsersToGroup",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"inviteUsersToGroup",e,t)}}),Object.defineProperty(t.prototype,"memberInviteResponse",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"memberInviteResponse",e)}}),Object.defineProperty(t.prototype,"getGroupApplications",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getGroupApplications",e,t,r)}}),Object.defineProperty(t.prototype,"getJoinedGroupsByRole",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getJoinedGroupsByRole",e,t)}}),Object.defineProperty(t.prototype,"searchJoinedGroups",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"searchJoinedGroups",e,t)}}),Object.defineProperty(t.prototype,"getJoinedGroups",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getJoinedGroups",e)}}),Object.defineProperty(t.prototype,"setGroupRemark",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setGroupRemark",e,t)}}),Object.defineProperty(t.prototype,"setGroupFollows",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setGroupFollows",e,t,r)}}),Object.defineProperty(t.prototype,"getGroupFollows",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getGroupFollows",e)}}),Object.defineProperty(t.prototype,"addFriend",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"addFriend",e,t,r)}}),Object.defineProperty(t.prototype,"deleteFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"deleteFriends",e,t)}}),Object.defineProperty(t.prototype,"acceptFriendRequest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"acceptFriendRequest",e)}}),Object.defineProperty(t.prototype,"refuseFriendRequest",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"refuseFriendRequest",e,t)}}),Object.defineProperty(t.prototype,"setFriendInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"setFriendInfo",e,t,r)}}),Object.defineProperty(t.prototype,"checkFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"checkFriends",e,t)}}),Object.defineProperty(t.prototype,"getFriends",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getFriends",e,t)}}),Object.defineProperty(t.prototype,"getFriendApplications",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getFriendApplications",e,t,r)}}),Object.defineProperty(t.prototype,"getFriendsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getFriendsInfo",e)}}),Object.defineProperty(t.prototype,"searchFriendsInfo",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"searchFriendsInfo",e)}}),Object.defineProperty(t.prototype,"setFriendAddPermission",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setFriendAddPermission",e)}}),Object.defineProperty(t.prototype,"getFriendAddPermission",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getFriendAddPermission")}}),Object.defineProperty(t.prototype,"setNotificationQuietHoursWithSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return g(this,void 0,void 0,(function(){return h(this,(function(t){return[2,m(this,v,"m",P).call(this,"setNotificationQuietHoursWithSetting",e)]}))}))}}),Object.defineProperty(t.prototype,"removeNotificationQuietHoursSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,m(this,v,"m",P).call(this,"removeNotificationQuietHoursSetting")]}))}))}}),Object.defineProperty(t.prototype,"getNotificationQuietHoursSetting",{enumerable:!1,configurable:!0,writable:!0,value:function(){return g(this,void 0,void 0,(function(){return h(this,(function(e){return[2,m(this,v,"m",P).call(this,"getNotificationQuietHoursSetting")]}))}))}}),Object.defineProperty(t.prototype,"getStatsUrlList",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getStatsUrlList")}}),Object.defineProperty(t.prototype,"sendReadReceiptResponseV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"sendReadReceiptResponseV5",e,t)}}),Object.defineProperty(t.prototype,"getMessageReadReceiptInfoV5ByIdentifiers",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getMessageReadReceiptInfoV5ByIdentifiers",e)}}),Object.defineProperty(t.prototype,"getMessagesReadReceiptUsersByPageV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getMessagesReadReceiptUsersByPageV5",e,t,r)}}),Object.defineProperty(t.prototype,"getMessagesReadReceiptByUsersV5",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"getMessagesReadReceiptByUsersV5",e,t,r)}}),Object.defineProperty(t.prototype,"requestSpeechToTextForMessage",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"requestSpeechToTextForMessage",e)}}),Object.defineProperty(t.prototype,"setMessageSpeechToTextVisible",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"setMessageSpeechToTextVisible",e,t)}}),Object.defineProperty(t.prototype,"translateWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return m(this,v,"m",P).call(this,"translateWithParams",e,t,r,n)}}),Object.defineProperty(t.prototype,"setTranslationLanguage",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setTranslationLanguage",e)}}),Object.defineProperty(t.prototype,"getTranslationLanguage",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getTranslationLanguage")}}),Object.defineProperty(t.prototype,"setAutoTranslateEnabled",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"setAutoTranslateEnabled",e)}}),Object.defineProperty(t.prototype,"getAutoTranslateEnabled",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"getAutoTranslateEnabled")}}),Object.defineProperty(t.prototype,"modifyMessageWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"modifyMessageWithParams",e)}}),Object.defineProperty(t.prototype,"refreshReferenceMessageWithParams",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r,n){return g(this,void 0,void 0,(function(){var o,a,l,u=this;return h(this,(function(s){return a=(o=function(e,t){var r=[e,Date.now(),Math.floor(Math.random()*Date.now())].join("_");return u._resolveMaps[r]=function(r){try{t(r)}catch(t){u.logger.error(i.L_CALLBACK_E,JSON.stringify({error:null==t?void 0:t.stack,pos:e}))}},r})("localMessageBlock",n),l=o("remoteMessageBlock",r),[2,m(this,v,"m",P).call(this,"refreshReferenceMessageWithParams",e,t,l,a)]}))}))}}),Object.defineProperty(t.prototype,"syncRemoteConversations",{enumerable:!1,configurable:!0,writable:!0,value:function(){return m(this,v,"m",P).call(this,"syncRemoteConversations")}}),Object.defineProperty(t.prototype,"sendUltraGroupTypingStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"sendUltraGroupTypingStatus",e)}}),Object.defineProperty(t.prototype,"getRemoteMessagesByUIds",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getRemoteMessagesByUIds",e,t)}}),Object.defineProperty(t.prototype,"getUGUnreadMentionedDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUGUnreadMentionedDigest",e)}}),Object.defineProperty(t.prototype,"deleteLocalUGMessagesForAllChannel",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"deleteLocalUGMessagesForAllChannel",e,t)}}),Object.defineProperty(t.prototype,"updateUGMessageExpansion",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t,r){return m(this,v,"m",P).call(this,"updateUGMessageExpansion",e,t,r)}}),Object.defineProperty(t.prototype,"getUGFirstUnreadMessageDigest",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getUGFirstUnreadMessageDigest",e)}}),Object.defineProperty(t.prototype,"getSubscribeUsersOnlineStatus",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getSubscribeUsersOnlineStatus",e)}}),Object.defineProperty(t.prototype,"saveEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"saveEditedMessageDraft",e,t)}}),Object.defineProperty(t.prototype,"getEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"getEditedMessageDraft",e)}}),Object.defineProperty(t.prototype,"clearEditedMessageDraft",{enumerable:!1,configurable:!0,writable:!0,value:function(e){return m(this,v,"m",P).call(this,"clearEditedMessageDraft",e)}}),Object.defineProperty(t.prototype,"getUnreadMentionMeConversationList",{enumerable:!1,configurable:!0,writable:!0,value:function(e,t){return m(this,v,"m",P).call(this,"getUnreadMentionMeConversationList",e,t)}}),t}(u);w=new WeakMap,v=new WeakSet,P=function(e){for(var t=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return new Promise((function(n){var o,i=_(e);t._resolveMaps[i]=function(e){var t=e.code,r=e.msg,o=e.data;t!==s.SUCCESS?n(b(t,r,o)):n(c(o))},(o=window.__ContextBridge__).send.apply(o,d(["__RC_CHANNEL_CALL_MAIN__",i,e],y(r),!1))}))};var T={on:function(t,r){e.on(t,(function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];r.apply(void 0,d([e],y(t),!1))}))},send:function(t){for(var r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];e.send.apply(e,d([t],y(r),!1))},sendSync:function(t){for(var r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return e.sendSync.apply(e,d([t],y(r),!1))},getProcessInfo:function(e){return process[e]},callProcessMethod:function(e){for(var t,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];return(t=process)[e].apply(t,d([],y(r),!1))}};window&&(window.RCCppEngine=U,window.__ContextBridge__=T);var R=function(){t&&t.exposeInMainWorld("__ContextBridge__",T)};export{U as RCCppEngine,R as initContextBridge};
|