@trackunit/filters-graphql-hook 1.10.41 → 1.10.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/filters-graphql-hook",
3
- "version": "1.10.41",
3
+ "version": "1.10.43",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -14,7 +14,7 @@
14
14
  "@apollo/client": "3.13.8",
15
15
  "zod": "^3.23.8",
16
16
  "@trackunit/iris-app-build-utilities": "1.7.27",
17
- "@trackunit/filters-filter-bar": "1.8.41",
17
+ "@trackunit/filters-filter-bar": "1.8.42",
18
18
  "@trackunit/shared-utils": "1.9.26",
19
19
  "@trackunit/iris-app-api": "1.7.27",
20
20
  "@trackunit/react-core-contexts-test": "1.7.31",
@@ -511,7 +511,7 @@ export type AssetFiltersInput = {
511
511
  customFields?: InputMaybe<Array<CustomFieldFilter>>;
512
512
  /** List of customerIds to exclude */
513
513
  customerExclusionIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
514
- /** List of customerIds */
514
+ /** List of customerIds: this is an 'or' filter -> if customer has ID1 or ID2 */
515
515
  customerIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
516
516
  /** List of customer types */
517
517
  customerTypes?: InputMaybe<Array<CustomerTypeSFS>>;
@@ -569,6 +569,8 @@ export type AssetFiltersInput = {
569
569
  rentalStatuses?: InputMaybe<Array<RentalStatus>>;
570
570
  /** A string that could match a property of an asset within your fleet */
571
571
  searchQuery?: InputMaybe<Scalars["String"]["input"]>;
572
+ /** Currently selected customer ID to include: if customer has selectedId and one of the customerIds passed */
573
+ selectedCustomerIdFilter?: InputMaybe<Scalars["String"]["input"]>;
572
574
  /** List of serial numbers */
573
575
  serialNumbers?: InputMaybe<Array<Scalars["String"]["input"]>>;
574
576
  /** List of service booked values */