evmux-app-framework 0.0.55 → 0.0.56
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/package.json
CHANGED
|
@@ -11,6 +11,7 @@ import AppsObserverAppsHandler from './AppsObserverAppsHandler'
|
|
|
11
11
|
import { availableEvents } from '../EvmuxAppsApi/EvmuxAppsApi'
|
|
12
12
|
import AppsObserverSocialHandler from "./AppsObserverSocialHandler";
|
|
13
13
|
import AppsObserverModulesHandler from "./AppsObserverModulesHandler";
|
|
14
|
+
import AppsObserverStudioHandler from "./AppsObserverStudioHandler";
|
|
14
15
|
|
|
15
16
|
export const availableRequests = {
|
|
16
17
|
updateSettings: "updateSettings",
|
|
@@ -78,6 +79,7 @@ let createEventResultObject = (requestName, eventName, result) => {
|
|
|
78
79
|
this._requestHandlers.push(new AppsObserverAppsHandler(app))
|
|
79
80
|
this._requestHandlers.push(new AppsObserverSocialHandler(app))
|
|
80
81
|
this._requestHandlers.push(new AppsObserverModulesHandler(app))
|
|
82
|
+
this._requestHandlers.push(new AppsObserverStudioHandler(app))
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
_sendPostMessageToUsrAppInstancesComponents(userAppInstanceId, data, originComponentIdToExclude = null) {
|