@trackunit/iris-app-api 1.15.22 → 1.16.3
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 1.16.3 (2026-04-10)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 1.16.2 (2026-04-10)
|
|
6
|
+
|
|
7
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
8
|
+
|
|
9
|
+
## 1.16.1 (2026-04-09)
|
|
10
|
+
|
|
11
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
12
|
+
|
|
13
|
+
## 1.16.0 (2026-04-09)
|
|
14
|
+
|
|
15
|
+
### 🚀 Features
|
|
16
|
+
|
|
17
|
+
- expose deviceTypes filter key for widget ASSETS filter support ([2cae1ed0d0a](https://github.com/Trackunit/manager/commit/2cae1ed0d0a))
|
|
18
|
+
|
|
19
|
+
### ❤️ Thank You
|
|
20
|
+
|
|
21
|
+
- Simon Laustsen
|
|
22
|
+
|
|
23
|
+
## 1.15.23 (2026-04-08)
|
|
24
|
+
|
|
25
|
+
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
|
26
|
+
|
|
1
27
|
## 1.15.22 (2026-04-08)
|
|
2
28
|
|
|
3
29
|
This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
|
@@ -19,12 +19,12 @@ export type WidgetSupportedFilterBars = "CUSTOMERS" | "ASSETS" | "SITES";
|
|
|
19
19
|
export type WidgetSupportedFilters = WidgetSupportedFilterBars | "TIME_RANGE";
|
|
20
20
|
export declare const widgetTypes: readonly ["KPI", "CHART", "LIST", "MAP", "OTHER"];
|
|
21
21
|
export type WidgetType = (typeof widgetTypes)[number];
|
|
22
|
-
export declare const allAssetFilterKeys: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes"];
|
|
23
|
-
export declare const allAssetFilterKeysWithCustomer: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes", "customerIds", "rentalStatuses", "rentalContractOrderNumber", "rentalContractReferenceCode", "rentalContractReferenceCodeDescriptionQuery"];
|
|
22
|
+
export declare const allAssetFilterKeys: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes", "deviceTypes"];
|
|
23
|
+
export declare const allAssetFilterKeysWithCustomer: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes", "deviceTypes", "customerIds", "rentalStatuses", "rentalContractOrderNumber", "rentalContractReferenceCode", "rentalContractReferenceCodeDescriptionQuery"];
|
|
24
24
|
export declare const customFieldFilterKey: "customFields";
|
|
25
25
|
export type AssetFilterKeys = typeof allAssetFilterKeys;
|
|
26
26
|
export type AssetFilterKeysWithCustomer = typeof allAssetFilterKeysWithCustomer;
|
|
27
|
-
export declare const allAssetFilterKeysWithCustomFields: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes", "customerIds", "rentalStatuses", "rentalContractOrderNumber", "rentalContractReferenceCode", "rentalContractReferenceCodeDescriptionQuery", "customFields"];
|
|
27
|
+
export declare const allAssetFilterKeysWithCustomFields: readonly ["search", "siteIds", "groups", "types", "assetType", "brands", "models", "criticality", "activity", "metadataCompleteness", "lastSeen", "followed", "siteType", "ownerAccountIds", "area", "partner", "productionYears", "serviceStatus", "telematicsConnected", "activeFilter", "siteDepotOwnershipIds", "fleetHealthStates", "fleetHealthStatus", "fleetHealthCategories", "fleetHealthTypes", "deviceTypes", "customerIds", "rentalStatuses", "rentalContractOrderNumber", "rentalContractReferenceCode", "rentalContractReferenceCodeDescriptionQuery", "customFields"];
|
|
28
28
|
export type AssetFilterKeysWithCustomFields = typeof allAssetFilterKeysWithCustomFields;
|
|
29
29
|
export declare const allSiteFilterKeys: readonly ["search", "siteStatus", "siteType"];
|
|
30
30
|
export type SiteFilterKeys = typeof allSiteFilterKeys;
|
|
@@ -98,5 +98,5 @@ export interface MarketplaceOneZero {
|
|
|
98
98
|
*/
|
|
99
99
|
blueprintUrl?: string;
|
|
100
100
|
}
|
|
101
|
-
export declare const CategoryValues: readonly ["ASSET_MANAGEMENT", "COMPLIANCE", "CONSULTANTS", "DATA_FEEDS", "DOCUMENTATION", "EFFECTIVE_OPERATIONS", "EQUIPMENT_PROTECTION", "OEM_PARTNER_SOLUTIONS", "OPTIMIZE_BUSINESS", "RENTAL_MANAGEMENT", "SERVICE_AND_MAINTENANCE", "SUSTAINABILITY"
|
|
101
|
+
export declare const CategoryValues: readonly ["ASSET_MANAGEMENT", "BLUEPRINTS", "COMPLIANCE", "CONSULTANTS", "DATA_FEEDS", "DOCUMENTATION", "EFFECTIVE_OPERATIONS", "EQUIPMENT_PROTECTION", "OEM_PARTNER_SOLUTIONS", "OPTIMIZE_BUSINESS", "RENTAL_MANAGEMENT", "SERVICE_AND_MAINTENANCE", "SUSTAINABILITY"];
|
|
102
102
|
export declare type Category = (typeof CategoryValues)[number];
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CategoryValues = void 0;
|
|
4
4
|
exports.CategoryValues = [
|
|
5
5
|
"ASSET_MANAGEMENT",
|
|
6
|
+
"BLUEPRINTS",
|
|
6
7
|
"COMPLIANCE",
|
|
7
8
|
"CONSULTANTS",
|
|
8
9
|
"DATA_FEEDS",
|
|
@@ -14,6 +15,5 @@ exports.CategoryValues = [
|
|
|
14
15
|
"RENTAL_MANAGEMENT",
|
|
15
16
|
"SERVICE_AND_MAINTENANCE",
|
|
16
17
|
"SUSTAINABILITY",
|
|
17
|
-
"BLUEPRINTS",
|
|
18
18
|
];
|
|
19
19
|
//# sourceMappingURL=irisAppMarketplace.js.map
|