@trackunit/iris-app-runtime-core 1.2.0 → 1.3.0
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.js +2 -2
- package/index.esm.js +2 -2
- package/package.json +3 -3
package/index.cjs.js
CHANGED
|
@@ -391,9 +391,9 @@ const NavigationRuntime = {
|
|
|
391
391
|
const api = await getHostConnector();
|
|
392
392
|
return api.gotoMarketplace(options);
|
|
393
393
|
},
|
|
394
|
-
reloadManager: async () => {
|
|
394
|
+
reloadManager: async (options) => {
|
|
395
395
|
const api = await getHostConnector();
|
|
396
|
-
return api.reloadManager();
|
|
396
|
+
return api.reloadManager(options);
|
|
397
397
|
},
|
|
398
398
|
hasAccessTo: async (options) => {
|
|
399
399
|
const api = await getHostConnector();
|
package/index.esm.js
CHANGED
|
@@ -389,9 +389,9 @@ const NavigationRuntime = {
|
|
|
389
389
|
const api = await getHostConnector();
|
|
390
390
|
return api.gotoMarketplace(options);
|
|
391
391
|
},
|
|
392
|
-
reloadManager: async () => {
|
|
392
|
+
reloadManager: async (options) => {
|
|
393
393
|
const api = await getHostConnector();
|
|
394
|
-
return api.reloadManager();
|
|
394
|
+
return api.reloadManager(options);
|
|
395
395
|
},
|
|
396
396
|
hasAccessTo: async (options) => {
|
|
397
397
|
const api = await getHostConnector();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"penpal": "^6.2.2",
|
|
11
11
|
"jest-fetch-mock": "^3.0.3",
|
|
12
|
-
"@trackunit/react-core-contexts-api": "1.
|
|
13
|
-
"@trackunit/iris-app-runtime-core-api": "1.2.
|
|
12
|
+
"@trackunit/react-core-contexts-api": "1.3.0",
|
|
13
|
+
"@trackunit/iris-app-runtime-core-api": "1.2.1"
|
|
14
14
|
},
|
|
15
15
|
"module": "./index.esm.js",
|
|
16
16
|
"main": "./index.cjs.js",
|