@trackunit/filters-graphql-hook 1.5.13 → 1.5.16

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.5.13",
3
+ "version": "1.5.16",
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.10.4",
15
15
  "zod": "3.22.4",
16
- "@trackunit/iris-app-build-utilities": "1.3.90",
17
- "@trackunit/filters-filter-bar": "1.3.138",
18
- "@trackunit/shared-utils": "1.5.86",
19
- "@trackunit/iris-app-api": "1.3.90",
20
- "@trackunit/react-core-contexts-test": "1.3.93",
21
- "@trackunit/i18n-library-translation": "1.3.95",
22
- "@trackunit/react-core-contexts-api": "1.4.89",
23
- "@trackunit/react-core-hooks": "1.3.91"
16
+ "@trackunit/iris-app-build-utilities": "1.3.93",
17
+ "@trackunit/filters-filter-bar": "1.3.141",
18
+ "@trackunit/shared-utils": "1.5.89",
19
+ "@trackunit/iris-app-api": "1.3.93",
20
+ "@trackunit/react-core-contexts-test": "1.3.96",
21
+ "@trackunit/i18n-library-translation": "1.3.98",
22
+ "@trackunit/react-core-contexts-api": "1.4.92",
23
+ "@trackunit/react-core-hooks": "1.3.94"
24
24
  },
25
25
  "module": "./index.esm.js",
26
26
  "main": "./index.cjs.js",
@@ -505,6 +505,8 @@ export type AssetFiltersInput = {
505
505
  externalReferences?: InputMaybe<Array<Scalars["String"]["input"]>>;
506
506
  /** Filter by Fleet Health Categories */
507
507
  fleetHealthCategories?: InputMaybe<Array<FleetDataHealthIssueCategory>>;
508
+ /** Filter by Fleet Health date range */
509
+ fleetHealthDateRange?: InputMaybe<DateRange>;
508
510
  /** Filter by Fleet Health states */
509
511
  fleetHealthStates?: InputMaybe<Array<FleetDataHealthIssueState>>;
510
512
  /** Filter by Fleet Health Types */
@@ -632,6 +634,12 @@ export type CustomFieldOwnerInput = {
632
634
  /** The owner type of the custom field owner input. */
633
635
  ownerType: CustomFieldOwnerType;
634
636
  };
637
+ export type DateRange = {
638
+ /** end date */
639
+ end: Scalars["DateTime"]["input"];
640
+ /** start date */
641
+ start: Scalars["DateTime"]["input"];
642
+ };
635
643
  export type GetFilteredAssetsQueryVariables = Exact<{
636
644
  filters: InputMaybe<AssetFiltersInput>;
637
645
  sort: InputMaybe<AssetSortInput>;