@trackunit/iris-app-runtime-core 0.3.93 → 0.3.96
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
|
@@ -329,6 +329,10 @@ const NavigationRuntime = {
|
|
|
329
329
|
const api = yield getHostConnector();
|
|
330
330
|
return api.gotoFleetApp(options);
|
|
331
331
|
}),
|
|
332
|
+
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
333
|
+
const api = yield getHostConnector();
|
|
334
|
+
return api.hasAccessTo(options);
|
|
335
|
+
}),
|
|
332
336
|
};
|
|
333
337
|
|
|
334
338
|
const ParamsRuntime = {
|
package/index.esm.js
CHANGED
|
@@ -326,6 +326,10 @@ const NavigationRuntime = {
|
|
|
326
326
|
const api = yield getHostConnector();
|
|
327
327
|
return api.gotoFleetApp(options);
|
|
328
328
|
}),
|
|
329
|
+
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
330
|
+
const api = yield getHostConnector();
|
|
331
|
+
return api.hasAccessTo(options);
|
|
332
|
+
}),
|
|
329
333
|
};
|
|
330
334
|
|
|
331
335
|
const ParamsRuntime = {
|