@trackunit/iris-app-runtime-core 0.3.69-alpha-b0920fa0dd.0 → 0.3.69

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
@@ -715,6 +715,10 @@ const NavigationRuntime = {
715
715
  const api = yield getHostConnector();
716
716
  return api.gotoSiteHome(siteId, options);
717
717
  }),
718
+ gotoAppLibrary: (irisAppId) => __awaiter(void 0, void 0, void 0, function* () {
719
+ const api = yield getHostConnector();
720
+ return api.gotoAppLibrary(irisAppId);
721
+ })
718
722
  };
719
723
 
720
724
  const ParamsRuntime = {
package/index.esm.js CHANGED
@@ -712,6 +712,10 @@ const NavigationRuntime = {
712
712
  const api = yield getHostConnector();
713
713
  return api.gotoSiteHome(siteId, options);
714
714
  }),
715
+ gotoAppLibrary: (irisAppId) => __awaiter(void 0, void 0, void 0, function* () {
716
+ const api = yield getHostConnector();
717
+ return api.gotoAppLibrary(irisAppId);
718
+ })
715
719
  };
716
720
 
717
721
  const ParamsRuntime = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.3.69-alpha-b0920fa0dd.0",
3
+ "version": "0.3.69",
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.62-alpha-b0920fa0dd.0",
13
- "@trackunit/react-core-contexts-api": "0.2.54-alpha-b0920fa0dd.0"
12
+ "@trackunit/iris-app-runtime-core-api": "0.3.62",
13
+ "@trackunit/react-core-contexts-api": "0.2.53"
14
14
  },
15
15
  "peerDependencies": {}
16
16
  }
@@ -11,5 +11,6 @@ export interface INavigationRuntime {
11
11
  extensionId?: string;
12
12
  subPage?: SiteHomeSubPage;
13
13
  }) => Promise<boolean>;
14
+ gotoAppLibrary: (irisAppId?: string) => Promise<boolean>;
14
15
  }
15
16
  export declare const NavigationRuntime: INavigationRuntime;