@trackunit/iris-app-runtime-core 1.8.44 → 1.8.46
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 +8 -0
- package/index.esm.js +8 -0
- package/package.json +4 -4
package/index.cjs.js
CHANGED
|
@@ -391,6 +391,10 @@ const NavigationRuntime = {
|
|
|
391
391
|
const api = await getHostConnector();
|
|
392
392
|
return api.gotoCustomerHome(customerId, options);
|
|
393
393
|
},
|
|
394
|
+
gotoGroupHome: async (groupId, options) => {
|
|
395
|
+
const api = await getHostConnector();
|
|
396
|
+
return api.gotoGroupHome(groupId, options);
|
|
397
|
+
},
|
|
394
398
|
gotoAdmin: async (url) => {
|
|
395
399
|
const api = await getHostConnector();
|
|
396
400
|
return api.gotoAdmin(url);
|
|
@@ -423,6 +427,10 @@ const NavigationRuntime = {
|
|
|
423
427
|
const api = await getHostConnector();
|
|
424
428
|
return api.getCustomerHomeUrl(customerId, options);
|
|
425
429
|
},
|
|
430
|
+
getGroupHomeUrl: async (groupId, options) => {
|
|
431
|
+
const api = await getHostConnector();
|
|
432
|
+
return api.getGroupHomeUrl(groupId, options);
|
|
433
|
+
},
|
|
426
434
|
getAppLibraryUrl: async (irisAppId) => {
|
|
427
435
|
const api = await getHostConnector();
|
|
428
436
|
return api.getAppLibraryUrl(irisAppId);
|
package/index.esm.js
CHANGED
|
@@ -389,6 +389,10 @@ const NavigationRuntime = {
|
|
|
389
389
|
const api = await getHostConnector();
|
|
390
390
|
return api.gotoCustomerHome(customerId, options);
|
|
391
391
|
},
|
|
392
|
+
gotoGroupHome: async (groupId, options) => {
|
|
393
|
+
const api = await getHostConnector();
|
|
394
|
+
return api.gotoGroupHome(groupId, options);
|
|
395
|
+
},
|
|
392
396
|
gotoAdmin: async (url) => {
|
|
393
397
|
const api = await getHostConnector();
|
|
394
398
|
return api.gotoAdmin(url);
|
|
@@ -421,6 +425,10 @@ const NavigationRuntime = {
|
|
|
421
425
|
const api = await getHostConnector();
|
|
422
426
|
return api.getCustomerHomeUrl(customerId, options);
|
|
423
427
|
},
|
|
428
|
+
getGroupHomeUrl: async (groupId, options) => {
|
|
429
|
+
const api = await getHostConnector();
|
|
430
|
+
return api.getGroupHomeUrl(groupId, options);
|
|
431
|
+
},
|
|
424
432
|
getAppLibraryUrl: async (irisAppId) => {
|
|
425
433
|
const api = await getHostConnector();
|
|
426
434
|
return api.getAppLibraryUrl(irisAppId);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.46",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"penpal": "^6.2.2",
|
|
11
11
|
"jest-fetch-mock": "^3.0.3",
|
|
12
|
-
"@trackunit/react-core-contexts-api": "1.8.
|
|
13
|
-
"@trackunit/iris-app-runtime-core-api": "1.7.
|
|
14
|
-
"@trackunit/react-test-setup": "1.4.
|
|
12
|
+
"@trackunit/react-core-contexts-api": "1.8.46",
|
|
13
|
+
"@trackunit/iris-app-runtime-core-api": "1.7.46",
|
|
14
|
+
"@trackunit/react-test-setup": "1.4.42"
|
|
15
15
|
},
|
|
16
16
|
"module": "./index.esm.js",
|
|
17
17
|
"main": "./index.cjs.js",
|