@trackunit/filters-graphql-hook 2.4.1-alpha-a9683b18e88.0 → 2.4.2

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": "2.4.1-alpha-a9683b18e88.0",
3
+ "version": "2.4.2",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,14 +10,14 @@
10
10
  "@graphql-codegen/cli": "^5.0.3",
11
11
  "@graphql-typed-document-node/core": "^3.2.0",
12
12
  "zod": "^3.25.76",
13
- "@trackunit/iris-app-build-utilities": "2.1.18-alpha-a9683b18e88.0",
14
- "@trackunit/filters-filter-bar": "2.2.20-alpha-a9683b18e88.0",
15
- "@trackunit/shared-utils": "1.15.79-alpha-a9683b18e88.0",
16
- "@trackunit/iris-app-api": "2.1.17-alpha-a9683b18e88.0",
17
- "@trackunit/react-core-contexts-test": "1.17.86-alpha-a9683b18e88.0",
18
- "@trackunit/i18n-library-translation": "2.1.17-alpha-a9683b18e88.0",
19
- "@trackunit/iris-app-runtime-core-api": "1.16.85-alpha-a9683b18e88.0",
20
- "@trackunit/react-core-hooks": "1.18.17-alpha-a9683b18e88.0"
13
+ "@trackunit/iris-app-build-utilities": "2.1.19",
14
+ "@trackunit/filters-filter-bar": "2.2.21",
15
+ "@trackunit/shared-utils": "1.15.80",
16
+ "@trackunit/iris-app-api": "2.1.18",
17
+ "@trackunit/react-core-contexts-test": "1.17.87",
18
+ "@trackunit/i18n-library-translation": "2.1.18",
19
+ "@trackunit/iris-app-runtime-core-api": "1.16.86",
20
+ "@trackunit/react-core-hooks": "1.18.18"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@apollo/client": "^3.13.8",
@@ -517,6 +517,11 @@ export declare const inspectionResponseStatus: {
517
517
  readonly SKIPPED: "SKIPPED";
518
518
  };
519
519
  export type InspectionResponseStatus = (typeof inspectionResponseStatus)[keyof typeof inspectionResponseStatus];
520
+ export declare const inspectionTemplateAssigned: {
521
+ readonly HAS_TEMPLATE: "HAS_TEMPLATE";
522
+ readonly NO_TEMPLATE: "NO_TEMPLATE";
523
+ };
524
+ export type InspectionTemplateAssigned = (typeof inspectionTemplateAssigned)[keyof typeof inspectionTemplateAssigned];
520
525
  export declare const metadataCompleteness: {
521
526
  readonly COMPLETE: "COMPLETE";
522
527
  readonly PARTIAL: "PARTIAL";
@@ -691,6 +696,8 @@ export type AssetFiltersInput = {
691
696
  insightsFilters?: InputMaybe<InsightsFilters>;
692
697
  /** Filter by the asset's most recent inspection (account specific) */
693
698
  inspectionLastFilters?: InputMaybe<InspectionLastFilters>;
699
+ /** Filter by whether an inspection template is assigned to the asset (account specific) */
700
+ inspectionTemplateAssigned?: InputMaybe<InspectionTemplateAssigned>;
694
701
  /** Filter by when was the asset last seen */
695
702
  lastSeen?: InputMaybe<AssetLastSeen>;
696
703
  /** Filter by PARTIAL or COMPLETE asset metadata information */