@trackunit/iris-app-runtime-core 0.3.222 → 0.3.224
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 +4 -0
- package/index.esm.js +4 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -383,6 +383,10 @@ const NavigationRuntime = {
|
|
|
383
383
|
const api = await getHostConnector();
|
|
384
384
|
return api.gotoAdmin(url);
|
|
385
385
|
},
|
|
386
|
+
goToAlerts: async (url) => {
|
|
387
|
+
const api = await getHostConnector();
|
|
388
|
+
return api.goToAlerts(url);
|
|
389
|
+
},
|
|
386
390
|
gotoMarketplace: async (options) => {
|
|
387
391
|
const api = await getHostConnector();
|
|
388
392
|
return api.gotoMarketplace(options);
|
package/index.esm.js
CHANGED
|
@@ -381,6 +381,10 @@ const NavigationRuntime = {
|
|
|
381
381
|
const api = await getHostConnector();
|
|
382
382
|
return api.gotoAdmin(url);
|
|
383
383
|
},
|
|
384
|
+
goToAlerts: async (url) => {
|
|
385
|
+
const api = await getHostConnector();
|
|
386
|
+
return api.goToAlerts(url);
|
|
387
|
+
},
|
|
384
388
|
gotoMarketplace: async (options) => {
|
|
385
389
|
const api = await getHostConnector();
|
|
386
390
|
return api.gotoMarketplace(options);
|