samls-js-integration 1.1.31 → 1.1.32

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.
Files changed (33) hide show
  1. package/dist/Enums/Listing/BathroomOperator.enum.d.ts +8 -0
  2. package/dist/Enums/Listing/BathroomOperator.enum.js +12 -0
  3. package/dist/Enums/Listing/BathroomType.enum.d.ts +5 -0
  4. package/dist/Enums/Listing/BathroomType.enum.js +9 -0
  5. package/dist/Enums/Listing/HomeType.enum.d.ts +13 -0
  6. package/dist/Enums/Listing/HomeType.enum.js +16 -0
  7. package/dist/Enums/Listing/ListingOrder.enum.d.ts +17 -0
  8. package/dist/Enums/Listing/ListingOrder.enum.js +22 -0
  9. package/dist/Enums/Listing/RentalPeriod.enum.d.ts +34 -0
  10. package/dist/Enums/Listing/RentalPeriod.enum.js +38 -0
  11. package/dist/Listing/BathroomType.model.d.ts +7 -0
  12. package/dist/Listing/BathroomType.model.js +13 -0
  13. package/dist/Listing/ClusteringFilterResponse.model.d.ts +1 -1
  14. package/dist/Listing/FeatureCache.model.d.ts +5 -0
  15. package/dist/Listing/FeatureCache.model.js +11 -0
  16. package/dist/Listing/GetByOfficesRequest.model.d.ts +1 -1
  17. package/dist/Listing/MapListingsRequest.model.d.ts +37 -0
  18. package/dist/Listing/MapListingsRequest.model.js +35 -0
  19. package/dist/Listing/MoveIn.model.d.ts +4 -0
  20. package/dist/Listing/MoveIn.model.js +10 -0
  21. package/dist/Listing/PlaceFilter.model.d.ts +6 -0
  22. package/dist/Listing/PlaceFilter.model.js +12 -0
  23. package/dist/Listing/Rage.model.d.ts +4 -0
  24. package/dist/Listing/Rage.model.js +10 -0
  25. package/dist/Listing/SchoolType.model.d.ts +4 -0
  26. package/dist/Listing/SchoolType.model.js +10 -0
  27. package/dist/Listing/index.d.ts +22 -19
  28. package/dist/Listing/index.js +41 -33
  29. package/package.json +1 -1
  30. /package/dist/Listing/{OfficeFilterModel.d.ts → OfficeFilter.model.d.ts} +0 -0
  31. /package/dist/Listing/{OfficeFilterModel.js → OfficeFilter.model.js} +0 -0
  32. /package/dist/Listing/{OpenHouseLiteModel.d.ts → OpenHouseLite.model.d.ts} +0 -0
  33. /package/dist/Listing/{OpenHouseLiteModel.js → OpenHouseLite.model.js} +0 -0
