@trackunit/iris-app-runtime-core 0.3.2 → 0.3.3
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 +2 -2
- package/package.json +2 -2
- package/src/AssetRuntime.d.ts +1 -1
package/index.cjs
CHANGED
|
@@ -1141,9 +1141,9 @@ const AssetRuntime = {
|
|
|
1141
1141
|
const api = yield getHostConnector();
|
|
1142
1142
|
return api.getAssetInfo();
|
|
1143
1143
|
}),
|
|
1144
|
-
gotoAssetHome: assetId => __awaiter(void 0, void 0, void 0, function* () {
|
|
1144
|
+
gotoAssetHome: (assetId, irisAppId, extensionId) => __awaiter(void 0, void 0, void 0, function* () {
|
|
1145
1145
|
const api = yield getHostConnector();
|
|
1146
|
-
return api.gotoAssetHome(assetId);
|
|
1146
|
+
return api.gotoAssetHome(assetId, irisAppId, extensionId);
|
|
1147
1147
|
})
|
|
1148
1148
|
};
|
|
1149
1149
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./index.cjs",
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"types": "./src/index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@trackunit/iris-app-runtime-core-api": "0.3.
|
|
10
|
+
"@trackunit/iris-app-runtime-core-api": "0.3.2",
|
|
11
11
|
"@trackunit/react-core-contexts-api": "0.2.4"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {}
|
package/src/AssetRuntime.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AssetInfo } from "@trackunit/iris-app-runtime-core-api";
|
|
2
2
|
export interface IAssetRuntime {
|
|
3
3
|
getAssetInfo: () => Promise<AssetInfo>;
|
|
4
|
-
gotoAssetHome: (assetId: string) => Promise<boolean>;
|
|
4
|
+
gotoAssetHome: (assetId: string, irisAppId?: string, extensionId?: string) => Promise<boolean>;
|
|
5
5
|
}
|
|
6
6
|
export declare const AssetRuntime: IAssetRuntime;
|