@trackunit/iris-app-runtime-core-api 1.12.30-alpha-3fb17ca5f15.0 → 1.12.30
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 +2 -2
- package/index.esm.js +2 -2
- package/package.json +3 -3
package/index.cjs.js
CHANGED
|
@@ -13,7 +13,7 @@ var sharedUtils = require('@trackunit/shared-utils');
|
|
|
13
13
|
*/
|
|
14
14
|
const createEvent = (event) => ({
|
|
15
15
|
description: event?.description,
|
|
16
|
-
// eslint-disable-next-line
|
|
16
|
+
// eslint-disable-next-line @trackunit/no-typescript-assertion
|
|
17
17
|
properties: {},
|
|
18
18
|
});
|
|
19
19
|
|
|
@@ -281,7 +281,7 @@ const isIrisOptions = (options) => {
|
|
|
281
281
|
* type guard for FleetAppStandardOptions
|
|
282
282
|
*/
|
|
283
283
|
const isFleetAppStandardOptions = (options) => {
|
|
284
|
-
// eslint-disable-next-line
|
|
284
|
+
// eslint-disable-next-line @trackunit/no-typescript-assertion
|
|
285
285
|
return Boolean(options.page && mainApps.includes(options.page) && !isIrisOptions(options));
|
|
286
286
|
};
|
|
287
287
|
/**
|
package/index.esm.js
CHANGED
|
@@ -11,7 +11,7 @@ import { isUUID } from '@trackunit/shared-utils';
|
|
|
11
11
|
*/
|
|
12
12
|
const createEvent = (event) => ({
|
|
13
13
|
description: event?.description,
|
|
14
|
-
// eslint-disable-next-line
|
|
14
|
+
// eslint-disable-next-line @trackunit/no-typescript-assertion
|
|
15
15
|
properties: {},
|
|
16
16
|
});
|
|
17
17
|
|
|
@@ -279,7 +279,7 @@ const isIrisOptions = (options) => {
|
|
|
279
279
|
* type guard for FleetAppStandardOptions
|
|
280
280
|
*/
|
|
281
281
|
const isFleetAppStandardOptions = (options) => {
|
|
282
|
-
// eslint-disable-next-line
|
|
282
|
+
// eslint-disable-next-line @trackunit/no-typescript-assertion
|
|
283
283
|
return Boolean(options.page && mainApps.includes(options.page) && !isIrisOptions(options));
|
|
284
284
|
};
|
|
285
285
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core-api",
|
|
3
|
-
"version": "1.12.30
|
|
3
|
+
"version": "1.12.30",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
11
|
-
"@trackunit/shared-utils": "1.13.49
|
|
12
|
-
"@trackunit/geo-json-utils": "1.11.49
|
|
11
|
+
"@trackunit/shared-utils": "1.13.49",
|
|
12
|
+
"@trackunit/geo-json-utils": "1.11.49"
|
|
13
13
|
},
|
|
14
14
|
"module": "./index.esm.js",
|
|
15
15
|
"main": "./index.cjs.js",
|