@trackunit/iris-app-runtime-core 0.0.59-alpha-147d4031b.0 → 0.0.61

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.
@@ -1,6 +1,5 @@
1
- import { DeepLink, SetDeepLink } from "@trackunit/iris-app-runtime-core-api";
1
+ import { SetDeepLink } from "@trackunit/iris-app-runtime-core-api";
2
2
  export interface INavigationRuntime {
3
- getDeepLink: () => Promise<DeepLink>;
4
3
  setDeepLink: SetDeepLink;
5
4
  }
6
5
  export declare const NavigationRuntime: INavigationRuntime;
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ > **⚠️ Beta**
2
+ >
3
+ > This is a beta version and subject to change without notice.
4
+
1
5
  # Trackunit Iris App Runtime Core
2
6
 
3
7
  The `@trackunit/iris-app-runtime-core` package is used for development with the Trackunit [Iris App SDK](https://www.npmjs.com/package/@trackunit/iris-app).
package/index.js CHANGED
@@ -1325,10 +1325,6 @@ const EnvironmentRuntime = {
1325
1325
  };
1326
1326
 
1327
1327
  const NavigationRuntime = {
1328
- getDeepLink: () => __awaiter(void 0, void 0, void 0, function* () {
1329
- const api = yield getHostConnector();
1330
- return api.getDeepLink();
1331
- }),
1332
1328
  setDeepLink: props => __awaiter(void 0, void 0, void 0, function* () {
1333
1329
  const api = yield getHostConnector();
1334
1330
  return api.setDeepLink(props);
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.0.59-alpha-147d4031b.0",
3
+ "version": "0.0.61",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
- "license": "UNLICENSED",
5
+ "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "module": "./index.js",
7
7
  "main": "./index.js",
8
8
  "type": "module",
9
9
  "types": "./index.d.ts",
10
10
  "dependencies": {
11
- "@trackunit/iris-app-runtime-core-api": "0.0.57-alpha-147d4031b.0",
12
- "@trackunit/react-core-contexts-api": "0.0.53-alpha-147d4031b.0"
11
+ "@trackunit/iris-app-runtime-core-api": "0.0.59",
12
+ "@trackunit/react-core-contexts-api": "0.0.54"
13
13
  },
14
14
  "peerDependencies": {}
15
15
  }