@trackunit/iris-app-runtime-core-api 1.17.33 → 1.17.34
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 -0
- package/index.esm.js +2 -0
- package/migrations/entry.js.map +1 -0
- package/package.json +1 -1
- package/src/AssetSortingRuntime.d.ts +2 -1
package/index.cjs.js
CHANGED
|
@@ -65,6 +65,7 @@ exports.AssetSortByProperty = void 0;
|
|
|
65
65
|
AssetSortByProperty["ContractItemOnRentDate"] = "CONTRACT_ITEM_ON_RENT_DATE";
|
|
66
66
|
AssetSortByProperty["ContractItemOffRentDate"] = "CONTRACT_ITEM_OFF_RENT_DATE";
|
|
67
67
|
AssetSortByProperty["DeviceStatus"] = "DEVICE_STATUS";
|
|
68
|
+
AssetSortByProperty["LastInspectionStatus"] = "LAST_INSPECTION_STATUS";
|
|
68
69
|
})(exports.AssetSortByProperty || (exports.AssetSortByProperty = {}));
|
|
69
70
|
// The type [KeySortProperty in AssetSortByProperty] will ensure that ALL keys are present
|
|
70
71
|
const stringToEnum = {
|
|
@@ -106,6 +107,7 @@ const stringToEnum = {
|
|
|
106
107
|
CONTRACT_ITEM_ON_RENT_DATE: exports.AssetSortByProperty.ContractItemOnRentDate,
|
|
107
108
|
CONTRACT_ITEM_OFF_RENT_DATE: exports.AssetSortByProperty.ContractItemOffRentDate,
|
|
108
109
|
DEVICE_STATUS: exports.AssetSortByProperty.DeviceStatus,
|
|
110
|
+
LAST_INSPECTION_STATUS: exports.AssetSortByProperty.LastInspectionStatus,
|
|
109
111
|
};
|
|
110
112
|
/**
|
|
111
113
|
* Ensures that a string is a valid AssetSortByProperty enum value
|
package/index.esm.js
CHANGED
|
@@ -63,6 +63,7 @@ var AssetSortByProperty;
|
|
|
63
63
|
AssetSortByProperty["ContractItemOnRentDate"] = "CONTRACT_ITEM_ON_RENT_DATE";
|
|
64
64
|
AssetSortByProperty["ContractItemOffRentDate"] = "CONTRACT_ITEM_OFF_RENT_DATE";
|
|
65
65
|
AssetSortByProperty["DeviceStatus"] = "DEVICE_STATUS";
|
|
66
|
+
AssetSortByProperty["LastInspectionStatus"] = "LAST_INSPECTION_STATUS";
|
|
66
67
|
})(AssetSortByProperty || (AssetSortByProperty = {}));
|
|
67
68
|
// The type [KeySortProperty in AssetSortByProperty] will ensure that ALL keys are present
|
|
68
69
|
const stringToEnum = {
|
|
@@ -104,6 +105,7 @@ const stringToEnum = {
|
|
|
104
105
|
CONTRACT_ITEM_ON_RENT_DATE: AssetSortByProperty.ContractItemOnRentDate,
|
|
105
106
|
CONTRACT_ITEM_OFF_RENT_DATE: AssetSortByProperty.ContractItemOffRentDate,
|
|
106
107
|
DEVICE_STATUS: AssetSortByProperty.DeviceStatus,
|
|
108
|
+
LAST_INSPECTION_STATUS: AssetSortByProperty.LastInspectionStatus,
|
|
107
109
|
};
|
|
108
110
|
/**
|
|
109
111
|
* Ensures that a string is a valid AssetSortByProperty enum value
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.js","sourceRoot":"","sources":["../../../../../libs/iris-app-runtime/core-api/migrations/entry.ts"],"names":[],"mappings":"","sourcesContent":["export {};\n"]}
|
package/package.json
CHANGED
|
@@ -43,7 +43,8 @@ export declare enum AssetSortByProperty {
|
|
|
43
43
|
CumulativeIdleHours = "CUMULATIVE_IDLE_HOURS",
|
|
44
44
|
ContractItemOnRentDate = "CONTRACT_ITEM_ON_RENT_DATE",
|
|
45
45
|
ContractItemOffRentDate = "CONTRACT_ITEM_OFF_RENT_DATE",
|
|
46
|
-
DeviceStatus = "DEVICE_STATUS"
|
|
46
|
+
DeviceStatus = "DEVICE_STATUS",
|
|
47
|
+
LastInspectionStatus = "LAST_INSPECTION_STATUS"
|
|
47
48
|
}
|
|
48
49
|
/**
|
|
49
50
|
* Ensures that a string is a valid AssetSortByProperty enum value
|