@trackunit/filters-graphql-hook 1.14.1 → 1.14.6

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
@@ -515,6 +515,8 @@ const useActiveAssetFilters = (filters) => {
515
515
  onRentDatesDateRange,
516
516
  offRentDatesDateRange,
517
517
  customerExternalReferences: stringArrayOrUndefined(filters.rentalContractCustomerExternalReference),
518
+ customerParentExternalReferences: stringArrayOrUndefined(filters.rentalContractCustomerParentExternalReference),
519
+ customerParentNames: stringArrayOrUndefined(filters.rentalContractCustomerParentName),
518
520
  };
519
521
  })(),
520
522
  };
package/index.esm.js CHANGED
@@ -513,6 +513,8 @@ const useActiveAssetFilters = (filters) => {
513
513
  onRentDatesDateRange,
514
514
  offRentDatesDateRange,
515
515
  customerExternalReferences: stringArrayOrUndefined(filters.rentalContractCustomerExternalReference),
516
+ customerParentExternalReferences: stringArrayOrUndefined(filters.rentalContractCustomerParentExternalReference),
517
+ customerParentNames: stringArrayOrUndefined(filters.rentalContractCustomerParentName),
516
518
  };
517
519
  })(),
518
520
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/filters-graphql-hook",
3
- "version": "1.14.1",
3
+ "version": "1.14.6",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -13,14 +13,14 @@
13
13
  "graphql": "^16.10.0",
14
14
  "@apollo/client": "3.13.8",
15
15
  "zod": "^3.23.8",
16
- "@trackunit/iris-app-build-utilities": "1.10.1",
17
- "@trackunit/filters-filter-bar": "1.11.1",
18
- "@trackunit/shared-utils": "1.12.1",
19
- "@trackunit/iris-app-api": "1.13.1",
20
- "@trackunit/react-core-contexts-test": "1.10.1",
21
- "@trackunit/i18n-library-translation": "1.10.1",
22
- "@trackunit/iris-app-runtime-core-api": "1.10.1",
23
- "@trackunit/react-core-hooks": "1.10.1"
16
+ "@trackunit/iris-app-build-utilities": "1.10.3",
17
+ "@trackunit/filters-filter-bar": "1.11.4",
18
+ "@trackunit/shared-utils": "1.12.3",
19
+ "@trackunit/iris-app-api": "1.13.3",
20
+ "@trackunit/react-core-contexts-test": "1.10.3",
21
+ "@trackunit/i18n-library-translation": "1.10.3",
22
+ "@trackunit/iris-app-runtime-core-api": "1.10.3",
23
+ "@trackunit/react-core-hooks": "1.10.3"
24
24
  },
25
25
  "module": "./index.esm.js",
26
26
  "main": "./index.cjs.js",
@@ -758,6 +758,10 @@ export type NumberRange = {
758
758
  export type RentalActiveContractFilters = {
759
759
  /** Filter by rental active contract customer external references */
760
760
  customerExternalReferences?: InputMaybe<Array<Scalars["String"]["input"]>>;
761
+ /** Filter by rental active contract customer parent external references */
762
+ customerParentExternalReferences?: InputMaybe<Array<Scalars["String"]["input"]>>;
763
+ /** Filter by rental active contract customer parent names */
764
+ customerParentNames?: InputMaybe<Array<Scalars["String"]["input"]>>;
761
765
  /** Filter by rental active contract item off rent dates date range */
762
766
  offRentDatesDateRange?: InputMaybe<DateTimeRange>;
763
767
  /** Filter by rental active contract item on rent dates date range */