@rongcloud/electron-renderer 5.7.3 → 5.7.4-beem.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.d.ts CHANGED
@@ -46,7 +46,7 @@ declare class RCCppEngine extends AEngine {
46
46
  getConversationList(count: number, conversationType?: ConversationType, startTime?: number, order?: 0 | 1, channelId?: string): IPromiseResult<IReceivedConversation[]>;
47
47
  getConversationsByPage(conversationTypes: ConversationType[], startTime: number, count: number, channelId: string): IPromiseResult<IReceivedConversation[]>;
48
48
  getUnreadConversationList(conversationTypes: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
49
- getConversationListWithAllChannel(): IPromiseResult<IReceivedConversation[]>;
49
+ getConversationListWithAllChannel(types?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
50
50
  getConversationListWithAllChannelByPage(index: number, limit: number): IPromiseResult<IReceivedConversation[]>;
51
51
  getConversation(conversationType: ConversationType, targetId: string, channelId: string): IPromiseResult<IReceivedConversation>;
52
52
  removeConversation(conversationType: ConversationType, targetId: string, channelId: string): Promise<ErrorCode>;
@@ -55,14 +55,35 @@ declare class RCCppEngine extends AEngine {
55
55
  getTotalUnreadCountByLevels(conversationTypes: ConversationType[], levels: NotificationLevel[]): Promise<IAsyncRes<number>>;
56
56
  clearConversationUnreadCount(conversationType: ConversationType, targetId: string, channelId: string): Promise<ErrorCode>;
57
57
  getFirstUnreadMessage(conversationType: ConversationType, targetId: string, channelId: string): IPromiseResult<IReceivedMessage | null>;
58
+ getMessageByUids(msgUids: string[]): IReceivedMessage[];
59
+ setMessageSearchContent(messageId: number, content: string): Promise<ErrorCode>;
60
+ getMessageByMsgUids(targetId: string, channelId: string, conversationType: ConversationType, msgUids: string[]): IReceivedMessage[];
58
61
  saveConversationMessageDraft(conversationType: ConversationType, targetId: string, draft: string): Promise<ErrorCode>;
59
62
  getConversationMessageDraft(conversationType: ConversationType, targetId: string): IPromiseResult<string>;
60
63
  clearConversationMessageDraft(conversationType: ConversationType, targetId: string): Promise<ErrorCode>;
61
64
  pullConversationStatus(timestamp: number): Promise<IAsyncRes<IServerConversationStatus[]>>;
62
65
  batchSetConversationStatus(statusList: ISetConversationStatusOptions[]): Promise<ErrorCode>;
66
+ setConversationsMuteStatus(statusList: ISetConversationStatusOptions[]): Promise<ErrorCode>;
67
+ setConversationsTopStatus(statusList: ISetConversationStatusOptions[]): Promise<ErrorCode>;
63
68
  sendMessage(conversationType: ConversationType, targetId: string, options: ISendMsgOptions, onBefore?: (messageId: number) => void, traceId?: string): IPromiseResult<IReceivedMessage>;
64
69
  sendReadReceiptMessage(targetId: string, messageUIds: string[], channelId?: string): Promise<IAsyncRes>;
65
70
  getMessageReader(targetId: string, messageUId: string, channelId?: string): IPromiseResult<IMessageReaderResponse>;
71
+ /**
72
+ * 设置群语音消息已听状态
73
+ * @param targetId
74
+ * @param channelId
75
+ * @param messageUId
76
+ */
77
+ setGroupVoiceMessagePlayed(targetId: string, channelId: string, messageUId: string): Promise<IAsyncRes>;
78
+ /**
79
+ * 获取群语音消息已听列表
80
+ * @param targetId
81
+ * @param channelId
82
+ * @param messageUId
83
+ */
84
+ getGroupVoiceMessageReader(targetId: string, channelId: string, messageUId: string): IPromiseResult<IMessageReaderResponse>;
85
+ setReadMessages(targetId: string, channelId: string, beginMessageUId: string, endMessageUId: string): Promise<IAsyncRes>;
86
+ getMessageReceiptInfo(targetId: string, messageUId: string, channelId?: string): IPromiseResult<IMessageReaderResponse>;
66
87
  disconnect(closeDB?: boolean): Promise<void>;
67
88
  pullUserSettings(version: number): IPromiseResult<IServerUserSetting>;
68
89
  registerMessageType(objectName: string, isPersited: boolean, isCounted: boolean, searchProps: string[]): void;
@@ -111,6 +132,7 @@ declare class RCCppEngine extends AEngine {
111
132
  deleteMessagesByTimestamp(conversationType: ConversationType, targetId: string, timestamp: number, cleanSpace: boolean, channelId: string): Promise<ErrorCode>;
112
133
  clearMessages(conversationType: ConversationType, targetId: string, channelId: string): Promise<ErrorCode>;
113
134
  getMessage(messageId: number | string): IPromiseResult<IReceivedMessage>;
135
+ setTextMessageExtra(messageId: number, value: string): Promise<ErrorCode>;
114
136
  setMessageContent(messageId: number, content: any, messageType: string): Promise<ErrorCode>;
115
137
  setMessageSearchField(messageId: number, content: any, searchFiles: string): Promise<ErrorCode>;
116
138
  searchConversationByContent(keyword: string, customMessageTypes: string[], channelId: string, conversationTypes?: ConversationType[]): IPromiseResult<IReceivedConversation[]>;
@@ -231,6 +253,10 @@ declare class RCCppEngine extends AEngine {
231
253
  * 设置融云消息重排开关
232
254
  */
233
255
  setCheckDuplicateMessage(enableCheck: boolean): Promise<IAsyncRes<boolean>>;
256
+ /**
257
+ * 订阅/取消订阅官方号
258
+ */
259
+ subscribeAccount(targetId: string, channelId: string, subscribe: boolean): Promise<ErrorCode>;
234
260
  }
235
261
 
236
262
  export { RCCppEngine };
package/index.esm.js CHANGED
@@ -1 +1 @@
1
- import{BasicLogger as t,VersionManage as e,LogTagId as n,ErrorCode as o,isUndefined as r,EventEmitter as i,RCConnectionStatus as a,AEngine as s}from"@rongcloud/engine";import{ipcRenderer as c}from"electron";var l=function(t,e){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},l(t,e)};function u(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}l(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function p(t,e,n,o){return new(n||(n=Promise))((function(r,i){function a(t){try{c(o.next(t))}catch(t){i(t)}}function s(t){try{c(o.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}c((o=o.apply(t,e||[])).next())}))}function h(t,e){var n,o,r,i,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(a=0)),a;)try{if(n=1,o&&(r=2&s[0]?o.return:s[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,s[1])).done)return r;switch(o=0,r&&(s=[2&s[0],r.value]),s[0]){case 0:case 1:r=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,o=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(r=a.trys,(r=r.length>0&&r[r.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!r||s[1]>r[0]&&s[1]<r[3])){a.label=s[1];break}if(6===s[0]&&a.label<r[1]){a.label=r[1],r=s;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(s);break}r[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],o=0}finally{n=r=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}function g(t,e,n){if(n||2===arguments.length)for(var o,r=0,i=e.length;r<i;r++)!o&&r in e||(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}var f="logdata",y=function(t){function e(e,n,o,r){var i=t.call(this,e,n,o)||this;return i.emiter=r,i}return u(e,t),e.prototype.flush=function(t){this.emiter.emit(f,t)},e}(t),M=0,_=Date.now(),d=function(t){var e=Date.now();return _!==e&&(_=e,M=0),[t,process.pid,e,M++].join("__")};e.add("electron-renderer","5.7.3");var C=function(t){function e(e,o,r,s){var l=this,u=new i,p=new y(s.appkey,"RC-E","IM",u);return(l=t.call(this,e,o,r,s,p)||this).waitingLogs=[],l.latestSendTimestamp=0,l._resolveMaps={},u.on(f,(function(t){l.waitingLogs.push(t),l.check2SendLog()})),l._logEmitter=u,p.setOutputLevel(s.logOutputLevel),c.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(t,e){for(var o=[],i=2;i<arguments.length;i++)o[i-2]=arguments[i];var s=r[e];if(s){if("batchMessage"===e){var c=o[0].hasMoreMsg;return delete o[0].hasMoreMsg,void s([o[0]],void 0,c)}if("onRTCDataChange"!==e){if("onConnected"===e)return l._cache=o[0],void s(void 0);"onConnecting"===e?l._cache.connectionStatus=a.CONNECTING:"onNaviDataChange"===e?l._cache.naviInfo=o[0]:"onSuspend"===e?l._cache.connectionStatus=a.SUSPENDED:"onDisconnected"===e&&(l._cache.connectionStatus=a.DISCONNECTED),s(o[0])}else{var u=o[0];l._receiveRtcKv(new Uint8Array(u))}}else l.logger.error(n.L_UNSUPPORT_NTF_FROM_MAIN_E,e)})),c.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(t,e){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=l._resolveMaps[e];r&&(delete l._resolveMaps[e],r.apply(void 0,n))})),l._options.httpInMainProcess&&(e.httpReq=l.sendHTTPRequest.bind(l)),c.send("__RC_INNER_COMMAND_INIT__",{navigators:s.navigators}),l._cache=l._callMainSync("getMainProcessCache"),l}return u(e,t),e.prototype.check2SendLog=function(){var t=Date.now();t-this.latestSendTimestamp<1e3||(this.logger.debug(n.T,"send logs 2 main -> ".concat(this.waitingLogs.length)),c.send("__RC_CHANNEL_SEND_2_MAIN__","onRendererLogsReceived",this.waitingLogs.splice(0)),this.latestSendTimestamp=t)},e.prototype.sendHTTPRequest=function(t){return this._callMain("sendHTTPRequest",t)},e.prototype.setUserStatusListener=function(t,e){throw new Error("TODO -> RCCppEngine.setUserStatusListener")},e.prototype._callMain=function(t){for(var e=this,n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];return new Promise((function(o){var r=d(t);e._resolveMaps[r]=o,c.send.apply(c,g(["__RC_CHANNEL_CALL_MAIN__",r,t],n,!1))}))},e.prototype.callExtra=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return this._callMain.apply(this,g(["callExtra",t],e,!1))},e.prototype._send2Main=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.send.apply(c,g(["__RC_CHANNEL_SEND_2_MAIN__",t],e,!1))},e.prototype._callMainSync=function(t){for(var e=[],o=1;o<arguments.length;o++)e[o-1]=arguments[o];return this.logger.info(n.L_CALL_MAIN_SYNC_O,t),c.sendSync.apply(c,g(["__RC_CHANNEL_CALL_MAIN_SYNC__",t],e,!1))},e.prototype.refetchNaviInfo=function(){return this._callMain("refetchNaviInfo")},e.prototype.getNaviInfoFromCache=function(){return this._cache.naviInfo},e.prototype.createLogger=function(t,e){return new y(this._appkey,t,e,this._logEmitter)},e.prototype.getConnectionStatus=function(){return this._cache.connectionStatus},e.prototype.connect=function(t,e,n){return p(this,void 0,void 0,(function(){return h(this,(function(o){return[2,this._callMain("connect",t,e,n)]}))}))},e.prototype.reportSDKInfo=function(t){this._callMain("reportSDKInfo",t)},e.prototype.getConnectedTime=function(){return this._cache.connectedTime},e.prototype.getHistoryMessage=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessage",t,e,n,o,r,i,a)},e.prototype.getHistoryMessagesByObjectNames=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessagesByObjectNames",t,e,n,o,r,i,a)},e.prototype.deleteRemoteMessage=function(t,e,n,o){return this._callMain("deleteRemoteMessage",t,e,n,o)},e.prototype.recallMsg=function(t,e,n,o,r){return this._callMain("recallMsg",t,e,n,o,r)},e.prototype.deleteRemoteMessageByTimestamp=function(t,e,n,o){return this._callMain("deleteRemoteMessageByTimestamp",t,e,n,o)},e.prototype.getConversationList=function(t,e,n,o,r){return this._callMain("getConversationList",t,e,n,o,r)},e.prototype.getConversationsByPage=function(t,e,n,o){return this._callMain("getConversationsByPage",t,e,n,o)},e.prototype.getUnreadConversationList=function(t){return this._callMain("getUnreadConversationList",t)},e.prototype.getConversationListWithAllChannel=function(){return this._callMain("getConversationListWithAllChannel")},e.prototype.getConversationListWithAllChannelByPage=function(t,e){return this._callMain("getConversationListWithAllChannelByPage",t,e)},e.prototype.getConversation=function(t,e,n){return this._callMain("getConversation",t,e,n)},e.prototype.removeConversation=function(t,e,n){return this._callMain("removeConversation",t,e,n)},e.prototype.getAllConversationUnreadCount=function(t,e,n){return this._callMain("getAllConversationUnreadCount",t,e,n)},e.prototype.getConversationUnreadCount=function(t,e,n){return this._callMain("getConversationUnreadCount",t,e,n)},e.prototype.getTotalUnreadCountByLevels=function(t,e){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.clearConversationUnreadCount=function(t,e,n){return this._callMain("clearConversationUnreadCount",t,e,n)},e.prototype.getFirstUnreadMessage=function(t,e,n){return this._callMain("getFirstUnreadMessage",t,e,n)},e.prototype.saveConversationMessageDraft=function(t,e,n){return this._callMain("saveConversationMessageDraft",t,e,n)},e.prototype.getConversationMessageDraft=function(t,e){return this._callMain("getConversationMessageDraft",t,e)},e.prototype.clearConversationMessageDraft=function(t,e){return this._callMain("clearConversationMessageDraft",t,e)},e.prototype.pullConversationStatus=function(t){return this._callMain("pullConversationStatus",t)},e.prototype.batchSetConversationStatus=function(t){var e=t[0].notificationLevel;return r(e)?this._callMain("batchSetConversationStatus",t):Promise.resolve(o.NOT_SUPPORT)},e.prototype.sendMessage=function(t,e,o,r,i){var a=this,s=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return r&&(this._resolveMaps[s]=function(t){try{r(t)}catch(t){a.logger.error(n.A_CALLBACK_E,JSON.stringify({error:null==t?void 0:t.stack,pos:"sendMsgBefore"}))}}),this._callMain("sendMessage",t,e,o,s,i)},e.prototype.sendReadReceiptMessage=function(t,e,n){return this._callMain("sendReadReceiptMessage",t,e,n)},e.prototype.getMessageReader=function(t,e,n){return this._callMain("getMessageReader",t,e,n)},e.prototype.disconnect=function(t){return p(this,void 0,void 0,(function(){return h(this,(function(e){return this._send2Main("disconnect",t),[2]}))}))},e.prototype.pullUserSettings=function(t){return this._callMain("pullUserSettings",t)},e.prototype.registerMessageType=function(t,e,n,o){this._send2Main("registerMessageType",t,e,n,o)},e.prototype.joinChatroom=function(t,e){return this._callMain("joinChatroom",t,e)},e.prototype.joinExistChatroom=function(t,e){return this._callMain("joinExistChatroom",t,e)},e.prototype.quitChatroom=function(t){return this._callMain("quitChatroom",t)},e.prototype.getChatroomInfo=function(t,e,n){return this._callMain("getChatroomInfo",t,e,n)},e.prototype.getChatroomHistoryMessages=function(t,e,n,o){return this._callMain("getChatroomHistoryMessages",t,e,n,o)},e.prototype.setChatroomEntry=function(t,e){return this._callMain("setChatroomEntry",t,e)},e.prototype.setChatroomEntries=function(t,e){return this._callMain("setChatroomEntries",t,e)},e.prototype.forceSetChatroomEntry=function(t,e){return this._callMain("forceSetChatroomEntry",t,e)},e.prototype.removeChatroomEntry=function(t,e){return this._callMain("removeChatroomEntry",t,e)},e.prototype.forceRemoveChatroomEntry=function(t,e){return this._callMain("forceRemoveChatroomEntry",t,e)},e.prototype.removeChatroomEntries=function(t,e){return this._callMain("removeChatroomEntries",t,e)},e.prototype.getChatroomEntry=function(t,e){return this._callMain("getChatroomEntry",t,e)},e.prototype.getAllChatroomEntry=function(t){return this._callMain("getAllChatroomEntry",t)},e.prototype.getFileToken=function(t,e,n,o){return this._callMain("getFileToken",t,e,n,o)},e.prototype.getFileUrl=function(t,e,n,o){return this._callMain("getFileUrl",t,e,n,o)},e.prototype.setUserStatus=function(t){return this._callMain("setUserStatus",t)},e.prototype.subscribeUserStatus=function(t){return this._callMain("subscribeUserStatus",t)},e.prototype.getUserStatus=function(t){return this._callMain("getUserStatus",t)},e.prototype.clearConversations=function(t,e){return this._callMain("clearConversations",t,e)},e.prototype.addToBlacklist=function(t){return this._callMain("addToBlacklist",t)},e.prototype.removeFromBlacklist=function(t){return this._callMain("removeFromBlacklist",t)},e.prototype.getBlacklist=function(){return this._callMain("getBlacklist")},e.prototype.getBlacklistStatus=function(t){return this._callMain("getBlacklistStatus",t)},e.prototype.insertMessage=function(t,e,n){return this._callMain("insertMessage",t,e,n)},e.prototype.batchInsertMessage=function(t,e){return this._callMain("batchInsertMessage",t,e)},e.prototype.getMessageCount=function(t,e,n){return this._callMain("getMessageCount",t,e,n)},e.prototype.deleteMessages=function(t){return this._callMain("deleteMessages",t)},e.prototype.deleteMessagesByTimestamp=function(t,e,n,o,r){return this._callMain("deleteMessagesByTimestamp",t,e,n,o,r)},e.prototype.clearMessages=function(t,e,n){return this._callMain("clearMessages",t,e,n)},e.prototype.getMessage=function(t){return this._callMain("getMessage",t)},e.prototype.setMessageContent=function(t,e,n){return this._callMain("setMessageContent",t,e,n)},e.prototype.setMessageSearchField=function(t,e,n){return this._callMain("setMessageSearchField",t,e,n)},e.prototype.searchConversationByContent=function(t,e,n,o){return this._callMain("searchConversationByContent",t,e,n,o)},e.prototype.searchConversationByContentWithAllChannel=function(t,e,n){return this._callMain("searchConversationByContentWithAllChannel",t,e,n)},e.prototype.searchMessageByContentWithAllChannel=function(t,e,n,o,r){return this._callMain("searchMessageByContentWithAllChannel",t,e,n,o,r)},e.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContentInTimeRangeWithAllChannel",t,e,n,o,r,i,a)},e.prototype.searchMessageByContent=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContent",t,e,n,o,r,i,a)},e.prototype.getUnreadMentionedMessages=function(t,e,n){return this._callMainSync("getUnreadMentionedMessages",t,e,n)},e.prototype.setMessageSentStatus=function(t,e){return this._callMain("setMessageSentStatus",t,e)},e.prototype.setMessageReceivedStatus=function(t,e){return this._callMain("setMessageReceivedStatus",t,e)},e.prototype.updateMessageReceiptStatus=function(t,e,n,o){return this._callMain("updateMessageReceiptStatus",t,e,n,o)},e.prototype.clearUnreadCountByTimestamp=function(t,e,n,o){return this._callMain("clearUnreadCountByTimestamp",t,e,n,o)},e.prototype.clearAllUnreadCount=function(){throw new Error("Method not implemented.")},e.prototype.getConversationNotificationStatus=function(t,e,n){return this._callMain("getConversationNotificationStatus",t,e,n)},e.prototype.getRemoteHistoryMessages=function(t,e,n,o,r,i){return this._callMain("getRemoteHistoryMessages",t,e,n,o,r,i)},e.prototype.getServerTime=function(){return this._callMainSync("getServerTime")},e.prototype.getDeviceId=function(){return this._cache.deviceId},e.prototype.getCurrentUserId=function(){return this._cache.crtUserId},e.prototype.bindRTCRoomForChatroom=function(t){return this._callMain("bindRTCRoomForChatroom",t)},e.prototype.rtcSignaling=function(t,e,n,o){return p(this,void 0,void 0,(function(){var r,i,a;return h(this,(function(s){switch(s.label){case 0:return[4,this._callMain("rtcSignaling",t,e,n,o)];case 1:return r=s.sent(),i=r.code,a=r.buffer,[2,{code:i,buffer:a?new Uint8Array(a):a}]}}))}))},e.prototype.rtcPing=function(t,e,n){return this._callMain("rtcPing",t,e,n)},e.prototype.createTag=function(t){return this._callMain("createTag",t)},e.prototype.removeTag=function(t){return this._callMain("removeTag",t)},e.prototype.updateTag=function(t){return this._callMain("updateTag",t)},e.prototype.getTagList=function(){return this._callMain("getTagList")},e.prototype.addTagForConversations=function(t,e){return this._callMain("addTagForConversations",t,e)},e.prototype.removeTagForConversations=function(t,e){return this._callMain("removeTagForConversations",t,e)},e.prototype.removeTagsForConversation=function(t,e){return this._callMain("removeTagsForConversation",t,e)},e.prototype.getConversationListByTag=function(t,e,n,o){return this._callMain("getConversationListByTag",t,e,n,o)},e.prototype.getUnreadCountByTag=function(t,e){return this._callMain("getUnreadCountByTag",t,e)},e.prototype.setConversationStatusInTag=function(t,e,n){return this._callMain("setConversationStatusInTag",t,e,n)},e.prototype.getTagsForConversation=function(t){return this._callMain("getTagsForConversation",t)},e.prototype.clearData=function(){return this._callMain("clearData")},e.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},e.prototype.getGroupMessageDeliverList=function(t,e,n){return this._callMain("getGroupMessageDeliverList",t,e,n)},e.prototype.getPrivateMessageDeliverTime=function(t,e){return this._callMain("getPrivateMessageDeliverTime",t,e)},e.prototype.setCallInfo=function(t,e,n){return this._callMain("setCallInfo",t,e,n)},e.prototype.getTopConversationList=function(t,e){return this._callMain("getTopConversationList",t,e)},e.prototype.getUnreadMentionedCount=function(t){throw new Error("Method not implemented.")},e.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},e.prototype.getAllConversationState=function(){throw new Error("Method not implemented.")},e.prototype.getUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.getBlockUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.getTopUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.clearUltraUnreadcount=function(t,e){throw new Error("Method not implemented.")},e.prototype.getUltraGroupUnreadMentionedCountByTargetId=function(t,e){throw new Error("Method not implemented.")},e.prototype.sendUltraMessage=function(t,e,n){throw new Error("Method not implemented.")},e.prototype.sendUltraGroupTypingStatus=function(t,e){throw new Error("Method not implemented.")},e.prototype.getUltraGroupMessageListByMessageUId=function(t){throw new Error("Method not implemented.")},e.prototype.expandUltraMessage=function(t){throw new Error("Method not implemented.")},e.prototype.modifyMessage=function(t){throw new Error("Method not implemented.")},e.prototype.getUltraHistoryMsg=function(t,e){throw new Error("Method not implemented.")},e.prototype.getConversationNotificationLevel=function(t,e,n){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,Promise.resolve({code:o.NOT_SUPPORT})]}))}))},e.prototype.getUltraGroupDefaultNotificationLevel=function(t,e){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getAllUltraGroupUnreadCount=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupUnreadCountByTargetId=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.setUltraGroupDefaultNotificationLevel=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupUnreadMentionedMessages=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupFirstUnreadMessageTimestamp=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getOSInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,this._callMain("getOSInfo")]}))}))},e.prototype.getProcessInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,{code:o.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},e.prototype.getMainProcessInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,this._callMain("getMainProcessInfo")]}))}))},e.prototype.setProxy=function(t){return this._callMain("setProxy",t)},e.prototype.getProxy=function(){return this._callMain("getProxy")},e.prototype.testProxy=function(t,e){return this._callMain("testProxy",t,e)},e.prototype.setCheckDuplicateMessage=function(t){return this._callMain("checkDuplicateMessage",t)},e}(s);window&&(window.RCCppEngine=C);export{C as RCCppEngine};
1
+ import{BasicLogger as t,VersionManage as e,LogTagId as n,ErrorCode as o,isUndefined as r,EventEmitter as i,RCConnectionStatus as a,AEngine as s}from"@rongcloud/engine";import{ipcRenderer as c}from"electron";var l=function(t,e){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},l(t,e)};function u(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}l(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function p(t,e,n,o){return new(n||(n=Promise))((function(r,i){function a(t){try{c(o.next(t))}catch(t){i(t)}}function s(t){try{c(o.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}c((o=o.apply(t,e||[])).next())}))}function h(t,e){var n,o,r,i,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(a=0)),a;)try{if(n=1,o&&(r=2&s[0]?o.return:s[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,s[1])).done)return r;switch(o=0,r&&(s=[2&s[0],r.value]),s[0]){case 0:case 1:r=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,o=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(r=a.trys,(r=r.length>0&&r[r.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!r||s[1]>r[0]&&s[1]<r[3])){a.label=s[1];break}if(6===s[0]&&a.label<r[1]){a.label=r[1],r=s;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(s);break}r[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],o=0}finally{n=r=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}function g(t,e,n){if(n||2===arguments.length)for(var o,r=0,i=e.length;r<i;r++)!o&&r in e||(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}var f="logdata",M=function(t){function e(e,n,o,r){var i=t.call(this,e,n,o)||this;return i.emiter=r,i}return u(e,t),e.prototype.flush=function(t){this.emiter.emit(f,t)},e}(t),y=0,_=Date.now(),d=function(t){var e=Date.now();return _!==e&&(_=e,y=0),[t,process.pid,e,y++].join("__")};e.add("electron-renderer","5.7.4-beem.2");var C=function(t){function e(e,o,r,s){var l=this,u=new i,p=new M(s.appkey,"RC-E","IM",u);return(l=t.call(this,e,o,r,s,p)||this).waitingLogs=[],l.latestSendTimestamp=0,l._resolveMaps={},u.on(f,(function(t){l.waitingLogs.push(t),l.check2SendLog()})),l._logEmitter=u,p.setOutputLevel(s.logOutputLevel),c.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(t,e){for(var o=[],i=2;i<arguments.length;i++)o[i-2]=arguments[i];var s=r[e];if(s){if("batchMessage"===e){var c=o[0].hasMoreMsg;return delete o[0].hasMoreMsg,void s([o[0]],void 0,c)}if("onRTCDataChange"!==e)if("onMeetingEvent"!==e){if("onConnected"===e)return l._cache=o[0],void s(void 0);"onConnecting"===e?l._cache.connectionStatus=a.CONNECTING:"onNaviDataChange"===e?l._cache.naviInfo=o[0]:"onSuspend"===e?l._cache.connectionStatus=a.SUSPENDED:"onDisconnected"===e&&(l._cache.connectionStatus=a.DISCONNECTED),s(o[0])}else{var u=o[0],p=u.eventType,h=u.buffer;l._receiveMeetingEvent(p,new Uint8Array(h))}else{var g=o[0];l._receiveRtcKv(new Uint8Array(g))}}else l.logger.error(n.L_UNSUPPORT_NTF_FROM_MAIN_E,e)})),c.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(t,e){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=l._resolveMaps[e];r&&(delete l._resolveMaps[e],r.apply(void 0,n))})),l._options.httpInMainProcess&&(e.httpReq=l.sendHTTPRequest.bind(l)),c.send("__RC_INNER_COMMAND_INIT__",{navigators:s.navigators}),l._cache=l._callMainSync("getMainProcessCache"),l}return u(e,t),e.prototype.check2SendLog=function(){var t=Date.now();t-this.latestSendTimestamp<1e3||(this.logger.debug(n.T,"send logs 2 main -> ".concat(this.waitingLogs.length)),c.send("__RC_CHANNEL_SEND_2_MAIN__","onRendererLogsReceived",this.waitingLogs.splice(0)),this.latestSendTimestamp=t)},e.prototype.sendHTTPRequest=function(t){return this._callMain("sendHTTPRequest",t)},e.prototype.setUserStatusListener=function(t,e){throw new Error("TODO -> RCCppEngine.setUserStatusListener")},e.prototype._callMain=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];var o=d(t);return c.invoke.apply(c,g(["__RC_CHANNEL_CALL_MAIN__",o,t],e,!1))},e.prototype.callExtra=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return this._callMain.apply(this,g(["callExtra",t],e,!1))},e.prototype._send2Main=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.send.apply(c,g(["__RC_CHANNEL_SEND_2_MAIN__",t],e,!1))},e.prototype._callMainSync=function(t){for(var e=[],o=1;o<arguments.length;o++)e[o-1]=arguments[o];return this.logger.info(n.L_CALL_MAIN_SYNC_O,t),c.sendSync.apply(c,g(["__RC_CHANNEL_CALL_MAIN_SYNC__",t],e,!1))},e.prototype.refetchNaviInfo=function(){return this._callMain("refetchNaviInfo")},e.prototype.getNaviInfoFromCache=function(){return this._cache.naviInfo},e.prototype.createLogger=function(t,e){return new M(this._appkey,t,e,this._logEmitter)},e.prototype.getConnectionStatus=function(){return this._cache.connectionStatus},e.prototype.connect=function(t,e,n){return p(this,void 0,void 0,(function(){return h(this,(function(o){return[2,this._callMain("connect",t,e,n)]}))}))},e.prototype.reportSDKInfo=function(t){this._callMain("reportSDKInfo",t)},e.prototype.getConnectedTime=function(){return this._cache.connectedTime},e.prototype.getHistoryMessage=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessage",t,e,n,o,r,i,a)},e.prototype.getHistoryMessagesByObjectNames=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessagesByObjectNames",t,e,n,o,r,i,a)},e.prototype.deleteRemoteMessage=function(t,e,n,o){return this._callMain("deleteRemoteMessage",t,e,n,o)},e.prototype.recallMsg=function(t,e,n,o,r){return this._callMain("recallMsg",t,e,n,o,r)},e.prototype.deleteRemoteMessageByTimestamp=function(t,e,n,o){return this._callMain("deleteRemoteMessageByTimestamp",t,e,n,o)},e.prototype.getConversationList=function(t,e,n,o,r){return this._callMain("getConversationList",t,e,n,o,r)},e.prototype.getConversationsByPage=function(t,e,n,o){return this._callMain("getConversationsByPage",t,e,n,o)},e.prototype.getUnreadConversationList=function(t){return this._callMain("getUnreadConversationList",t)},e.prototype.getConversationListWithAllChannel=function(t){return this._callMain("getConversationListWithAllChannel",t)},e.prototype.getConversationListWithAllChannelByPage=function(t,e){return this._callMain("getConversationListWithAllChannelByPage",t,e)},e.prototype.getConversation=function(t,e,n){return this._callMain("getConversation",t,e,n)},e.prototype.removeConversation=function(t,e,n){return this._callMain("removeConversation",t,e,n)},e.prototype.getAllConversationUnreadCount=function(t,e,n){return this._callMain("getAllConversationUnreadCount",t,e,n)},e.prototype.getConversationUnreadCount=function(t,e,n){return this._callMain("getConversationUnreadCount",t,e,n)},e.prototype.getTotalUnreadCountByLevels=function(t,e){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.clearConversationUnreadCount=function(t,e,n){return this._callMain("clearConversationUnreadCount",t,e,n)},e.prototype.getFirstUnreadMessage=function(t,e,n){return this._callMain("getFirstUnreadMessage",t,e,n)},e.prototype.getMessageByUids=function(t){return this._callMainSync("getMessageByUids",t)},e.prototype.setMessageSearchContent=function(t,e){return this._callMain("setMessageSearchContent",t,e)},e.prototype.getMessageByMsgUids=function(t,e,n,o){return this._callMainSync("getMessageByMsgUids",t,e,n,o)},e.prototype.saveConversationMessageDraft=function(t,e,n){return this._callMain("saveConversationMessageDraft",t,e,n)},e.prototype.getConversationMessageDraft=function(t,e){return this._callMain("getConversationMessageDraft",t,e)},e.prototype.clearConversationMessageDraft=function(t,e){return this._callMain("clearConversationMessageDraft",t,e)},e.prototype.pullConversationStatus=function(t){return this._callMain("pullConversationStatus",t)},e.prototype.batchSetConversationStatus=function(t){var e=t[0].notificationLevel;return r(e)?this._callMain("batchSetConversationStatus",t):Promise.resolve(o.NOT_SUPPORT)},e.prototype.setConversationsMuteStatus=function(t){return this._callMain("setConversationsMuteStatus",t)},e.prototype.setConversationsTopStatus=function(t){return this._callMain("setConversationsTopStatus",t)},e.prototype.sendMessage=function(t,e,o,r,i){var a=this,s=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return r&&(this._resolveMaps[s]=function(t){try{r(t)}catch(t){a.logger.error(n.A_CALLBACK_E,JSON.stringify({error:null==t?void 0:t.stack,pos:"sendMsgBefore"}))}}),this._callMain("sendMessage",t,e,o,s,i)},e.prototype.sendReadReceiptMessage=function(t,e,n){return this._callMain("sendReadReceiptMessage",t,e,n)},e.prototype.getMessageReader=function(t,e,n){return this._callMain("getMessageReader",t,e,n)},e.prototype.setGroupVoiceMessagePlayed=function(t,e,n){return this._callMain("setGroupVoiceMessagePlayed",t,e,n)},e.prototype.getGroupVoiceMessageReader=function(t,e,n){return this._callMain("getGroupVoiceMessageReader",t,e,n)},e.prototype.setReadMessages=function(t,e,n,o){return this._callMain("setReadMessages",t,e,n,o)},e.prototype.getMessageReceiptInfo=function(t,e,n){return this._callMain("getMessageReceiptInfo",t,e,n)},e.prototype.disconnect=function(t){return p(this,void 0,void 0,(function(){return h(this,(function(e){return this._send2Main("disconnect",t),[2]}))}))},e.prototype.pullUserSettings=function(t){return this._callMain("pullUserSettings",t)},e.prototype.registerMessageType=function(t,e,n,o){this._send2Main("registerMessageType",t,e,n,o)},e.prototype.joinChatroom=function(t,e){return this._callMain("joinChatroom",t,e)},e.prototype.joinExistChatroom=function(t,e){return this._callMain("joinExistChatroom",t,e)},e.prototype.quitChatroom=function(t){return this._callMain("quitChatroom",t)},e.prototype.getChatroomInfo=function(t,e,n){return this._callMain("getChatroomInfo",t,e,n)},e.prototype.getChatroomHistoryMessages=function(t,e,n,o){return this._callMain("getChatroomHistoryMessages",t,e,n,o)},e.prototype.setChatroomEntry=function(t,e){return this._callMain("setChatroomEntry",t,e)},e.prototype.setChatroomEntries=function(t,e){return this._callMain("setChatroomEntries",t,e)},e.prototype.forceSetChatroomEntry=function(t,e){return this._callMain("forceSetChatroomEntry",t,e)},e.prototype.removeChatroomEntry=function(t,e){return this._callMain("removeChatroomEntry",t,e)},e.prototype.forceRemoveChatroomEntry=function(t,e){return this._callMain("forceRemoveChatroomEntry",t,e)},e.prototype.removeChatroomEntries=function(t,e){return this._callMain("removeChatroomEntries",t,e)},e.prototype.getChatroomEntry=function(t,e){return this._callMain("getChatroomEntry",t,e)},e.prototype.getAllChatroomEntry=function(t){return this._callMain("getAllChatroomEntry",t)},e.prototype.getFileToken=function(t,e,n,o){return this._callMain("getFileToken",t,e,n,o)},e.prototype.getFileUrl=function(t,e,n,o){return this._callMain("getFileUrl",t,e,n,o)},e.prototype.setUserStatus=function(t){return this._callMain("setUserStatus",t)},e.prototype.subscribeUserStatus=function(t){return this._callMain("subscribeUserStatus",t)},e.prototype.getUserStatus=function(t){return this._callMain("getUserStatus",t)},e.prototype.clearConversations=function(t,e){return this._callMain("clearConversations",t,e)},e.prototype.addToBlacklist=function(t){return this._callMain("addToBlacklist",t)},e.prototype.removeFromBlacklist=function(t){return this._callMain("removeFromBlacklist",t)},e.prototype.getBlacklist=function(){return this._callMain("getBlacklist")},e.prototype.getBlacklistStatus=function(t){return this._callMain("getBlacklistStatus",t)},e.prototype.insertMessage=function(t,e,n){return this._callMain("insertMessage",t,e,n)},e.prototype.batchInsertMessage=function(t,e){return this._callMain("batchInsertMessage",t,e)},e.prototype.getMessageCount=function(t,e,n){return this._callMain("getMessageCount",t,e,n)},e.prototype.deleteMessages=function(t){return this._callMain("deleteMessages",t)},e.prototype.deleteMessagesByTimestamp=function(t,e,n,o,r){return this._callMain("deleteMessagesByTimestamp",t,e,n,o,r)},e.prototype.clearMessages=function(t,e,n){return this._callMain("clearMessages",t,e,n)},e.prototype.getMessage=function(t){return this._callMain("getMessage",t)},e.prototype.setTextMessageExtra=function(t,e){return this._callMain("setTextMessageExtra",t,e)},e.prototype.setMessageContent=function(t,e,n){return this._callMain("setMessageContent",t,e,n)},e.prototype.setMessageSearchField=function(t,e,n){return this._callMain("setMessageSearchField",t,e,n)},e.prototype.searchConversationByContent=function(t,e,n,o){return this._callMain("searchConversationByContent",t,e,n,o)},e.prototype.searchConversationByContentWithAllChannel=function(t,e,n){return this._callMain("searchConversationByContentWithAllChannel",t,e,n)},e.prototype.searchMessageByContentWithAllChannel=function(t,e,n,o,r){return this._callMain("searchMessageByContentWithAllChannel",t,e,n,o,r)},e.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContentInTimeRangeWithAllChannel",t,e,n,o,r,i,a)},e.prototype.searchMessageByContent=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContent",t,e,n,o,r,i,a)},e.prototype.getUnreadMentionedMessages=function(t,e,n){return this._callMainSync("getUnreadMentionedMessages",t,e,n)},e.prototype.setMessageSentStatus=function(t,e){return this._callMain("setMessageSentStatus",t,e)},e.prototype.setMessageReceivedStatus=function(t,e){return this._callMain("setMessageReceivedStatus",t,e)},e.prototype.updateMessageReceiptStatus=function(t,e,n,o){return this._callMain("updateMessageReceiptStatus",t,e,n,o)},e.prototype.clearUnreadCountByTimestamp=function(t,e,n,o){return this._callMain("clearUnreadCountByTimestamp",t,e,n,o)},e.prototype.clearAllUnreadCount=function(){throw new Error("Method not implemented.")},e.prototype.getConversationNotificationStatus=function(t,e,n){return this._callMain("getConversationNotificationStatus",t,e,n)},e.prototype.getRemoteHistoryMessages=function(t,e,n,o,r,i){return this._callMain("getRemoteHistoryMessages",t,e,n,o,r,i)},e.prototype.getServerTime=function(){return this._callMainSync("getServerTime")},e.prototype.getDeviceId=function(){return this._cache.deviceId},e.prototype.getCurrentUserId=function(){return this._cache.crtUserId},e.prototype.bindRTCRoomForChatroom=function(t){return this._callMain("bindRTCRoomForChatroom",t)},e.prototype.rtcSignaling=function(t,e,n,o){return p(this,void 0,void 0,(function(){var r,i,a;return h(this,(function(s){switch(s.label){case 0:return[4,this._callMain("rtcSignaling",t,e,n,o)];case 1:return r=s.sent(),i=r.code,a=r.buffer,[2,{code:i,buffer:a?new Uint8Array(a):a}]}}))}))},e.prototype.rtcPing=function(t,e,n){return this._callMain("rtcPing",t,e,n)},e.prototype.createTag=function(t){return this._callMain("createTag",t)},e.prototype.removeTag=function(t){return this._callMain("removeTag",t)},e.prototype.updateTag=function(t){return this._callMain("updateTag",t)},e.prototype.getTagList=function(){return this._callMain("getTagList")},e.prototype.addTagForConversations=function(t,e){return this._callMain("addTagForConversations",t,e)},e.prototype.removeTagForConversations=function(t,e){return this._callMain("removeTagForConversations",t,e)},e.prototype.removeTagsForConversation=function(t,e){return this._callMain("removeTagsForConversation",t,e)},e.prototype.getConversationListByTag=function(t,e,n,o){return this._callMain("getConversationListByTag",t,e,n,o)},e.prototype.getUnreadCountByTag=function(t,e){return this._callMain("getUnreadCountByTag",t,e)},e.prototype.setConversationStatusInTag=function(t,e,n){return this._callMain("setConversationStatusInTag",t,e,n)},e.prototype.getTagsForConversation=function(t){return this._callMain("getTagsForConversation",t)},e.prototype.clearData=function(){return this._callMain("clearData")},e.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},e.prototype.getGroupMessageDeliverList=function(t,e,n){return this._callMain("getGroupMessageDeliverList",t,e,n)},e.prototype.getPrivateMessageDeliverTime=function(t,e){return this._callMain("getPrivateMessageDeliverTime",t,e)},e.prototype.setCallInfo=function(t,e,n){return this._callMain("setCallInfo",t,e,n)},e.prototype.getTopConversationList=function(t,e){return this._callMain("getTopConversationList",t,e)},e.prototype.getUnreadMentionedCount=function(t){throw new Error("Method not implemented.")},e.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},e.prototype.getAllConversationState=function(){throw new Error("Method not implemented.")},e.prototype.getUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.getBlockUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.getTopUltraGroupList=function(){throw new Error("Method not implemented.")},e.prototype.clearUltraUnreadcount=function(t,e){throw new Error("Method not implemented.")},e.prototype.getUltraGroupUnreadMentionedCountByTargetId=function(t,e){throw new Error("Method not implemented.")},e.prototype.sendUltraMessage=function(t,e,n){throw new Error("Method not implemented.")},e.prototype.sendUltraGroupTypingStatus=function(t,e){throw new Error("Method not implemented.")},e.prototype.getUltraGroupMessageListByMessageUId=function(t){throw new Error("Method not implemented.")},e.prototype.expandUltraMessage=function(t){throw new Error("Method not implemented.")},e.prototype.modifyMessage=function(t){throw new Error("Method not implemented.")},e.prototype.getUltraHistoryMsg=function(t,e){throw new Error("Method not implemented.")},e.prototype.getConversationNotificationLevel=function(t,e,n){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,Promise.resolve({code:o.NOT_SUPPORT})]}))}))},e.prototype.getUltraGroupDefaultNotificationLevel=function(t,e){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getAllUltraGroupUnreadCount=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupUnreadCountByTargetId=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.setUltraGroupDefaultNotificationLevel=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupUnreadMentionedMessages=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getUltraGroupFirstUnreadMessageTimestamp=function(){return Promise.resolve({code:o.NOT_SUPPORT})},e.prototype.getOSInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,this._callMain("getOSInfo")]}))}))},e.prototype.getProcessInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,{code:o.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},e.prototype.getMainProcessInfo=function(){return p(this,void 0,void 0,(function(){return h(this,(function(t){return[2,this._callMain("getMainProcessInfo")]}))}))},e.prototype.setProxy=function(t){return this._callMain("setProxy",t)},e.prototype.getProxy=function(){return this._callMain("getProxy")},e.prototype.testProxy=function(t,e){return this._callMain("testProxy",t,e)},e.prototype.setCheckDuplicateMessage=function(t){return this._callMain("checkDuplicateMessage",t)},e.prototype.subscribeAccount=function(t,e,n){return this._callMain("subscribeAccount",t,e,n)},e}(s);window&&(window.RCCppEngine=C);export{C as RCCppEngine};
package/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("@rongcloud/engine"),e=require("electron"),n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},n(t,e)};function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}function r(t,e,n,o){return new(n||(n=Promise))((function(r,i){function a(t){try{c(o.next(t))}catch(t){i(t)}}function s(t){try{c(o.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}c((o=o.apply(t,e||[])).next())}))}function i(t,e){var n,o,r,i,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(a=0)),a;)try{if(n=1,o&&(r=2&s[0]?o.return:s[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,s[1])).done)return r;switch(o=0,r&&(s=[2&s[0],r.value]),s[0]){case 0:case 1:r=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,o=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(r=a.trys,(r=r.length>0&&r[r.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!r||s[1]>r[0]&&s[1]<r[3])){a.label=s[1];break}if(6===s[0]&&a.label<r[1]){a.label=r[1],r=s;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(s);break}r[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],o=0}finally{n=r=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}function a(t,e,n){if(n||2===arguments.length)for(var o,r=0,i=e.length;r<i;r++)!o&&r in e||(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}var s="logdata",c=function(t){function e(e,n,o,r){var i=t.call(this,e,n,o)||this;return i.emiter=r,i}return o(e,t),e.prototype.flush=function(t){this.emiter.emit(s,t)},e}(t.BasicLogger),l=0,u=Date.now(),p=function(t){var e=Date.now();return u!==e&&(u=e,l=0),[t,process.pid,e,l++].join("__")};t.VersionManage.add("electron-renderer","5.7.3");var h=function(n){function l(o,r,i,a){var l=this,u=new t.EventEmitter,p=new c(a.appkey,"RC-E","IM",u);return(l=n.call(this,o,r,i,a,p)||this).waitingLogs=[],l.latestSendTimestamp=0,l._resolveMaps={},u.on(s,(function(t){l.waitingLogs.push(t),l.check2SendLog()})),l._logEmitter=u,p.setOutputLevel(a.logOutputLevel),e.ipcRenderer.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(e,n){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];var a=i[n];if(a){if("batchMessage"===n){var s=o[0].hasMoreMsg;return delete o[0].hasMoreMsg,void a([o[0]],void 0,s)}if("onRTCDataChange"!==n){if("onConnected"===n)return l._cache=o[0],void a(void 0);"onConnecting"===n?l._cache.connectionStatus=t.RCConnectionStatus.CONNECTING:"onNaviDataChange"===n?l._cache.naviInfo=o[0]:"onSuspend"===n?l._cache.connectionStatus=t.RCConnectionStatus.SUSPENDED:"onDisconnected"===n&&(l._cache.connectionStatus=t.RCConnectionStatus.DISCONNECTED),a(o[0])}else{var c=o[0];l._receiveRtcKv(new Uint8Array(c))}}else l.logger.error(t.LogTagId.L_UNSUPPORT_NTF_FROM_MAIN_E,n)})),e.ipcRenderer.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(t,e){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=l._resolveMaps[e];r&&(delete l._resolveMaps[e],r.apply(void 0,n))})),l._options.httpInMainProcess&&(o.httpReq=l.sendHTTPRequest.bind(l)),e.ipcRenderer.send("__RC_INNER_COMMAND_INIT__",{navigators:a.navigators}),l._cache=l._callMainSync("getMainProcessCache"),l}return o(l,n),l.prototype.check2SendLog=function(){var n=Date.now();n-this.latestSendTimestamp<1e3||(this.logger.debug(t.LogTagId.T,"send logs 2 main -> ".concat(this.waitingLogs.length)),e.ipcRenderer.send("__RC_CHANNEL_SEND_2_MAIN__","onRendererLogsReceived",this.waitingLogs.splice(0)),this.latestSendTimestamp=n)},l.prototype.sendHTTPRequest=function(t){return this._callMain("sendHTTPRequest",t)},l.prototype.setUserStatusListener=function(t,e){throw new Error("TODO -> RCCppEngine.setUserStatusListener")},l.prototype._callMain=function(t){for(var n=this,o=[],r=1;r<arguments.length;r++)o[r-1]=arguments[r];return new Promise((function(r){var i=p(t);n._resolveMaps[i]=r,e.ipcRenderer.send.apply(e.ipcRenderer,a(["__RC_CHANNEL_CALL_MAIN__",i,t],o,!1))}))},l.prototype.callExtra=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return this._callMain.apply(this,a(["callExtra",t],e,!1))},l.prototype._send2Main=function(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];e.ipcRenderer.send.apply(e.ipcRenderer,a(["__RC_CHANNEL_SEND_2_MAIN__",t],n,!1))},l.prototype._callMainSync=function(n){for(var o=[],r=1;r<arguments.length;r++)o[r-1]=arguments[r];return this.logger.info(t.LogTagId.L_CALL_MAIN_SYNC_O,n),e.ipcRenderer.sendSync.apply(e.ipcRenderer,a(["__RC_CHANNEL_CALL_MAIN_SYNC__",n],o,!1))},l.prototype.refetchNaviInfo=function(){return this._callMain("refetchNaviInfo")},l.prototype.getNaviInfoFromCache=function(){return this._cache.naviInfo},l.prototype.createLogger=function(t,e){return new c(this._appkey,t,e,this._logEmitter)},l.prototype.getConnectionStatus=function(){return this._cache.connectionStatus},l.prototype.connect=function(t,e,n){return r(this,void 0,void 0,(function(){return i(this,(function(o){return[2,this._callMain("connect",t,e,n)]}))}))},l.prototype.reportSDKInfo=function(t){this._callMain("reportSDKInfo",t)},l.prototype.getConnectedTime=function(){return this._cache.connectedTime},l.prototype.getHistoryMessage=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessage",t,e,n,o,r,i,a)},l.prototype.getHistoryMessagesByObjectNames=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessagesByObjectNames",t,e,n,o,r,i,a)},l.prototype.deleteRemoteMessage=function(t,e,n,o){return this._callMain("deleteRemoteMessage",t,e,n,o)},l.prototype.recallMsg=function(t,e,n,o,r){return this._callMain("recallMsg",t,e,n,o,r)},l.prototype.deleteRemoteMessageByTimestamp=function(t,e,n,o){return this._callMain("deleteRemoteMessageByTimestamp",t,e,n,o)},l.prototype.getConversationList=function(t,e,n,o,r){return this._callMain("getConversationList",t,e,n,o,r)},l.prototype.getConversationsByPage=function(t,e,n,o){return this._callMain("getConversationsByPage",t,e,n,o)},l.prototype.getUnreadConversationList=function(t){return this._callMain("getUnreadConversationList",t)},l.prototype.getConversationListWithAllChannel=function(){return this._callMain("getConversationListWithAllChannel")},l.prototype.getConversationListWithAllChannelByPage=function(t,e){return this._callMain("getConversationListWithAllChannelByPage",t,e)},l.prototype.getConversation=function(t,e,n){return this._callMain("getConversation",t,e,n)},l.prototype.removeConversation=function(t,e,n){return this._callMain("removeConversation",t,e,n)},l.prototype.getAllConversationUnreadCount=function(t,e,n){return this._callMain("getAllConversationUnreadCount",t,e,n)},l.prototype.getConversationUnreadCount=function(t,e,n){return this._callMain("getConversationUnreadCount",t,e,n)},l.prototype.getTotalUnreadCountByLevels=function(e,n){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.clearConversationUnreadCount=function(t,e,n){return this._callMain("clearConversationUnreadCount",t,e,n)},l.prototype.getFirstUnreadMessage=function(t,e,n){return this._callMain("getFirstUnreadMessage",t,e,n)},l.prototype.saveConversationMessageDraft=function(t,e,n){return this._callMain("saveConversationMessageDraft",t,e,n)},l.prototype.getConversationMessageDraft=function(t,e){return this._callMain("getConversationMessageDraft",t,e)},l.prototype.clearConversationMessageDraft=function(t,e){return this._callMain("clearConversationMessageDraft",t,e)},l.prototype.pullConversationStatus=function(t){return this._callMain("pullConversationStatus",t)},l.prototype.batchSetConversationStatus=function(e){var n=e[0].notificationLevel;return t.isUndefined(n)?this._callMain("batchSetConversationStatus",e):Promise.resolve(t.ErrorCode.NOT_SUPPORT)},l.prototype.sendMessage=function(e,n,o,r,i){var a=this,s=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return r&&(this._resolveMaps[s]=function(e){try{r(e)}catch(e){a.logger.error(t.LogTagId.A_CALLBACK_E,JSON.stringify({error:null==e?void 0:e.stack,pos:"sendMsgBefore"}))}}),this._callMain("sendMessage",e,n,o,s,i)},l.prototype.sendReadReceiptMessage=function(t,e,n){return this._callMain("sendReadReceiptMessage",t,e,n)},l.prototype.getMessageReader=function(t,e,n){return this._callMain("getMessageReader",t,e,n)},l.prototype.disconnect=function(t){return r(this,void 0,void 0,(function(){return i(this,(function(e){return this._send2Main("disconnect",t),[2]}))}))},l.prototype.pullUserSettings=function(t){return this._callMain("pullUserSettings",t)},l.prototype.registerMessageType=function(t,e,n,o){this._send2Main("registerMessageType",t,e,n,o)},l.prototype.joinChatroom=function(t,e){return this._callMain("joinChatroom",t,e)},l.prototype.joinExistChatroom=function(t,e){return this._callMain("joinExistChatroom",t,e)},l.prototype.quitChatroom=function(t){return this._callMain("quitChatroom",t)},l.prototype.getChatroomInfo=function(t,e,n){return this._callMain("getChatroomInfo",t,e,n)},l.prototype.getChatroomHistoryMessages=function(t,e,n,o){return this._callMain("getChatroomHistoryMessages",t,e,n,o)},l.prototype.setChatroomEntry=function(t,e){return this._callMain("setChatroomEntry",t,e)},l.prototype.setChatroomEntries=function(t,e){return this._callMain("setChatroomEntries",t,e)},l.prototype.forceSetChatroomEntry=function(t,e){return this._callMain("forceSetChatroomEntry",t,e)},l.prototype.removeChatroomEntry=function(t,e){return this._callMain("removeChatroomEntry",t,e)},l.prototype.forceRemoveChatroomEntry=function(t,e){return this._callMain("forceRemoveChatroomEntry",t,e)},l.prototype.removeChatroomEntries=function(t,e){return this._callMain("removeChatroomEntries",t,e)},l.prototype.getChatroomEntry=function(t,e){return this._callMain("getChatroomEntry",t,e)},l.prototype.getAllChatroomEntry=function(t){return this._callMain("getAllChatroomEntry",t)},l.prototype.getFileToken=function(t,e,n,o){return this._callMain("getFileToken",t,e,n,o)},l.prototype.getFileUrl=function(t,e,n,o){return this._callMain("getFileUrl",t,e,n,o)},l.prototype.setUserStatus=function(t){return this._callMain("setUserStatus",t)},l.prototype.subscribeUserStatus=function(t){return this._callMain("subscribeUserStatus",t)},l.prototype.getUserStatus=function(t){return this._callMain("getUserStatus",t)},l.prototype.clearConversations=function(t,e){return this._callMain("clearConversations",t,e)},l.prototype.addToBlacklist=function(t){return this._callMain("addToBlacklist",t)},l.prototype.removeFromBlacklist=function(t){return this._callMain("removeFromBlacklist",t)},l.prototype.getBlacklist=function(){return this._callMain("getBlacklist")},l.prototype.getBlacklistStatus=function(t){return this._callMain("getBlacklistStatus",t)},l.prototype.insertMessage=function(t,e,n){return this._callMain("insertMessage",t,e,n)},l.prototype.batchInsertMessage=function(t,e){return this._callMain("batchInsertMessage",t,e)},l.prototype.getMessageCount=function(t,e,n){return this._callMain("getMessageCount",t,e,n)},l.prototype.deleteMessages=function(t){return this._callMain("deleteMessages",t)},l.prototype.deleteMessagesByTimestamp=function(t,e,n,o,r){return this._callMain("deleteMessagesByTimestamp",t,e,n,o,r)},l.prototype.clearMessages=function(t,e,n){return this._callMain("clearMessages",t,e,n)},l.prototype.getMessage=function(t){return this._callMain("getMessage",t)},l.prototype.setMessageContent=function(t,e,n){return this._callMain("setMessageContent",t,e,n)},l.prototype.setMessageSearchField=function(t,e,n){return this._callMain("setMessageSearchField",t,e,n)},l.prototype.searchConversationByContent=function(t,e,n,o){return this._callMain("searchConversationByContent",t,e,n,o)},l.prototype.searchConversationByContentWithAllChannel=function(t,e,n){return this._callMain("searchConversationByContentWithAllChannel",t,e,n)},l.prototype.searchMessageByContentWithAllChannel=function(t,e,n,o,r){return this._callMain("searchMessageByContentWithAllChannel",t,e,n,o,r)},l.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContentInTimeRangeWithAllChannel",t,e,n,o,r,i,a)},l.prototype.searchMessageByContent=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContent",t,e,n,o,r,i,a)},l.prototype.getUnreadMentionedMessages=function(t,e,n){return this._callMainSync("getUnreadMentionedMessages",t,e,n)},l.prototype.setMessageSentStatus=function(t,e){return this._callMain("setMessageSentStatus",t,e)},l.prototype.setMessageReceivedStatus=function(t,e){return this._callMain("setMessageReceivedStatus",t,e)},l.prototype.updateMessageReceiptStatus=function(t,e,n,o){return this._callMain("updateMessageReceiptStatus",t,e,n,o)},l.prototype.clearUnreadCountByTimestamp=function(t,e,n,o){return this._callMain("clearUnreadCountByTimestamp",t,e,n,o)},l.prototype.clearAllUnreadCount=function(){throw new Error("Method not implemented.")},l.prototype.getConversationNotificationStatus=function(t,e,n){return this._callMain("getConversationNotificationStatus",t,e,n)},l.prototype.getRemoteHistoryMessages=function(t,e,n,o,r,i){return this._callMain("getRemoteHistoryMessages",t,e,n,o,r,i)},l.prototype.getServerTime=function(){return this._callMainSync("getServerTime")},l.prototype.getDeviceId=function(){return this._cache.deviceId},l.prototype.getCurrentUserId=function(){return this._cache.crtUserId},l.prototype.bindRTCRoomForChatroom=function(t){return this._callMain("bindRTCRoomForChatroom",t)},l.prototype.rtcSignaling=function(t,e,n,o){return r(this,void 0,void 0,(function(){var r,a,s;return i(this,(function(i){switch(i.label){case 0:return[4,this._callMain("rtcSignaling",t,e,n,o)];case 1:return r=i.sent(),a=r.code,s=r.buffer,[2,{code:a,buffer:s?new Uint8Array(s):s}]}}))}))},l.prototype.rtcPing=function(t,e,n){return this._callMain("rtcPing",t,e,n)},l.prototype.createTag=function(t){return this._callMain("createTag",t)},l.prototype.removeTag=function(t){return this._callMain("removeTag",t)},l.prototype.updateTag=function(t){return this._callMain("updateTag",t)},l.prototype.getTagList=function(){return this._callMain("getTagList")},l.prototype.addTagForConversations=function(t,e){return this._callMain("addTagForConversations",t,e)},l.prototype.removeTagForConversations=function(t,e){return this._callMain("removeTagForConversations",t,e)},l.prototype.removeTagsForConversation=function(t,e){return this._callMain("removeTagsForConversation",t,e)},l.prototype.getConversationListByTag=function(t,e,n,o){return this._callMain("getConversationListByTag",t,e,n,o)},l.prototype.getUnreadCountByTag=function(t,e){return this._callMain("getUnreadCountByTag",t,e)},l.prototype.setConversationStatusInTag=function(t,e,n){return this._callMain("setConversationStatusInTag",t,e,n)},l.prototype.getTagsForConversation=function(t){return this._callMain("getTagsForConversation",t)},l.prototype.clearData=function(){return this._callMain("clearData")},l.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},l.prototype.getGroupMessageDeliverList=function(t,e,n){return this._callMain("getGroupMessageDeliverList",t,e,n)},l.prototype.getPrivateMessageDeliverTime=function(t,e){return this._callMain("getPrivateMessageDeliverTime",t,e)},l.prototype.setCallInfo=function(t,e,n){return this._callMain("setCallInfo",t,e,n)},l.prototype.getTopConversationList=function(t,e){return this._callMain("getTopConversationList",t,e)},l.prototype.getUnreadMentionedCount=function(t){throw new Error("Method not implemented.")},l.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},l.prototype.getAllConversationState=function(){throw new Error("Method not implemented.")},l.prototype.getUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.getBlockUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.getTopUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.clearUltraUnreadcount=function(t,e){throw new Error("Method not implemented.")},l.prototype.getUltraGroupUnreadMentionedCountByTargetId=function(t,e){throw new Error("Method not implemented.")},l.prototype.sendUltraMessage=function(t,e,n){throw new Error("Method not implemented.")},l.prototype.sendUltraGroupTypingStatus=function(t,e){throw new Error("Method not implemented.")},l.prototype.getUltraGroupMessageListByMessageUId=function(t){throw new Error("Method not implemented.")},l.prototype.expandUltraMessage=function(t){throw new Error("Method not implemented.")},l.prototype.modifyMessage=function(t){throw new Error("Method not implemented.")},l.prototype.getUltraHistoryMsg=function(t,e){throw new Error("Method not implemented.")},l.prototype.getConversationNotificationLevel=function(e,n,o){return r(this,void 0,void 0,(function(){return i(this,(function(e){return[2,Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})]}))}))},l.prototype.getUltraGroupDefaultNotificationLevel=function(e,n){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getAllUltraGroupUnreadCount=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupUnreadCountByTargetId=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.setUltraGroupDefaultNotificationLevel=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupUnreadMentionedMessages=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupFirstUnreadMessageTimestamp=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getOSInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(t){return[2,this._callMain("getOSInfo")]}))}))},l.prototype.getProcessInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(e){return[2,{code:t.ErrorCode.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},l.prototype.getMainProcessInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(t){return[2,this._callMain("getMainProcessInfo")]}))}))},l.prototype.setProxy=function(t){return this._callMain("setProxy",t)},l.prototype.getProxy=function(){return this._callMain("getProxy")},l.prototype.testProxy=function(t,e){return this._callMain("testProxy",t,e)},l.prototype.setCheckDuplicateMessage=function(t){return this._callMain("checkDuplicateMessage",t)},l}(t.AEngine);window&&(window.RCCppEngine=h),exports.RCCppEngine=h;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t=require("@rongcloud/engine"),e=require("electron"),n=function(t,e){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},n(t,e)};function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}function r(t,e,n,o){return new(n||(n=Promise))((function(r,i){function a(t){try{c(o.next(t))}catch(t){i(t)}}function s(t){try{c(o.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}c((o=o.apply(t,e||[])).next())}))}function i(t,e){var n,o,r,i,a={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(a=0)),a;)try{if(n=1,o&&(r=2&s[0]?o.return:s[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,s[1])).done)return r;switch(o=0,r&&(s=[2&s[0],r.value]),s[0]){case 0:case 1:r=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,o=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(r=a.trys,(r=r.length>0&&r[r.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!r||s[1]>r[0]&&s[1]<r[3])){a.label=s[1];break}if(6===s[0]&&a.label<r[1]){a.label=r[1],r=s;break}if(r&&a.label<r[2]){a.label=r[2],a.ops.push(s);break}r[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],o=0}finally{n=r=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}function a(t,e,n){if(n||2===arguments.length)for(var o,r=0,i=e.length;r<i;r++)!o&&r in e||(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}var s="logdata",c=function(t){function e(e,n,o,r){var i=t.call(this,e,n,o)||this;return i.emiter=r,i}return o(e,t),e.prototype.flush=function(t){this.emiter.emit(s,t)},e}(t.BasicLogger),l=0,u=Date.now(),p=function(t){var e=Date.now();return u!==e&&(u=e,l=0),[t,process.pid,e,l++].join("__")};t.VersionManage.add("electron-renderer","5.7.4-beem.2");var g=function(n){function l(o,r,i,a){var l=this,u=new t.EventEmitter,p=new c(a.appkey,"RC-E","IM",u);return(l=n.call(this,o,r,i,a,p)||this).waitingLogs=[],l.latestSendTimestamp=0,l._resolveMaps={},u.on(s,(function(t){l.waitingLogs.push(t),l.check2SendLog()})),l._logEmitter=u,p.setOutputLevel(a.logOutputLevel),e.ipcRenderer.on("__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",(function(e,n){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];var a=i[n];if(a){if("batchMessage"===n){var s=o[0].hasMoreMsg;return delete o[0].hasMoreMsg,void a([o[0]],void 0,s)}if("onRTCDataChange"!==n)if("onMeetingEvent"!==n){if("onConnected"===n)return l._cache=o[0],void a(void 0);"onConnecting"===n?l._cache.connectionStatus=t.RCConnectionStatus.CONNECTING:"onNaviDataChange"===n?l._cache.naviInfo=o[0]:"onSuspend"===n?l._cache.connectionStatus=t.RCConnectionStatus.SUSPENDED:"onDisconnected"===n&&(l._cache.connectionStatus=t.RCConnectionStatus.DISCONNECTED),a(o[0])}else{var c=o[0],u=c.eventType,p=c.buffer;l._receiveMeetingEvent(u,new Uint8Array(p))}else{var g=o[0];l._receiveRtcKv(new Uint8Array(g))}}else l.logger.error(t.LogTagId.L_UNSUPPORT_NTF_FROM_MAIN_E,n)})),e.ipcRenderer.on("__RC_CHANNEL_RESULT_FROM_MAIN__",(function(t,e){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=l._resolveMaps[e];r&&(delete l._resolveMaps[e],r.apply(void 0,n))})),l._options.httpInMainProcess&&(o.httpReq=l.sendHTTPRequest.bind(l)),e.ipcRenderer.send("__RC_INNER_COMMAND_INIT__",{navigators:a.navigators}),l._cache=l._callMainSync("getMainProcessCache"),l}return o(l,n),l.prototype.check2SendLog=function(){var n=Date.now();n-this.latestSendTimestamp<1e3||(this.logger.debug(t.LogTagId.T,"send logs 2 main -> ".concat(this.waitingLogs.length)),e.ipcRenderer.send("__RC_CHANNEL_SEND_2_MAIN__","onRendererLogsReceived",this.waitingLogs.splice(0)),this.latestSendTimestamp=n)},l.prototype.sendHTTPRequest=function(t){return this._callMain("sendHTTPRequest",t)},l.prototype.setUserStatusListener=function(t,e){throw new Error("TODO -> RCCppEngine.setUserStatusListener")},l.prototype._callMain=function(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];var r=p(t);return e.ipcRenderer.invoke.apply(e.ipcRenderer,a(["__RC_CHANNEL_CALL_MAIN__",r,t],n,!1))},l.prototype.callExtra=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return this._callMain.apply(this,a(["callExtra",t],e,!1))},l.prototype._send2Main=function(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];e.ipcRenderer.send.apply(e.ipcRenderer,a(["__RC_CHANNEL_SEND_2_MAIN__",t],n,!1))},l.prototype._callMainSync=function(n){for(var o=[],r=1;r<arguments.length;r++)o[r-1]=arguments[r];return this.logger.info(t.LogTagId.L_CALL_MAIN_SYNC_O,n),e.ipcRenderer.sendSync.apply(e.ipcRenderer,a(["__RC_CHANNEL_CALL_MAIN_SYNC__",n],o,!1))},l.prototype.refetchNaviInfo=function(){return this._callMain("refetchNaviInfo")},l.prototype.getNaviInfoFromCache=function(){return this._cache.naviInfo},l.prototype.createLogger=function(t,e){return new c(this._appkey,t,e,this._logEmitter)},l.prototype.getConnectionStatus=function(){return this._cache.connectionStatus},l.prototype.connect=function(t,e,n){return r(this,void 0,void 0,(function(){return i(this,(function(o){return[2,this._callMain("connect",t,e,n)]}))}))},l.prototype.reportSDKInfo=function(t){this._callMain("reportSDKInfo",t)},l.prototype.getConnectedTime=function(){return this._cache.connectedTime},l.prototype.getHistoryMessage=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessage",t,e,n,o,r,i,a)},l.prototype.getHistoryMessagesByObjectNames=function(t,e,n,o,r,i,a){return this._callMain("getHistoryMessagesByObjectNames",t,e,n,o,r,i,a)},l.prototype.deleteRemoteMessage=function(t,e,n,o){return this._callMain("deleteRemoteMessage",t,e,n,o)},l.prototype.recallMsg=function(t,e,n,o,r){return this._callMain("recallMsg",t,e,n,o,r)},l.prototype.deleteRemoteMessageByTimestamp=function(t,e,n,o){return this._callMain("deleteRemoteMessageByTimestamp",t,e,n,o)},l.prototype.getConversationList=function(t,e,n,o,r){return this._callMain("getConversationList",t,e,n,o,r)},l.prototype.getConversationsByPage=function(t,e,n,o){return this._callMain("getConversationsByPage",t,e,n,o)},l.prototype.getUnreadConversationList=function(t){return this._callMain("getUnreadConversationList",t)},l.prototype.getConversationListWithAllChannel=function(t){return this._callMain("getConversationListWithAllChannel",t)},l.prototype.getConversationListWithAllChannelByPage=function(t,e){return this._callMain("getConversationListWithAllChannelByPage",t,e)},l.prototype.getConversation=function(t,e,n){return this._callMain("getConversation",t,e,n)},l.prototype.removeConversation=function(t,e,n){return this._callMain("removeConversation",t,e,n)},l.prototype.getAllConversationUnreadCount=function(t,e,n){return this._callMain("getAllConversationUnreadCount",t,e,n)},l.prototype.getConversationUnreadCount=function(t,e,n){return this._callMain("getConversationUnreadCount",t,e,n)},l.prototype.getTotalUnreadCountByLevels=function(e,n){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.clearConversationUnreadCount=function(t,e,n){return this._callMain("clearConversationUnreadCount",t,e,n)},l.prototype.getFirstUnreadMessage=function(t,e,n){return this._callMain("getFirstUnreadMessage",t,e,n)},l.prototype.getMessageByUids=function(t){return this._callMainSync("getMessageByUids",t)},l.prototype.setMessageSearchContent=function(t,e){return this._callMain("setMessageSearchContent",t,e)},l.prototype.getMessageByMsgUids=function(t,e,n,o){return this._callMainSync("getMessageByMsgUids",t,e,n,o)},l.prototype.saveConversationMessageDraft=function(t,e,n){return this._callMain("saveConversationMessageDraft",t,e,n)},l.prototype.getConversationMessageDraft=function(t,e){return this._callMain("getConversationMessageDraft",t,e)},l.prototype.clearConversationMessageDraft=function(t,e){return this._callMain("clearConversationMessageDraft",t,e)},l.prototype.pullConversationStatus=function(t){return this._callMain("pullConversationStatus",t)},l.prototype.batchSetConversationStatus=function(e){var n=e[0].notificationLevel;return t.isUndefined(n)?this._callMain("batchSetConversationStatus",e):Promise.resolve(t.ErrorCode.NOT_SUPPORT)},l.prototype.setConversationsMuteStatus=function(t){return this._callMain("setConversationsMuteStatus",t)},l.prototype.setConversationsTopStatus=function(t){return this._callMain("setConversationsTopStatus",t)},l.prototype.sendMessage=function(e,n,o,r,i){var a=this,s=["sendMessageBefore",Date.now(),Math.floor(Math.random()*Date.now())].join("_");return r&&(this._resolveMaps[s]=function(e){try{r(e)}catch(e){a.logger.error(t.LogTagId.A_CALLBACK_E,JSON.stringify({error:null==e?void 0:e.stack,pos:"sendMsgBefore"}))}}),this._callMain("sendMessage",e,n,o,s,i)},l.prototype.sendReadReceiptMessage=function(t,e,n){return this._callMain("sendReadReceiptMessage",t,e,n)},l.prototype.getMessageReader=function(t,e,n){return this._callMain("getMessageReader",t,e,n)},l.prototype.setGroupVoiceMessagePlayed=function(t,e,n){return this._callMain("setGroupVoiceMessagePlayed",t,e,n)},l.prototype.getGroupVoiceMessageReader=function(t,e,n){return this._callMain("getGroupVoiceMessageReader",t,e,n)},l.prototype.setReadMessages=function(t,e,n,o){return this._callMain("setReadMessages",t,e,n,o)},l.prototype.getMessageReceiptInfo=function(t,e,n){return this._callMain("getMessageReceiptInfo",t,e,n)},l.prototype.disconnect=function(t){return r(this,void 0,void 0,(function(){return i(this,(function(e){return this._send2Main("disconnect",t),[2]}))}))},l.prototype.pullUserSettings=function(t){return this._callMain("pullUserSettings",t)},l.prototype.registerMessageType=function(t,e,n,o){this._send2Main("registerMessageType",t,e,n,o)},l.prototype.joinChatroom=function(t,e){return this._callMain("joinChatroom",t,e)},l.prototype.joinExistChatroom=function(t,e){return this._callMain("joinExistChatroom",t,e)},l.prototype.quitChatroom=function(t){return this._callMain("quitChatroom",t)},l.prototype.getChatroomInfo=function(t,e,n){return this._callMain("getChatroomInfo",t,e,n)},l.prototype.getChatroomHistoryMessages=function(t,e,n,o){return this._callMain("getChatroomHistoryMessages",t,e,n,o)},l.prototype.setChatroomEntry=function(t,e){return this._callMain("setChatroomEntry",t,e)},l.prototype.setChatroomEntries=function(t,e){return this._callMain("setChatroomEntries",t,e)},l.prototype.forceSetChatroomEntry=function(t,e){return this._callMain("forceSetChatroomEntry",t,e)},l.prototype.removeChatroomEntry=function(t,e){return this._callMain("removeChatroomEntry",t,e)},l.prototype.forceRemoveChatroomEntry=function(t,e){return this._callMain("forceRemoveChatroomEntry",t,e)},l.prototype.removeChatroomEntries=function(t,e){return this._callMain("removeChatroomEntries",t,e)},l.prototype.getChatroomEntry=function(t,e){return this._callMain("getChatroomEntry",t,e)},l.prototype.getAllChatroomEntry=function(t){return this._callMain("getAllChatroomEntry",t)},l.prototype.getFileToken=function(t,e,n,o){return this._callMain("getFileToken",t,e,n,o)},l.prototype.getFileUrl=function(t,e,n,o){return this._callMain("getFileUrl",t,e,n,o)},l.prototype.setUserStatus=function(t){return this._callMain("setUserStatus",t)},l.prototype.subscribeUserStatus=function(t){return this._callMain("subscribeUserStatus",t)},l.prototype.getUserStatus=function(t){return this._callMain("getUserStatus",t)},l.prototype.clearConversations=function(t,e){return this._callMain("clearConversations",t,e)},l.prototype.addToBlacklist=function(t){return this._callMain("addToBlacklist",t)},l.prototype.removeFromBlacklist=function(t){return this._callMain("removeFromBlacklist",t)},l.prototype.getBlacklist=function(){return this._callMain("getBlacklist")},l.prototype.getBlacklistStatus=function(t){return this._callMain("getBlacklistStatus",t)},l.prototype.insertMessage=function(t,e,n){return this._callMain("insertMessage",t,e,n)},l.prototype.batchInsertMessage=function(t,e){return this._callMain("batchInsertMessage",t,e)},l.prototype.getMessageCount=function(t,e,n){return this._callMain("getMessageCount",t,e,n)},l.prototype.deleteMessages=function(t){return this._callMain("deleteMessages",t)},l.prototype.deleteMessagesByTimestamp=function(t,e,n,o,r){return this._callMain("deleteMessagesByTimestamp",t,e,n,o,r)},l.prototype.clearMessages=function(t,e,n){return this._callMain("clearMessages",t,e,n)},l.prototype.getMessage=function(t){return this._callMain("getMessage",t)},l.prototype.setTextMessageExtra=function(t,e){return this._callMain("setTextMessageExtra",t,e)},l.prototype.setMessageContent=function(t,e,n){return this._callMain("setMessageContent",t,e,n)},l.prototype.setMessageSearchField=function(t,e,n){return this._callMain("setMessageSearchField",t,e,n)},l.prototype.searchConversationByContent=function(t,e,n,o){return this._callMain("searchConversationByContent",t,e,n,o)},l.prototype.searchConversationByContentWithAllChannel=function(t,e,n){return this._callMain("searchConversationByContentWithAllChannel",t,e,n)},l.prototype.searchMessageByContentWithAllChannel=function(t,e,n,o,r){return this._callMain("searchMessageByContentWithAllChannel",t,e,n,o,r)},l.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContentInTimeRangeWithAllChannel",t,e,n,o,r,i,a)},l.prototype.searchMessageByContent=function(t,e,n,o,r,i,a){return this._callMain("searchMessageByContent",t,e,n,o,r,i,a)},l.prototype.getUnreadMentionedMessages=function(t,e,n){return this._callMainSync("getUnreadMentionedMessages",t,e,n)},l.prototype.setMessageSentStatus=function(t,e){return this._callMain("setMessageSentStatus",t,e)},l.prototype.setMessageReceivedStatus=function(t,e){return this._callMain("setMessageReceivedStatus",t,e)},l.prototype.updateMessageReceiptStatus=function(t,e,n,o){return this._callMain("updateMessageReceiptStatus",t,e,n,o)},l.prototype.clearUnreadCountByTimestamp=function(t,e,n,o){return this._callMain("clearUnreadCountByTimestamp",t,e,n,o)},l.prototype.clearAllUnreadCount=function(){throw new Error("Method not implemented.")},l.prototype.getConversationNotificationStatus=function(t,e,n){return this._callMain("getConversationNotificationStatus",t,e,n)},l.prototype.getRemoteHistoryMessages=function(t,e,n,o,r,i){return this._callMain("getRemoteHistoryMessages",t,e,n,o,r,i)},l.prototype.getServerTime=function(){return this._callMainSync("getServerTime")},l.prototype.getDeviceId=function(){return this._cache.deviceId},l.prototype.getCurrentUserId=function(){return this._cache.crtUserId},l.prototype.bindRTCRoomForChatroom=function(t){return this._callMain("bindRTCRoomForChatroom",t)},l.prototype.rtcSignaling=function(t,e,n,o){return r(this,void 0,void 0,(function(){var r,a,s;return i(this,(function(i){switch(i.label){case 0:return[4,this._callMain("rtcSignaling",t,e,n,o)];case 1:return r=i.sent(),a=r.code,s=r.buffer,[2,{code:a,buffer:s?new Uint8Array(s):s}]}}))}))},l.prototype.rtcPing=function(t,e,n){return this._callMain("rtcPing",t,e,n)},l.prototype.createTag=function(t){return this._callMain("createTag",t)},l.prototype.removeTag=function(t){return this._callMain("removeTag",t)},l.prototype.updateTag=function(t){return this._callMain("updateTag",t)},l.prototype.getTagList=function(){return this._callMain("getTagList")},l.prototype.addTagForConversations=function(t,e){return this._callMain("addTagForConversations",t,e)},l.prototype.removeTagForConversations=function(t,e){return this._callMain("removeTagForConversations",t,e)},l.prototype.removeTagsForConversation=function(t,e){return this._callMain("removeTagsForConversation",t,e)},l.prototype.getConversationListByTag=function(t,e,n,o){return this._callMain("getConversationListByTag",t,e,n,o)},l.prototype.getUnreadCountByTag=function(t,e){return this._callMain("getUnreadCountByTag",t,e)},l.prototype.setConversationStatusInTag=function(t,e,n){return this._callMain("setConversationStatusInTag",t,e,n)},l.prototype.getTagsForConversation=function(t){return this._callMain("getTagsForConversation",t)},l.prototype.clearData=function(){return this._callMain("clearData")},l.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},l.prototype.getGroupMessageDeliverList=function(t,e,n){return this._callMain("getGroupMessageDeliverList",t,e,n)},l.prototype.getPrivateMessageDeliverTime=function(t,e){return this._callMain("getPrivateMessageDeliverTime",t,e)},l.prototype.setCallInfo=function(t,e,n){return this._callMain("setCallInfo",t,e,n)},l.prototype.getTopConversationList=function(t,e){return this._callMain("getTopConversationList",t,e)},l.prototype.getUnreadMentionedCount=function(t){throw new Error("Method not implemented.")},l.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},l.prototype.getAllConversationState=function(){throw new Error("Method not implemented.")},l.prototype.getUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.getBlockUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.getTopUltraGroupList=function(){throw new Error("Method not implemented.")},l.prototype.clearUltraUnreadcount=function(t,e){throw new Error("Method not implemented.")},l.prototype.getUltraGroupUnreadMentionedCountByTargetId=function(t,e){throw new Error("Method not implemented.")},l.prototype.sendUltraMessage=function(t,e,n){throw new Error("Method not implemented.")},l.prototype.sendUltraGroupTypingStatus=function(t,e){throw new Error("Method not implemented.")},l.prototype.getUltraGroupMessageListByMessageUId=function(t){throw new Error("Method not implemented.")},l.prototype.expandUltraMessage=function(t){throw new Error("Method not implemented.")},l.prototype.modifyMessage=function(t){throw new Error("Method not implemented.")},l.prototype.getUltraHistoryMsg=function(t,e){throw new Error("Method not implemented.")},l.prototype.getConversationNotificationLevel=function(e,n,o){return r(this,void 0,void 0,(function(){return i(this,(function(e){return[2,Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})]}))}))},l.prototype.getUltraGroupDefaultNotificationLevel=function(e,n){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getAllUltraGroupUnreadCount=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupUnreadCountByTargetId=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.setUltraGroupDefaultNotificationLevel=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupUnreadMentionedMessages=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getUltraGroupFirstUnreadMessageTimestamp=function(){return Promise.resolve({code:t.ErrorCode.NOT_SUPPORT})},l.prototype.getOSInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(t){return[2,this._callMain("getOSInfo")]}))}))},l.prototype.getProcessInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(e){return[2,{code:t.ErrorCode.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},l.prototype.getMainProcessInfo=function(){return r(this,void 0,void 0,(function(){return i(this,(function(t){return[2,this._callMain("getMainProcessInfo")]}))}))},l.prototype.setProxy=function(t){return this._callMain("setProxy",t)},l.prototype.getProxy=function(){return this._callMain("getProxy")},l.prototype.testProxy=function(t,e){return this._callMain("testProxy",t,e)},l.prototype.setCheckDuplicateMessage=function(t){return this._callMain("checkDuplicateMessage",t)},l.prototype.subscribeAccount=function(t,e,n){return this._callMain("subscribeAccount",t,e,n)},l}(t.AEngine);window&&(window.RCCppEngine=g),exports.RCCppEngine=g;
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "types": "index.d.ts",
12
12
  "module": "index.esm.js",
13
- "version": "5.7.3",
13
+ "version": "5.7.4-beem.2",
14
14
  "author": "pass-web@rongcloud.cn",
15
15
  "license": "LGPL 2.1",
16
16
  "homepage": "https://www.rongcloud.cn",
@@ -21,6 +21,6 @@
21
21
  "globals": "RCCppEngine"
22
22
  },
23
23
  "peerDependencies": {
24
- "@rongcloud/engine": "=5.7.3"
24
+ "@rongcloud/engine": "=5.7.4-beem.2"
25
25
  }
26
26
  }