@trackunit/filters-graphql-hook 1.23.10 → 1.24.0
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 +5 -6
- package/index.esm.js +5 -6
- package/package.json +6 -4
- package/src/generated/graphql-api/graphql.d.ts +5 -6
package/index.cjs.js
CHANGED
|
@@ -324,10 +324,10 @@ const fleetDataHealthDeviceStatus = {
|
|
|
324
324
|
LOW: "LOW",
|
|
325
325
|
};
|
|
326
326
|
const fleetDataHealthIssueCategory = {
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
327
|
+
COVERAGE: "COVERAGE",
|
|
328
|
+
DEVICE_BATTERY: "DEVICE_BATTERY",
|
|
329
|
+
INSTALL_AND_CONFIGURATION: "INSTALL_AND_CONFIGURATION",
|
|
330
|
+
NON_REPORTING_DEVICE: "NON_REPORTING_DEVICE",
|
|
331
331
|
};
|
|
332
332
|
const fleetDataHealthIssueState = {
|
|
333
333
|
OPEN: "OPEN",
|
|
@@ -335,13 +335,12 @@ const fleetDataHealthIssueState = {
|
|
|
335
335
|
};
|
|
336
336
|
const fleetDataHealthIssueType = {
|
|
337
337
|
DATA_NOT_RECEIVED: "DATA_NOT_RECEIVED",
|
|
338
|
-
INSTALLATION_VALIDATION_MISSING: "INSTALLATION_VALIDATION_MISSING",
|
|
339
338
|
LOW_CELLULAR_COVERAGE: "LOW_CELLULAR_COVERAGE",
|
|
340
339
|
LOW_DEVICE_BATTERY_VOLTAGE: "LOW_DEVICE_BATTERY_VOLTAGE",
|
|
341
340
|
LOW_DEVICE_INPUT_VOLTAGE: "LOW_DEVICE_INPUT_VOLTAGE",
|
|
342
341
|
LOW_GPS_COVERAGE: "LOW_GPS_COVERAGE",
|
|
343
342
|
NO_CAN_DATA_CONFIGURATION: "NO_CAN_DATA_CONFIGURATION",
|
|
344
|
-
|
|
343
|
+
UNUSUAL_OPERATING_HOURS: "UNUSUAL_OPERATING_HOURS",
|
|
345
344
|
};
|
|
346
345
|
const metadataCompleteness = {
|
|
347
346
|
COMPLETE: "COMPLETE",
|
package/index.esm.js
CHANGED
|
@@ -322,10 +322,10 @@ const fleetDataHealthDeviceStatus = {
|
|
|
322
322
|
LOW: "LOW",
|
|
323
323
|
};
|
|
324
324
|
const fleetDataHealthIssueCategory = {
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
325
|
+
COVERAGE: "COVERAGE",
|
|
326
|
+
DEVICE_BATTERY: "DEVICE_BATTERY",
|
|
327
|
+
INSTALL_AND_CONFIGURATION: "INSTALL_AND_CONFIGURATION",
|
|
328
|
+
NON_REPORTING_DEVICE: "NON_REPORTING_DEVICE",
|
|
329
329
|
};
|
|
330
330
|
const fleetDataHealthIssueState = {
|
|
331
331
|
OPEN: "OPEN",
|
|
@@ -333,13 +333,12 @@ const fleetDataHealthIssueState = {
|
|
|
333
333
|
};
|
|
334
334
|
const fleetDataHealthIssueType = {
|
|
335
335
|
DATA_NOT_RECEIVED: "DATA_NOT_RECEIVED",
|
|
336
|
-
INSTALLATION_VALIDATION_MISSING: "INSTALLATION_VALIDATION_MISSING",
|
|
337
336
|
LOW_CELLULAR_COVERAGE: "LOW_CELLULAR_COVERAGE",
|
|
338
337
|
LOW_DEVICE_BATTERY_VOLTAGE: "LOW_DEVICE_BATTERY_VOLTAGE",
|
|
339
338
|
LOW_DEVICE_INPUT_VOLTAGE: "LOW_DEVICE_INPUT_VOLTAGE",
|
|
340
339
|
LOW_GPS_COVERAGE: "LOW_GPS_COVERAGE",
|
|
341
340
|
NO_CAN_DATA_CONFIGURATION: "NO_CAN_DATA_CONFIGURATION",
|
|
342
|
-
|
|
341
|
+
UNUSUAL_OPERATING_HOURS: "UNUSUAL_OPERATING_HOURS",
|
|
343
342
|
};
|
|
344
343
|
const metadataCompleteness = {
|
|
345
344
|
COMPLETE: "COMPLETE",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/filters-graphql-hook",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
12
12
|
"zod": "^3.23.8",
|
|
13
13
|
"@trackunit/iris-app-build-utilities": "1.14.4",
|
|
14
|
-
"@trackunit/filters-filter-bar": "1.20.
|
|
14
|
+
"@trackunit/filters-filter-bar": "1.20.11",
|
|
15
15
|
"@trackunit/shared-utils": "1.13.92",
|
|
16
16
|
"@trackunit/iris-app-api": "1.16.4",
|
|
17
17
|
"@trackunit/react-core-contexts-test": "1.15.6",
|
|
@@ -20,9 +20,11 @@
|
|
|
20
20
|
"@trackunit/react-core-hooks": "1.15.6"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "^19.0.0",
|
|
24
23
|
"@apollo/client": "^3.13.8",
|
|
25
|
-
"
|
|
24
|
+
"@tanstack/react-router": "^1.114.29",
|
|
25
|
+
"graphql": "^16.10.0",
|
|
26
|
+
"react": "^19.0.0",
|
|
27
|
+
"react-hook-form": "^7.62.0"
|
|
26
28
|
},
|
|
27
29
|
"module": "./index.esm.js",
|
|
28
30
|
"main": "./index.cjs.js",
|
|
@@ -420,10 +420,10 @@ export declare const fleetDataHealthDeviceStatus: {
|
|
|
420
420
|
};
|
|
421
421
|
export type FleetDataHealthDeviceStatus = (typeof fleetDataHealthDeviceStatus)[keyof typeof fleetDataHealthDeviceStatus];
|
|
422
422
|
export declare const fleetDataHealthIssueCategory: {
|
|
423
|
-
readonly
|
|
424
|
-
readonly
|
|
425
|
-
readonly
|
|
426
|
-
readonly
|
|
423
|
+
readonly COVERAGE: "COVERAGE";
|
|
424
|
+
readonly DEVICE_BATTERY: "DEVICE_BATTERY";
|
|
425
|
+
readonly INSTALL_AND_CONFIGURATION: "INSTALL_AND_CONFIGURATION";
|
|
426
|
+
readonly NON_REPORTING_DEVICE: "NON_REPORTING_DEVICE";
|
|
427
427
|
};
|
|
428
428
|
export type FleetDataHealthIssueCategory = (typeof fleetDataHealthIssueCategory)[keyof typeof fleetDataHealthIssueCategory];
|
|
429
429
|
export declare const fleetDataHealthIssueState: {
|
|
@@ -433,13 +433,12 @@ export declare const fleetDataHealthIssueState: {
|
|
|
433
433
|
export type FleetDataHealthIssueState = (typeof fleetDataHealthIssueState)[keyof typeof fleetDataHealthIssueState];
|
|
434
434
|
export declare const fleetDataHealthIssueType: {
|
|
435
435
|
readonly DATA_NOT_RECEIVED: "DATA_NOT_RECEIVED";
|
|
436
|
-
readonly INSTALLATION_VALIDATION_MISSING: "INSTALLATION_VALIDATION_MISSING";
|
|
437
436
|
readonly LOW_CELLULAR_COVERAGE: "LOW_CELLULAR_COVERAGE";
|
|
438
437
|
readonly LOW_DEVICE_BATTERY_VOLTAGE: "LOW_DEVICE_BATTERY_VOLTAGE";
|
|
439
438
|
readonly LOW_DEVICE_INPUT_VOLTAGE: "LOW_DEVICE_INPUT_VOLTAGE";
|
|
440
439
|
readonly LOW_GPS_COVERAGE: "LOW_GPS_COVERAGE";
|
|
441
440
|
readonly NO_CAN_DATA_CONFIGURATION: "NO_CAN_DATA_CONFIGURATION";
|
|
442
|
-
readonly
|
|
441
|
+
readonly UNUSUAL_OPERATING_HOURS: "UNUSUAL_OPERATING_HOURS";
|
|
443
442
|
};
|
|
444
443
|
export type FleetDataHealthIssueType = (typeof fleetDataHealthIssueType)[keyof typeof fleetDataHealthIssueType];
|
|
445
444
|
export declare const metadataCompleteness: {
|