@trackunit/iris-app-runtime-core-api 1.9.3 → 1.9.5

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
@@ -41,6 +41,9 @@ exports.AssetSortByProperty = void 0;
41
41
  AssetSortByProperty["Type"] = "TYPE";
42
42
  AssetSortByProperty["PlannedServiceBooked"] = "PLANNED_SERVICE_BOOKED";
43
43
  AssetSortByProperty["PlannedServiceBookingDate"] = "PLANNED_SERVICE_BOOKING_DATE";
44
+ AssetSortByProperty["PlannedServiceDate"] = "PLANNED_SERVICE_DATE";
45
+ AssetSortByProperty["PlannedServiceHoursRemaining"] = "PLANNED_SERVICE_HOURS_REMAINING";
46
+ AssetSortByProperty["PlannedServiceDistanceRemaining"] = "PLANNED_SERVICE_DISTANCE_REMAINING";
44
47
  AssetSortByProperty["ServicePlanPrediction"] = "SERVICE_PLAN_PREDICTION";
45
48
  AssetSortByProperty["IssueCreatedAt"] = "ISSUE_CREATED_AT";
46
49
  AssetSortByProperty["BatteryChargerState"] = "BATTERY_CHARGER_STATE";
@@ -75,6 +78,9 @@ const stringToEnum = {
75
78
  TYPE: exports.AssetSortByProperty.Type,
76
79
  PLANNED_SERVICE_BOOKED: exports.AssetSortByProperty.PlannedServiceBooked,
77
80
  PLANNED_SERVICE_BOOKING_DATE: exports.AssetSortByProperty.PlannedServiceBookingDate,
81
+ PLANNED_SERVICE_DATE: exports.AssetSortByProperty.PlannedServiceDate,
82
+ PLANNED_SERVICE_HOURS_REMAINING: exports.AssetSortByProperty.PlannedServiceHoursRemaining,
83
+ PLANNED_SERVICE_DISTANCE_REMAINING: exports.AssetSortByProperty.PlannedServiceDistanceRemaining,
78
84
  SERVICE_PLAN_PREDICTION: exports.AssetSortByProperty.ServicePlanPrediction,
79
85
  ISSUE_CREATED_AT: exports.AssetSortByProperty.IssueCreatedAt,
80
86
  BATTERY_CHARGER_STATE: exports.AssetSortByProperty.BatteryChargerState,
package/index.esm.js CHANGED
@@ -39,6 +39,9 @@ var AssetSortByProperty;
39
39
  AssetSortByProperty["Type"] = "TYPE";
40
40
  AssetSortByProperty["PlannedServiceBooked"] = "PLANNED_SERVICE_BOOKED";
41
41
  AssetSortByProperty["PlannedServiceBookingDate"] = "PLANNED_SERVICE_BOOKING_DATE";
42
+ AssetSortByProperty["PlannedServiceDate"] = "PLANNED_SERVICE_DATE";
43
+ AssetSortByProperty["PlannedServiceHoursRemaining"] = "PLANNED_SERVICE_HOURS_REMAINING";
44
+ AssetSortByProperty["PlannedServiceDistanceRemaining"] = "PLANNED_SERVICE_DISTANCE_REMAINING";
42
45
  AssetSortByProperty["ServicePlanPrediction"] = "SERVICE_PLAN_PREDICTION";
43
46
  AssetSortByProperty["IssueCreatedAt"] = "ISSUE_CREATED_AT";
44
47
  AssetSortByProperty["BatteryChargerState"] = "BATTERY_CHARGER_STATE";
@@ -73,6 +76,9 @@ const stringToEnum = {
73
76
  TYPE: AssetSortByProperty.Type,
74
77
  PLANNED_SERVICE_BOOKED: AssetSortByProperty.PlannedServiceBooked,
75
78
  PLANNED_SERVICE_BOOKING_DATE: AssetSortByProperty.PlannedServiceBookingDate,
79
+ PLANNED_SERVICE_DATE: AssetSortByProperty.PlannedServiceDate,
80
+ PLANNED_SERVICE_HOURS_REMAINING: AssetSortByProperty.PlannedServiceHoursRemaining,
81
+ PLANNED_SERVICE_DISTANCE_REMAINING: AssetSortByProperty.PlannedServiceDistanceRemaining,
76
82
  SERVICE_PLAN_PREDICTION: AssetSortByProperty.ServicePlanPrediction,
77
83
  ISSUE_CREATED_AT: AssetSortByProperty.IssueCreatedAt,
78
84
  BATTERY_CHARGER_STATE: AssetSortByProperty.BatteryChargerState,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core-api",
3
- "version": "1.9.3",
3
+ "version": "1.9.5",
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.11.3",
12
- "@trackunit/geo-json-utils": "1.9.3"
11
+ "@trackunit/shared-utils": "1.11.4",
12
+ "@trackunit/geo-json-utils": "1.9.4"
13
13
  },
14
14
  "module": "./index.esm.js",
15
15
  "main": "./index.cjs.js",
@@ -21,6 +21,9 @@ export declare enum AssetSortByProperty {
21
21
  Type = "TYPE",
22
22
  PlannedServiceBooked = "PLANNED_SERVICE_BOOKED",
23
23
  PlannedServiceBookingDate = "PLANNED_SERVICE_BOOKING_DATE",
24
+ PlannedServiceDate = "PLANNED_SERVICE_DATE",
25
+ PlannedServiceHoursRemaining = "PLANNED_SERVICE_HOURS_REMAINING",
26
+ PlannedServiceDistanceRemaining = "PLANNED_SERVICE_DISTANCE_REMAINING",
24
27
  ServicePlanPrediction = "SERVICE_PLAN_PREDICTION",
25
28
  IssueCreatedAt = "ISSUE_CREATED_AT",
26
29
  BatteryChargerState = "BATTERY_CHARGER_STATE",