samls-js-integration 1.1.32 → 1.1.33

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.
@@ -7,6 +7,8 @@ import { ListingStatusEnum, ListingTypeEnum } from '../Enums';
7
7
  import { HomeTypeEnum } from '../Enums/Listing/HomeType.enum';
8
8
  import { RentalPeriod } from '../Enums/Listing/RentalPeriod.enum';
9
9
  import { ListingOrderByOptions, OrderingDirection } from '../Enums/Listing/ListingOrder.enum';
10
+ import { ListingAgencyEnum } from '../Enums/Listing/ListingAgency.enum';
11
+ import { Geometry } from 'geojson';
10
12
  export declare class GlobalListingFilterModel {
11
13
  orderBy: ListingOrderByOptions | null;
12
14
  rentalPeriodOrderBy: RentalPeriod | null;
@@ -35,3 +37,10 @@ export declare class GlobalListingFilterModel {
35
37
  skip: number;
36
38
  take: number;
37
39
  }
40
+ export declare class EnhancedGlobalListingFilterModel extends GlobalListingFilterModel {
41
+ Agency: ListingAgencyEnum | null;
42
+ }
43
+ export declare class MapListingsRequestModel {
44
+ map: Geometry;
45
+ filter: EnhancedGlobalListingFilterModel;
46
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GlobalListingFilterModel = void 0;
3
+ exports.MapListingsRequestModel = exports.EnhancedGlobalListingFilterModel = exports.GlobalListingFilterModel = void 0;
4
4
  const SchoolType_model_1 = require("./SchoolType.model");
5
5
  class GlobalListingFilterModel {
6
6
  constructor() {
@@ -33,3 +33,13 @@ class GlobalListingFilterModel {
33
33
  }
34
34
  }
35
35
  exports.GlobalListingFilterModel = GlobalListingFilterModel;
36
+ class EnhancedGlobalListingFilterModel extends GlobalListingFilterModel {
37
+ constructor() {
38
+ super(...arguments);
39
+ this.Agency = null;
40
+ }
41
+ }
42
+ exports.EnhancedGlobalListingFilterModel = EnhancedGlobalListingFilterModel;
43
+ class MapListingsRequestModel {
44
+ }
45
+ exports.MapListingsRequestModel = MapListingsRequestModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",