@trackunit/iris-app-runtime-core 1.17.11 → 1.17.13

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
@@ -217,6 +217,10 @@ const CurrentUserPreferenceRuntime = {
217
217
  const api = await getHostConnector();
218
218
  return api.getCurrentUserTimeZonePreference();
219
219
  },
220
+ getCurrentUserCustomTimezone: async () => {
221
+ const api = await getHostConnector();
222
+ return api.getCurrentUserCustomTimezone();
223
+ },
220
224
  getCurrentUserSystemOfMeasurement: async () => {
221
225
  const api = await getHostConnector();
222
226
  return api.getCurrentUserSystemOfMeasurement();
package/index.esm.js CHANGED
@@ -215,6 +215,10 @@ const CurrentUserPreferenceRuntime = {
215
215
  const api = await getHostConnector();
216
216
  return api.getCurrentUserTimeZonePreference();
217
217
  },
218
+ getCurrentUserCustomTimezone: async () => {
219
+ const api = await getHostConnector();
220
+ return api.getCurrentUserCustomTimezone();
221
+ },
218
222
  getCurrentUserSystemOfMeasurement: async () => {
219
223
  const api = await getHostConnector();
220
224
  return api.getCurrentUserSystemOfMeasurement();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "1.17.11",
3
+ "version": "1.17.13",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "penpal": "^7.0.6",
11
- "@trackunit/iris-app-runtime-core-api": "1.16.11"
11
+ "@trackunit/iris-app-runtime-core-api": "1.16.13"
12
12
  },
13
13
  "module": "./index.esm.js",
14
14
  "main": "./index.cjs.js",