samls-js-integration 1.1.44 → 1.1.45

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.
@@ -4,5 +4,6 @@ export declare class ClusteringFilterRequestModel {
4
4
  zoomLevel: number;
5
5
  polygon: Geometry | null;
6
6
  query: GlobalQueryModel;
7
+ selectedPolygons: number[] | null;
7
8
  constructor(filterModel?: Partial<ClusteringFilterRequestModel>);
8
9
  }
@@ -7,6 +7,7 @@ class ClusteringFilterRequestModel {
7
7
  this.zoomLevel = 0;
8
8
  this.polygon = null;
9
9
  this.query = new Common_1.GlobalQueryModel();
10
+ this.selectedPolygons = null;
10
11
  filterModel && Object.assign(this, filterModel);
11
12
  }
12
13
  }
@@ -4,5 +4,6 @@ export declare class GetMapListingsRequestModel {
4
4
  zoomLevel: number;
5
5
  polygon: Geometry | null;
6
6
  query: GlobalQueryModel;
7
+ selectedPolygons: number[] | null;
7
8
  constructor(data?: Partial<GetMapListingsRequestModel>);
8
9
  }
@@ -7,6 +7,7 @@ class GetMapListingsRequestModel {
7
7
  this.zoomLevel = 0;
8
8
  this.polygon = null;
9
9
  this.query = new Common_1.GlobalQueryModel();
10
+ this.selectedPolygons = null;
10
11
  if (data) {
11
12
  Object.assign(this, data);
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",