@trackunit/iris-app-runtime-core 0.3.81 → 0.3.83

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 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.81",
3
+ "version": "0.3.83",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,8 +9,8 @@
9
9
  "module": "./index.esm.js",
10
10
  "main": "./index.cjs.js",
11
11
  "dependencies": {
12
- "@trackunit/iris-app-runtime-core-api": "0.3.73",
13
- "@trackunit/react-core-contexts-api": "0.2.61"
12
+ "@trackunit/iris-app-runtime-core-api": "0.3.75",
13
+ "@trackunit/react-core-contexts-api": "0.2.62"
14
14
  },
15
15
  "peerDependencies": {}
16
16
  }
@@ -1,16 +1,2 @@
1
- import { AssetHomeSubPage, SetDeepLink, SiteHomeSubPage } from "@trackunit/iris-app-runtime-core-api";
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;