@@ -0,0 +1,8 @@
1
+ export declare enum BathroomType {
2
+ Total = 1,
3
+ Full = 2,
4
+ OneQuarter = 3,
5
+ Half = 4,
6
+ ThreeQuarter = 5,
7
+ TotalDecimal = 6
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BathroomType = void 0;
4
+ var BathroomType;
5
+ (function (BathroomType) {
6
+ BathroomType[BathroomType["Total"] = 1] = "Total";
7
+ BathroomType[BathroomType["Full"] = 2] = "Full";
8
+ BathroomType[BathroomType["OneQuarter"] = 3] = "OneQuarter";
9
+ BathroomType[BathroomType["Half"] = 4] = "Half";
10
+ BathroomType[BathroomType["ThreeQuarter"] = 5] = "ThreeQuarter";
11
+ BathroomType[BathroomType["TotalDecimal"] = 6] = "TotalDecimal";
12
+ })(BathroomType || (exports.BathroomType = BathroomType = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum BathroomTypeOperator {
2
+ Eq = 0,
3
+ Ge = 1,
4
+ Le = 2
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BathroomTypeOperator = void 0;
4
+ var BathroomTypeOperator;
5
+ (function (BathroomTypeOperator) {
6
+ BathroomTypeOperator[BathroomTypeOperator["Eq"] = 0] = "Eq";
7
+ BathroomTypeOperator[BathroomTypeOperator["Ge"] = 1] = "Ge";
8
+ BathroomTypeOperator[BathroomTypeOperator["Le"] = 2] = "Le";
9
+ })(BathroomTypeOperator || (exports.BathroomTypeOperator = BathroomTypeOperator = {}));
@@ -0,0 +1,13 @@
1
+ export declare enum HomeTypeEnum {
2
+ Condo = 0,
3
+ House = 1,
4
+ MultiFamily = 2,
5
+ Land = 3,
6
+ Townhouse = 4,
7
+ OtherResidential = 5,
8
+ CoOp = 6,
9
+ CommercialOffice = 7,
10
+ FarmAndRanch = 8,
11
+ OtherCommercial = 9
12
+ }
13
+ export type HomeTypeEnumKeys = keyof typeof HomeTypeEnum;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HomeTypeEnum = void 0;
4
+ var HomeTypeEnum;
5
+ (function (HomeTypeEnum) {
6
+ HomeTypeEnum[HomeTypeEnum["Condo"] = 0] = "Condo";
7
+ HomeTypeEnum[HomeTypeEnum["House"] = 1] = "House";
8
+ HomeTypeEnum[HomeTypeEnum["MultiFamily"] = 2] = "MultiFamily";
9
+ HomeTypeEnum[HomeTypeEnum["Land"] = 3] = "Land";
10
+ HomeTypeEnum[HomeTypeEnum["Townhouse"] = 4] = "Townhouse";
11
+ HomeTypeEnum[HomeTypeEnum["OtherResidential"] = 5] = "OtherResidential";
12
+ HomeTypeEnum[HomeTypeEnum["CoOp"] = 6] = "CoOp";
13
+ HomeTypeEnum[HomeTypeEnum["CommercialOffice"] = 7] = "CommercialOffice";
14
+ HomeTypeEnum[HomeTypeEnum["FarmAndRanch"] = 8] = "FarmAndRanch";
15
+ HomeTypeEnum[HomeTypeEnum["OtherCommercial"] = 9] = "OtherCommercial";
16
+ })(HomeTypeEnum || (exports.HomeTypeEnum = HomeTypeEnum = {}));
@@ -0,0 +1,17 @@
1
+ export declare enum ListingOrderByOptions {
2
+ Newest = 0,
3
+ PriceAsc = 1,
4
+ PriceDesc = 2,
5
+ Recommended = 3,
6
+ Oldest = 4,
7
+ BedsAsc = 5,
8
+ BedsDesc = 6,
9
+ BathsAsc = 7,
10
+ BathsDesc = 8,
11
+ SQFTAsc = 9,
12
+ SQFTDesc = 10
13
+ }
14
+ export declare enum OrderingDirection {
15
+ Asc = 0,
16
+ Desc = 1
17
+ }
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrderingDirection = exports.ListingOrderByOptions = void 0;
4
+ var ListingOrderByOptions;
5
+ (function (ListingOrderByOptions) {
6
+ ListingOrderByOptions[ListingOrderByOptions["Newest"] = 0] = "Newest";
7
+ ListingOrderByOptions[ListingOrderByOptions["PriceAsc"] = 1] = "PriceAsc";
8
+ ListingOrderByOptions[ListingOrderByOptions["PriceDesc"] = 2] = "PriceDesc";
9
+ ListingOrderByOptions[ListingOrderByOptions["Recommended"] = 3] = "Recommended";
10
+ ListingOrderByOptions[ListingOrderByOptions["Oldest"] = 4] = "Oldest";
11
+ ListingOrderByOptions[ListingOrderByOptions["BedsAsc"] = 5] = "BedsAsc";
12
+ ListingOrderByOptions[ListingOrderByOptions["BedsDesc"] = 6] = "BedsDesc";
13
+ ListingOrderByOptions[ListingOrderByOptions["BathsAsc"] = 7] = "BathsAsc";
14
+ ListingOrderByOptions[ListingOrderByOptions["BathsDesc"] = 8] = "BathsDesc";
15
+ ListingOrderByOptions[ListingOrderByOptions["SQFTAsc"] = 9] = "SQFTAsc";
16
+ ListingOrderByOptions[ListingOrderByOptions["SQFTDesc"] = 10] = "SQFTDesc";
17
+ })(ListingOrderByOptions || (exports.ListingOrderByOptions = ListingOrderByOptions = {}));
18
+ var OrderingDirection;
19
+ (function (OrderingDirection) {
20
+ OrderingDirection[OrderingDirection["Asc"] = 0] = "Asc";
21
+ OrderingDirection[OrderingDirection["Desc"] = 1] = "Desc";
22
+ })(OrderingDirection || (exports.OrderingDirection = OrderingDirection = {}));
@@ -0,0 +1,34 @@
1
+ export declare enum RentalPeriod {
2
+ JanuaryPrice = 1,
3
+ FebruaryPrice = 2,
4
+ MarchPrice = 3,
5
+ MarchToLDPrice = 4,
6
+ MarchAprilPrice = 5,
7
+ AprilPrice = 6,
8
+ AprilToLDPrice = 7,
9
+ AprilMayPrice = 8,
10
+ MayPrice = 9,
11
+ MayToLDPrice = 10,
12
+ MayJunePrice = 11,
13
+ MDToLDPrice = 12,
14
+ JunePrice = 13,
15
+ JuneToLDPrice = 14,
16
+ JuneJulyPrice = 15,
17
+ JulyPrice = 16,
18
+ JulyToLDPrice = 17,
19
+ JulyAugustPrice = 18,
20
+ AugustPrice = 19,
21
+ AugustToLDPrice = 20,
22
+ SeptemberPrice = 21,
23
+ OctoberPrice = 22,
24
+ NovemberPrice = 23,
25
+ DecemberPrice = 24,
26
+ WeeklyPrice = 25,
27
+ MonthlyPrice = 26,
28
+ YearlyPrice = 27,
29
+ ExtendedSeasonPrice = 28,
30
+ OffSeasonPrice = 29,
31
+ LowSeasonPrice = 30,
32
+ WinterPrice = 31,
33
+ FurnishedPrice = 32
34
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RentalPeriod = void 0;
4
+ var RentalPeriod;
5
+ (function (RentalPeriod) {
6
+ RentalPeriod[RentalPeriod["JanuaryPrice"] = 1] = "JanuaryPrice";
7
+ RentalPeriod[RentalPeriod["FebruaryPrice"] = 2] = "FebruaryPrice";
8
+ RentalPeriod[RentalPeriod["MarchPrice"] = 3] = "MarchPrice";
9
+ RentalPeriod[RentalPeriod["MarchToLDPrice"] = 4] = "MarchToLDPrice";
10
+ RentalPeriod[RentalPeriod["MarchAprilPrice"] = 5] = "MarchAprilPrice";
11
+ RentalPeriod[RentalPeriod["AprilPrice"] = 6] = "AprilPrice";
12
+ RentalPeriod[RentalPeriod["AprilToLDPrice"] = 7] = "AprilToLDPrice";
13
+ RentalPeriod[RentalPeriod["AprilMayPrice"] = 8] = "AprilMayPrice";
14
+ RentalPeriod[RentalPeriod["MayPrice"] = 9] = "MayPrice";
15
+ RentalPeriod[RentalPeriod["MayToLDPrice"] = 10] = "MayToLDPrice";
16
+ RentalPeriod[RentalPeriod["MayJunePrice"] = 11] = "MayJunePrice";
17
+ RentalPeriod[RentalPeriod["MDToLDPrice"] = 12] = "MDToLDPrice";
18
+ RentalPeriod[RentalPeriod["JunePrice"] = 13] = "JunePrice";
19
+ RentalPeriod[RentalPeriod["JuneToLDPrice"] = 14] = "JuneToLDPrice";
20
+ RentalPeriod[RentalPeriod["JuneJulyPrice"] = 15] = "JuneJulyPrice";
21
+ RentalPeriod[RentalPeriod["JulyPrice"] = 16] = "JulyPrice";
22
+ RentalPeriod[RentalPeriod["JulyToLDPrice"] = 17] = "JulyToLDPrice";
23
+ RentalPeriod[RentalPeriod["JulyAugustPrice"] = 18] = "JulyAugustPrice";
24
+ RentalPeriod[RentalPeriod["AugustPrice"] = 19] = "AugustPrice";
25
+ RentalPeriod[RentalPeriod["AugustToLDPrice"] = 20] = "AugustToLDPrice";
26
+ RentalPeriod[RentalPeriod["SeptemberPrice"] = 21] = "SeptemberPrice";
27
+ RentalPeriod[RentalPeriod["OctoberPrice"] = 22] = "OctoberPrice";
28
+ RentalPeriod[RentalPeriod["NovemberPrice"] = 23] = "NovemberPrice";
29
+ RentalPeriod[RentalPeriod["DecemberPrice"] = 24] = "DecemberPrice";
30
+ RentalPeriod[RentalPeriod["WeeklyPrice"] = 25] = "WeeklyPrice";
31
+ RentalPeriod[RentalPeriod["MonthlyPrice"] = 26] = "MonthlyPrice";
32
+ RentalPeriod[RentalPeriod["YearlyPrice"] = 27] = "YearlyPrice";
33
+ RentalPeriod[RentalPeriod["ExtendedSeasonPrice"] = 28] = "ExtendedSeasonPrice";
34
+ RentalPeriod[RentalPeriod["OffSeasonPrice"] = 29] = "OffSeasonPrice";
35
+ RentalPeriod[RentalPeriod["LowSeasonPrice"] = 30] = "LowSeasonPrice";
36
+ RentalPeriod[RentalPeriod["WinterPrice"] = 31] = "WinterPrice";
37
+ RentalPeriod[RentalPeriod["FurnishedPrice"] = 32] = "FurnishedPrice";
38
+ })(RentalPeriod || (exports.RentalPeriod = RentalPeriod = {}));
@@ -0,0 +1,7 @@
1
+ import { BathroomType } from '../Enums/Listing/BathroomOperator.enum';
2
+ import { BathroomTypeOperator } from '../Enums/Listing/BathroomType.enum';
3
+ export declare class BathroomTypeModel {
4
+ value: number | null;
5
+ queryField: BathroomType;
6
+ operator: BathroomTypeOperator;
7
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BathroomTypeModel = void 0;
4
+ const BathroomOperator_enum_1 = require("../Enums/Listing/BathroomOperator.enum");
5
+ const BathroomType_enum_1 = require("../Enums/Listing/BathroomType.enum");
6
+ class BathroomTypeModel {
7
+ constructor() {
8
+ this.value = null;
9
+ this.queryField = BathroomOperator_enum_1.BathroomType.Total;
10
+ this.operator = BathroomType_enum_1.BathroomTypeOperator.Eq;
11
+ }
12
+ }
13
+ exports.BathroomTypeModel = BathroomTypeModel;
@@ -1,5 +1,5 @@
1
1
  import { ListingStatusEnumKeys } from '../Enums';
2
- import { OpenHouseLiteModel } from './OpenHouseLiteModel';
2
+ import { OpenHouseLiteModel } from './OpenHouseLite.model';
3
3
  import { RentPriceModel } from './RentPrice.model';
4
4
  export declare class ClusteringFilterResponseModel {
5
5
  totalCount: number;
@@ -0,0 +1,5 @@
1
+ export declare class FeatureCacheModel {
2
+ id: number;
3
+ name: string | null;
4
+ urlKey: string | null;
5
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FeatureCacheModel = void 0;
4
+ class FeatureCacheModel {
5
+ constructor() {
6
+ this.id = 0;
7
+ this.name = null;
8
+ this.urlKey = null;
9
+ }
10
+ }
11
+ exports.FeatureCacheModel = FeatureCacheModel;
@@ -1,5 +1,5 @@
1
1
  import { GlobalQueryModel } from '../Common';
2
- import { OfficeFilterModel } from './OfficeFilterModel';
2
+ import { OfficeFilterModel } from './OfficeFilter.model';
3
3
  export declare class GetByOfficesRequestModel extends GlobalQueryModel {
4
4
  offices: OfficeFilterModel[] | null;
5
5
  constructor(data?: Partial<GetByOfficesRequestModel>);
@@ -0,0 +1,37 @@
1
+ import { RangeModel } from './Rage.model';
2
+ import { MoveInModel } from './MoveIn.model';
3
+ import { SchoolTypeModel } from './SchoolType.model';
4
+ import { PlaceFilterModel } from './PlaceFilter.model';
5
+ import { BathroomTypeModel } from './BathroomType.model';
6
+ import { ListingStatusEnum, ListingTypeEnum } from '../Enums';
7
+ import { HomeTypeEnum } from '../Enums/Listing/HomeType.enum';
8
+ import { RentalPeriod } from '../Enums/Listing/RentalPeriod.enum';
9
+ import { ListingOrderByOptions, OrderingDirection } from '../Enums/Listing/ListingOrder.enum';
10
+ export declare class GlobalListingFilterModel {
11
+ orderBy: ListingOrderByOptions | null;
12
+ rentalPeriodOrderBy: RentalPeriod | null;
13
+ orderingDirection: OrderingDirection | null;
14
+ statuses: ListingStatusEnum[] | null;
15
+ listingTypes: ListingTypeEnum[] | null;
16
+ homeTypes: HomeTypeEnum[] | null;
17
+ bedroomsTotal: number[] | null;
18
+ bathroom: BathroomTypeModel | null;
19
+ styles: number[] | null;
20
+ features: number[] | null;
21
+ listPrice: RangeModel | null;
22
+ isPriceReduced: boolean | null;
23
+ livingAreaSquareFeet: RangeModel | null;
24
+ lotSizeSquareFeet: RangeModel | null;
25
+ yearBuilt: RangeModel | null;
26
+ hasOpenHouse: boolean | null;
27
+ timeOnMls: number | null;
28
+ moveIn: MoveInModel | null;
29
+ schoolFilter: SchoolTypeModel;
30
+ parkingTotal: RangeModel | null;
31
+ isPetAllowed: boolean | null;
32
+ isNewConstruction: boolean | null;
33
+ hasVirtualTour: boolean | null;
34
+ places: PlaceFilterModel[] | null;
35
+ skip: number;
36
+ take: number;
37
+ }
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GlobalListingFilterModel = void 0;
4
+ const SchoolType_model_1 = require("./SchoolType.model");
5
+ class GlobalListingFilterModel {
6
+ constructor() {
7
+ this.orderBy = null;
8
+ this.rentalPeriodOrderBy = null;
9
+ this.orderingDirection = null;
10
+ this.statuses = null;
11
+ this.listingTypes = null;
12
+ this.homeTypes = null;
13
+ this.bedroomsTotal = null;
14
+ this.bathroom = null;
15
+ this.styles = null;
16
+ this.features = null;
17
+ this.listPrice = null;
18
+ this.isPriceReduced = null;
19
+ this.livingAreaSquareFeet = null;
20
+ this.lotSizeSquareFeet = null;
21
+ this.yearBuilt = null;
22
+ this.hasOpenHouse = null;
23
+ this.timeOnMls = null;
24
+ this.moveIn = null;
25
+ this.schoolFilter = new SchoolType_model_1.SchoolTypeModel();
26
+ this.parkingTotal = null;
27
+ this.isPetAllowed = null;
28
+ this.isNewConstruction = null;
29
+ this.hasVirtualTour = null;
30
+ this.places = null;
31
+ this.skip = 0;
32
+ this.take = 0;
33
+ }
34
+ }
35
+ exports.GlobalListingFilterModel = GlobalListingFilterModel;
@@ -0,0 +1,4 @@
1
+ export declare class MoveInModel {
2
+ date: string | null;
3
+ skipNulls: boolean | null;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MoveInModel = void 0;
4
+ class MoveInModel {
5
+ constructor() {
6
+ this.date = null;
7
+ this.skipNulls = null;
8
+ }
9
+ }
10
+ exports.MoveInModel = MoveInModel;
@@ -0,0 +1,6 @@
1
+ export declare class PlaceFilterModel {
2
+ id: number | null;
3
+ name: string | null;
4
+ urlKey: string | null;
5
+ shapeId: number | null;
6
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlaceFilterModel = void 0;
4
+ class PlaceFilterModel {
5
+ constructor() {
6
+ this.id = null;
7
+ this.name = null;
8
+ this.urlKey = null;
9
+ this.shapeId = null;
10
+ }
11
+ }
12
+ exports.PlaceFilterModel = PlaceFilterModel;
@@ -0,0 +1,4 @@
1
+ export declare class RangeModel {
2
+ min: number | null;
3
+ max: number | null;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RangeModel = void 0;
4
+ class RangeModel {
5
+ constructor() {
6
+ this.min = null;
7
+ this.max = null;
8
+ }
9
+ }
10
+ exports.RangeModel = RangeModel;
@@ -0,0 +1,4 @@
1
+ export declare class SchoolTypeModel {
2
+ score: number | null;
3
+ isPrivate: boolean | null;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SchoolTypeModel = void 0;
4
+ class SchoolTypeModel {
5
+ constructor() {
6
+ this.score = null;
7
+ this.isPrivate = null;
8
+ }
9
+ }
10
+ exports.SchoolTypeModel = SchoolTypeModel;
@@ -1,19 +1,22 @@
1
- export * from './IListingTypeGroups.model';
2
- export * from './Listing.model';
3
- export * from './Property.model';
4
- export * from './GetByMlsIdRequest.model';
5
- export * from './GetByIdRequest.model';
6
- export * from './Style.model';
7
- export * from './RentPrice.model';
8
- export * from './WalkScore.model';
9
- export * from './OpenHouse.model';
10
- export * from './Photo.model';
11
- export * from './GetListingsByFilterRequest.model';
12
- export * from './GetMapListingsRequest.model';
13
- export * from './GetByAgentRequest.model';
14
- export * from './GetByAgentsRequest.model';
15
- export * from './AgentFilter.model';
16
- export * from './ClusteringFilterRequest.model';
17
- export * from './ClusteringFilterResponse.model';
18
- export * from './OfficeFilterModel';
19
- export * from './GetByOfficesRequest.model';
1
+ export { AgentFilterModel } from './AgentFilter.model';
2
+ export { BathroomTypeModel } from './BathroomType.model';
3
+ export { ClusteringFilterRequestModel } from './ClusteringFilterRequest.model';
4
+ export { ClusteringFilterResponseModel } from './ClusteringFilterResponse.model';
5
+ export { FeatureCacheModel } from './FeatureCache.model';
6
+ export { GetByAgentRequestModel } from './GetByAgentRequest.model';
7
+ export { GetByAgentsRequestModel } from './GetByAgentsRequest.model';
8
+ export { GetByIdRequestModel } from './GetByIdRequest.model';
9
+ export { GetByMlsIdRequestModel } from './GetByMlsIdRequest.model';
10
+ export { GetByOfficesRequestModel } from './GetByOfficesRequest.model';
11
+ export { GetListingsByFilterRequestModel } from './GetListingsByFilterRequest.model';
12
+ export { GetMapListingsRequestModel } from './GetMapListingsRequest.model';
13
+ export { IListingTypeGroups, ListingTypeEnumKeys, ListingTypeClassEnumKeys, } from './IListingTypeGroups.model';
14
+ export { ListingModel } from './Listing.model';
15
+ export { GlobalListingFilterModel } from './MapListingsRequest.model';
16
+ export { StyleModel } from './Style.model';
17
+ export { PhotoModel } from './Photo.model';
18
+ export { PropertyModel } from './Property.model';
19
+ export { RentPriceModel } from './RentPrice.model';
20
+ export { WalkScoreModel } from './WalkScore.model';
21
+ export { OpenHouseModel } from './OpenHouse.model';
22
+ export { OfficeFilterModel } from './OfficeFilter.model';
@@ -1,35 +1,43 @@
1
1
  "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
2
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./IListingTypeGroups.model"), exports);
18
- __exportStar(require("./Listing.model"), exports);
19
- __exportStar(require("./Property.model"), exports);
20
- __exportStar(require("./GetByMlsIdRequest.model"), exports);
21
- __exportStar(require("./GetByIdRequest.model"), exports);
22
- __exportStar(require("./Style.model"), exports);
23
- __exportStar(require("./RentPrice.model"), exports);
24
- __exportStar(require("./WalkScore.model"), exports);
25
- __exportStar(require("./OpenHouse.model"), exports);
26
- __exportStar(require("./Photo.model"), exports);
27
- __exportStar(require("./GetListingsByFilterRequest.model"), exports);
28
- __exportStar(require("./GetMapListingsRequest.model"), exports);
29
- __exportStar(require("./GetByAgentRequest.model"), exports);
30
- __exportStar(require("./GetByAgentsRequest.model"), exports);
31
- __exportStar(require("./AgentFilter.model"), exports);
32
- __exportStar(require("./ClusteringFilterRequest.model"), exports);
33
- __exportStar(require("./ClusteringFilterResponse.model"), exports);
34
- __exportStar(require("./OfficeFilterModel"), exports);
35
- __exportStar(require("./GetByOfficesRequest.model"), exports);
3
+ exports.OpenHouseModel = exports.WalkScoreModel = exports.RentPriceModel = exports.PropertyModel = exports.PhotoModel = exports.StyleModel = exports.GlobalListingFilterModel = exports.ListingModel = exports.GetMapListingsRequestModel = exports.GetListingsByFilterRequestModel = exports.GetByOfficesRequestModel = exports.GetByMlsIdRequestModel = exports.GetByIdRequestModel = exports.GetByAgentsRequestModel = exports.GetByAgentRequestModel = exports.FeatureCacheModel = exports.ClusteringFilterResponseModel = exports.ClusteringFilterRequestModel = exports.BathroomTypeModel = exports.AgentFilterModel = void 0;
4
+ var AgentFilter_model_1 = require("./AgentFilter.model");
5
+ Object.defineProperty(exports, "AgentFilterModel", { enumerable: true, get: function () { return AgentFilter_model_1.AgentFilterModel; } });
6
+ var BathroomType_model_1 = require("./BathroomType.model");
7
+ Object.defineProperty(exports, "BathroomTypeModel", { enumerable: true, get: function () { return BathroomType_model_1.BathroomTypeModel; } });
8
+ var ClusteringFilterRequest_model_1 = require("./ClusteringFilterRequest.model");
9
+ Object.defineProperty(exports, "ClusteringFilterRequestModel", { enumerable: true, get: function () { return ClusteringFilterRequest_model_1.ClusteringFilterRequestModel; } });
10
+ var ClusteringFilterResponse_model_1 = require("./ClusteringFilterResponse.model");
11
+ Object.defineProperty(exports, "ClusteringFilterResponseModel", { enumerable: true, get: function () { return ClusteringFilterResponse_model_1.ClusteringFilterResponseModel; } });
12
+ var FeatureCache_model_1 = require("./FeatureCache.model");
13
+ Object.defineProperty(exports, "FeatureCacheModel", { enumerable: true, get: function () { return FeatureCache_model_1.FeatureCacheModel; } });
14
+ var GetByAgentRequest_model_1 = require("./GetByAgentRequest.model");
15
+ Object.defineProperty(exports, "GetByAgentRequestModel", { enumerable: true, get: function () { return GetByAgentRequest_model_1.GetByAgentRequestModel; } });
16
+ var GetByAgentsRequest_model_1 = require("./GetByAgentsRequest.model");
17
+ Object.defineProperty(exports, "GetByAgentsRequestModel", { enumerable: true, get: function () { return GetByAgentsRequest_model_1.GetByAgentsRequestModel; } });
18
+ var GetByIdRequest_model_1 = require("./GetByIdRequest.model");
19
+ Object.defineProperty(exports, "GetByIdRequestModel", { enumerable: true, get: function () { return GetByIdRequest_model_1.GetByIdRequestModel; } });
20
+ var GetByMlsIdRequest_model_1 = require("./GetByMlsIdRequest.model");
21
+ Object.defineProperty(exports, "GetByMlsIdRequestModel", { enumerable: true, get: function () { return GetByMlsIdRequest_model_1.GetByMlsIdRequestModel; } });
22
+ var GetByOfficesRequest_model_1 = require("./GetByOfficesRequest.model");
23
+ Object.defineProperty(exports, "GetByOfficesRequestModel", { enumerable: true, get: function () { return GetByOfficesRequest_model_1.GetByOfficesRequestModel; } });
24
+ var GetListingsByFilterRequest_model_1 = require("./GetListingsByFilterRequest.model");
25
+ Object.defineProperty(exports, "GetListingsByFilterRequestModel", { enumerable: true, get: function () { return GetListingsByFilterRequest_model_1.GetListingsByFilterRequestModel; } });
26
+ var GetMapListingsRequest_model_1 = require("./GetMapListingsRequest.model");
27
+ Object.defineProperty(exports, "GetMapListingsRequestModel", { enumerable: true, get: function () { return GetMapListingsRequest_model_1.GetMapListingsRequestModel; } });
28
+ var Listing_model_1 = require("./Listing.model");
29
+ Object.defineProperty(exports, "ListingModel", { enumerable: true, get: function () { return Listing_model_1.ListingModel; } });
30
+ var MapListingsRequest_model_1 = require("./MapListingsRequest.model");
31
+ Object.defineProperty(exports, "GlobalListingFilterModel", { enumerable: true, get: function () { return MapListingsRequest_model_1.GlobalListingFilterModel; } });
32
+ var Style_model_1 = require("./Style.model");
33
+ Object.defineProperty(exports, "StyleModel", { enumerable: true, get: function () { return Style_model_1.StyleModel; } });
34
+ var Photo_model_1 = require("./Photo.model");
35
+ Object.defineProperty(exports, "PhotoModel", { enumerable: true, get: function () { return Photo_model_1.PhotoModel; } });
36
+ var Property_model_1 = require("./Property.model");
37
+ Object.defineProperty(exports, "PropertyModel", { enumerable: true, get: function () { return Property_model_1.PropertyModel; } });
38
+ var RentPrice_model_1 = require("./RentPrice.model");
39
+ Object.defineProperty(exports, "RentPriceModel", { enumerable: true, get: function () { return RentPrice_model_1.RentPriceModel; } });
40
+ var WalkScore_model_1 = require("./WalkScore.model");
41
+ Object.defineProperty(exports, "WalkScoreModel", { enumerable: true, get: function () { return WalkScore_model_1.WalkScoreModel; } });
42
+ var OpenHouse_model_1 = require("./OpenHouse.model");
43
+ Object.defineProperty(exports, "OpenHouseModel", { enumerable: true, get: function () { return OpenHouse_model_1.OpenHouseModel; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",