@trackunit/filters-graphql-hook 1.7.37 → 1.7.40

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.7.37",
3
+ "version": "1.7.40",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -13,15 +13,15 @@
13
13
  "graphql": "^16.10.0",
14
14
  "@apollo/client": "3.13.8",
15
15
  "zod": "3.23.4",
16
- "@trackunit/iris-app-build-utilities": "1.4.32",
17
- "@trackunit/filters-filter-bar": "1.5.59",
18
- "@trackunit/shared-utils": "1.6.28",
19
- "@trackunit/iris-app-api": "1.4.32",
20
- "@trackunit/react-core-contexts-test": "1.4.32",
21
- "@trackunit/i18n-library-translation": "1.4.36",
22
- "@trackunit/react-core-contexts-api": "1.5.32",
23
- "@trackunit/react-core-hooks": "1.4.32",
24
- "@trackunit/react-test-setup": "1.1.28"
16
+ "@trackunit/iris-app-build-utilities": "1.4.35",
17
+ "@trackunit/filters-filter-bar": "1.5.62",
18
+ "@trackunit/shared-utils": "1.6.31",
19
+ "@trackunit/iris-app-api": "1.4.35",
20
+ "@trackunit/react-core-contexts-test": "1.4.35",
21
+ "@trackunit/i18n-library-translation": "1.4.39",
22
+ "@trackunit/react-core-contexts-api": "1.5.35",
23
+ "@trackunit/react-core-hooks": "1.4.35",
24
+ "@trackunit/react-test-setup": "1.1.31"
25
25
  },
26
26
  "module": "./index.esm.js",
27
27
  "main": "./index.cjs.js",
@@ -134,6 +134,14 @@ export type Scalars = {
134
134
  output: any;
135
135
  };
136
136
  };
137
+ export declare const accessManagementMode: {
138
+ readonly LOCKED_FOR_ALL: "LOCKED_FOR_ALL";
139
+ readonly UNKNOWN: "UNKNOWN";
140
+ readonly UNLOCKED_FOR_ALL: "UNLOCKED_FOR_ALL";
141
+ readonly UNLOCKED_FOR_KEY: "UNLOCKED_FOR_KEY";
142
+ readonly UNSUPPORTED: "UNSUPPORTED";
143
+ };
144
+ export type AccessManagementMode = (typeof accessManagementMode)[keyof typeof accessManagementMode];
137
145
  export declare const areaFilterGeoJsonGeometryType: {
138
146
  readonly MultiPolygon: "MultiPolygon";
139
147
  readonly Polygon: "Polygon";
@@ -475,6 +483,8 @@ export type AreaInput = {
475
483
  type: AreaFilterGeoJsonGeometryType;
476
484
  };
477
485
  export type AssetFiltersInput = {
486
+ /** The desired access management mode of the asset */
487
+ accessManagementDesiredModes?: InputMaybe<Array<AccessManagementMode>>;
478
488
  /** Filter by if the asset is active */
479
489
  activeFilter?: InputMaybe<Scalars["Boolean"]["input"]>;
480
490
  /** List of activities */