@vida-global/apps-tools 1.0.9 → 1.0.10

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.
@@ -39,7 +39,7 @@ class VidaLiveAppManager extends AbstractAppManager {
39
39
 
40
40
 
41
41
 
42
- async fetchVanillaAppManifest(appId, appVersion) {
42
+ async fetchVanillaAppManifest(appId, appVersion, userContext = null) {
43
43
  return await this.#vaderApiClient.invokeAppManager('fetchVanillaAppManifest',
44
44
  [appId, appVersion],
45
45
  userContext);
@@ -72,7 +72,7 @@ class VidaLiveAppManager extends AbstractAppManager {
72
72
  throw new Error(`App not installed: ${appId} ${appVersion}`)
73
73
  }
74
74
  const vanillaManifest = await this.fetchVanillaAppManifest(appId, appVersion, userContext);
75
- const app = await this.getApp(appId, appVersion, vanillaManifest,userContext);
75
+ const app = await this.getApp(appId, appVersion, vanillaManifest, userContext);
76
76
  await app.update(manifest);
77
77
  return app
78
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vida-global/apps-tools",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Classes for creating vida apps",
5
5
  "author": "",
6
6
  "license": "ISC",