@trackunit/iris-app-api 1.15.8 → 1.15.10

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,21 @@
1
+ ## 1.15.10 (2026-03-25)
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.15.9 (2026-03-20)
6
+
7
+ ### 🚀 Features
8
+
9
+ - **filters:** expose useFilterBarsAsLink from filter-bar library ([c165a82d3dc](https://github.com/Trackunit/manager/commit/c165a82d3dc))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **filters:** update default search property name in useFilterBarsAsLink hook ([48684abdb11](https://github.com/Trackunit/manager/commit/48684abdb11))
14
+
15
+ ### ❤️ Thank You
16
+
17
+ - Mikkel Thorbjørn Andersen
18
+
1
19
  ## 1.15.8 (2026-03-20)
2
20
 
3
21
  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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-api",
3
- "version": "1.15.8",
3
+ "version": "1.15.10",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -20,11 +20,11 @@ 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
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: string[];
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"];
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 [...string[], "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", "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;
@@ -48,8 +48,8 @@ export type SupportedFiltersConfig = {
48
48
  export type FilterBarToLinkConfig = {
49
49
  /**
50
50
  * The name of the search property to append the filter bar to the link.
51
- * Example: "assetType"
52
- * Will append to the link as "?assetType=<encoded value>"
51
+ * Example: "assetFilter"
52
+ * Will append to the link as "?assetFilter=<encoded value>"
53
53
  */
54
54
  searchPropertyName?: string;
55
55
  /**