@trackunit/react-core-contexts-api 0.2.162 → 0.2.164

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
@@ -47,6 +47,9 @@ exports.AssetSortByProperty = void 0;
47
47
  AssetSortByProperty["ServicePlanStatus"] = "SERVICE_PLAN_STATUS";
48
48
  AssetSortByProperty["TelematicsDeviceSerialNumber"] = "TELEMATICS_DEVICE_SERIAL_NUMBER";
49
49
  AssetSortByProperty["Type"] = "TYPE";
50
+ AssetSortByProperty["PlannedServiceBooked"] = "PLANNED_SERVICE_BOOKED";
51
+ AssetSortByProperty["PlannedServiceBookingDate"] = "PLANNED_SERVICE_BOOKING_DATE";
52
+ AssetSortByProperty["ServicePlanPrediction"] = "SERVICE_PLAN_PREDICTION";
50
53
  })(exports.AssetSortByProperty || (exports.AssetSortByProperty = {}));
51
54
  // The type [key in AssetSortByProperty] will insure that ALL keys are present
52
55
  const stringToEnum = {
@@ -69,6 +72,9 @@ const stringToEnum = {
69
72
  SERVICE_PLAN_STATUS: exports.AssetSortByProperty.ServicePlanStatus,
70
73
  TELEMATICS_DEVICE_SERIAL_NUMBER: exports.AssetSortByProperty.TelematicsDeviceSerialNumber,
71
74
  TYPE: exports.AssetSortByProperty.Type,
75
+ PLANNED_SERVICE_BOOKED: exports.AssetSortByProperty.PlannedServiceBooked,
76
+ PLANNED_SERVICE_BOOKING_DATE: exports.AssetSortByProperty.PlannedServiceBookingDate,
77
+ SERVICE_PLAN_PREDICTION: exports.AssetSortByProperty.ServicePlanPrediction
72
78
  };
73
79
  /**
74
80
  * Ensures that a string is a valid AssetSortByProperty enum value
package/index.esm.js CHANGED
@@ -45,6 +45,9 @@ var AssetSortByProperty;
45
45
  AssetSortByProperty["ServicePlanStatus"] = "SERVICE_PLAN_STATUS";
46
46
  AssetSortByProperty["TelematicsDeviceSerialNumber"] = "TELEMATICS_DEVICE_SERIAL_NUMBER";
47
47
  AssetSortByProperty["Type"] = "TYPE";
48
+ AssetSortByProperty["PlannedServiceBooked"] = "PLANNED_SERVICE_BOOKED";
49
+ AssetSortByProperty["PlannedServiceBookingDate"] = "PLANNED_SERVICE_BOOKING_DATE";
50
+ AssetSortByProperty["ServicePlanPrediction"] = "SERVICE_PLAN_PREDICTION";
48
51
  })(AssetSortByProperty || (AssetSortByProperty = {}));
49
52
  // The type [key in AssetSortByProperty] will insure that ALL keys are present
50
53
  const stringToEnum = {
@@ -67,6 +70,9 @@ const stringToEnum = {
67
70
  SERVICE_PLAN_STATUS: AssetSortByProperty.ServicePlanStatus,
68
71
  TELEMATICS_DEVICE_SERIAL_NUMBER: AssetSortByProperty.TelematicsDeviceSerialNumber,
69
72
  TYPE: AssetSortByProperty.Type,
73
+ PLANNED_SERVICE_BOOKED: AssetSortByProperty.PlannedServiceBooked,
74
+ PLANNED_SERVICE_BOOKING_DATE: AssetSortByProperty.PlannedServiceBookingDate,
75
+ SERVICE_PLAN_PREDICTION: AssetSortByProperty.ServicePlanPrediction
70
76
  };
71
77
  /**
72
78
  * Ensures that a string is a valid AssetSortByProperty enum value
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-contexts-api",
3
- "version": "0.2.162",
3
+ "version": "0.2.164",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -29,7 +29,10 @@ export declare enum AssetSortByProperty {
29
29
  ServicePlanOverdueness = "SERVICE_PLAN_OVERDUENESS",
30
30
  ServicePlanStatus = "SERVICE_PLAN_STATUS",
31
31
  TelematicsDeviceSerialNumber = "TELEMATICS_DEVICE_SERIAL_NUMBER",
32
- Type = "TYPE"
32
+ Type = "TYPE",
33
+ PlannedServiceBooked = "PLANNED_SERVICE_BOOKED",
34
+ PlannedServiceBookingDate = "PLANNED_SERVICE_BOOKING_DATE",
35
+ ServicePlanPrediction = "SERVICE_PLAN_PREDICTION"
33
36
  }
34
37
  /**
35
38
  * Ensures that a string is a valid AssetSortByProperty enum value