@trackunit/iris-app-runtime-core 0.3.81 → 0.3.82
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 +2 -2
- package/src/NavigationRuntime.d.ts +1 -15
package/index.cjs.js
CHANGED
|
@@ -758,6 +758,10 @@ const NavigationRuntime = {
|
|
|
758
758
|
const api = yield getHostConnector();
|
|
759
759
|
return api.gotoAppLibrary(irisAppId);
|
|
760
760
|
}),
|
|
761
|
+
gotoFleetApp: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
762
|
+
const api = yield getHostConnector();
|
|
763
|
+
return api.gotoFleetApp(options);
|
|
764
|
+
}),
|
|
761
765
|
};
|
|
762
766
|
|
|
763
767
|
const ParamsRuntime = {
|
package/index.esm.js
CHANGED
|
@@ -755,6 +755,10 @@ const NavigationRuntime = {
|
|
|
755
755
|
const api = yield getHostConnector();
|
|
756
756
|
return api.gotoAppLibrary(irisAppId);
|
|
757
757
|
}),
|
|
758
|
+
gotoFleetApp: (options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
759
|
+
const api = yield getHostConnector();
|
|
760
|
+
return api.gotoFleetApp(options);
|
|
761
|
+
}),
|
|
758
762
|
};
|
|
759
763
|
|
|
760
764
|
const ParamsRuntime = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.82",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"module": "./index.esm.js",
|
|
10
10
|
"main": "./index.cjs.js",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@trackunit/iris-app-runtime-core-api": "0.3.
|
|
12
|
+
"@trackunit/iris-app-runtime-core-api": "0.3.74",
|
|
13
13
|
"@trackunit/react-core-contexts-api": "0.2.61"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {}
|
|
@@ -1,16 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface INavigationRuntime {
|
|
3
|
-
setDeepLink: SetDeepLink;
|
|
4
|
-
gotoAssetHome: (assetId: string, options?: {
|
|
5
|
-
irisAppId?: string;
|
|
6
|
-
extensionId?: string;
|
|
7
|
-
subPage?: AssetHomeSubPage;
|
|
8
|
-
}) => Promise<boolean>;
|
|
9
|
-
gotoSiteHome: (siteId: string, options?: {
|
|
10
|
-
irisAppId?: string;
|
|
11
|
-
extensionId?: string;
|
|
12
|
-
subPage?: SiteHomeSubPage;
|
|
13
|
-
}) => Promise<boolean>;
|
|
14
|
-
gotoAppLibrary: (irisAppId?: string) => Promise<boolean>;
|
|
15
|
-
}
|
|
1
|
+
import { INavigationRuntime } from "@trackunit/iris-app-runtime-core-api";
|
|
16
2
|
export declare const NavigationRuntime: INavigationRuntime;
|