@trackunit/iris-app-runtime-core 0.3.163 → 0.3.164
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 +1 -1
package/index.cjs.js
CHANGED
|
@@ -348,9 +348,9 @@ const NavigationRuntime = {
|
|
|
348
348
|
const api = yield getHostConnector();
|
|
349
349
|
return api.gotoMyExports(exportId);
|
|
350
350
|
}),
|
|
351
|
-
gotoAdmin: () => __awaiter(void 0, void 0, void 0, function* () {
|
|
351
|
+
gotoAdmin: (url) => __awaiter(void 0, void 0, void 0, function* () {
|
|
352
352
|
const api = yield getHostConnector();
|
|
353
|
-
return api.gotoAdmin();
|
|
353
|
+
return api.gotoAdmin(url);
|
|
354
354
|
}),
|
|
355
355
|
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
356
356
|
const api = yield getHostConnector();
|
package/index.esm.js
CHANGED
|
@@ -344,9 +344,9 @@ const NavigationRuntime = {
|
|
|
344
344
|
const api = yield getHostConnector();
|
|
345
345
|
return api.gotoMyExports(exportId);
|
|
346
346
|
}),
|
|
347
|
-
gotoAdmin: () => __awaiter(void 0, void 0, void 0, function* () {
|
|
347
|
+
gotoAdmin: (url) => __awaiter(void 0, void 0, void 0, function* () {
|
|
348
348
|
const api = yield getHostConnector();
|
|
349
|
-
return api.gotoAdmin();
|
|
349
|
+
return api.gotoAdmin(url);
|
|
350
350
|
}),
|
|
351
351
|
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
352
352
|
const api = yield getHostConnector();
|