@trackunit/iris-app-runtime-core 0.3.149 → 0.3.151
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
|
@@ -335,6 +335,10 @@ const NavigationRuntime = {
|
|
|
335
335
|
const api = yield getHostConnector();
|
|
336
336
|
return api.gotoFleetApp(options);
|
|
337
337
|
}),
|
|
338
|
+
gotoCustomer: (customerId) => __awaiter(void 0, void 0, void 0, function* () {
|
|
339
|
+
const api = yield getHostConnector();
|
|
340
|
+
return api.gotoCustomer(customerId);
|
|
341
|
+
}),
|
|
338
342
|
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
339
343
|
const api = yield getHostConnector();
|
|
340
344
|
return api.hasAccessTo(options);
|
package/index.esm.js
CHANGED
|
@@ -331,6 +331,10 @@ const NavigationRuntime = {
|
|
|
331
331
|
const api = yield getHostConnector();
|
|
332
332
|
return api.gotoFleetApp(options);
|
|
333
333
|
}),
|
|
334
|
+
gotoCustomer: (customerId) => __awaiter(void 0, void 0, void 0, function* () {
|
|
335
|
+
const api = yield getHostConnector();
|
|
336
|
+
return api.gotoCustomer(customerId);
|
|
337
|
+
}),
|
|
334
338
|
hasAccessTo: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
335
339
|
const api = yield getHostConnector();
|
|
336
340
|
return api.hasAccessTo(options);
|