samls-js-integration 1.0.39 → 1.0.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/README.md +6 -1
- package/dist/clients/AddressDetail.d.ts +5 -0
- package/dist/clients/AddressDetail.js +6 -0
- package/dist/clients/ListingsClient.d.ts +9 -0
- package/dist/clients/ListingsClient.js +18 -0
- package/dist/clients/MlsClient.d.ts +6 -0
- package/dist/clients/MlsClient.js +10 -0
- package/dist/clients/PolygonClient.d.ts +5 -0
- package/dist/clients/PolygonClient.js +7 -0
- package/dist/clients/index.js +3 -0
- package/dist/globals/HttpModule.d.ts +1 -0
- package/dist/globals/HttpModule.js +4 -0
- package/dist/globals/constants/url.d.ts +4 -0
- package/dist/globals/constants/url.js +4 -0
- package/dist/globals/index.js +3 -0
- package/dist/globals/models/IApiResponse.d.ts +5 -0
- package/dist/globals/models/IApiResponse.js +1 -0
- package/{lib/globals/models/index.ts → dist/globals/models/index.d.ts} +0 -1
- package/dist/globals/models/index.js +2 -0
- package/dist/index.js +2 -0
- package/dist/models/Address/AddressDetailModel.d.ts +37 -0
- package/dist/models/Address/AddressDetailModel.js +38 -0
- package/dist/models/Address/AddressQueryModel.d.ts +5 -0
- package/dist/models/Address/AddressQueryModel.js +8 -0
- package/dist/models/Address/index.js +2 -0
- package/dist/models/Agent/AgentInfoModel.d.ts +27 -0
- package/dist/models/Agent/AgentInfoModel.js +28 -0
- package/dist/models/Agent/AgentModel.d.ts +7 -0
- package/dist/models/Agent/AgentModel.js +8 -0
- package/dist/models/Agent/GetAgentRequestModel.d.ts +6 -0
- package/dist/models/Agent/GetAgentRequestModel.js +7 -0
- package/dist/models/Agent/GetAgentsRequestModel.d.ts +8 -0
- package/dist/models/Agent/GetAgentsRequestModel.js +10 -0
- package/dist/models/Agent/OfficeModel.d.ts +19 -0
- package/dist/models/Agent/OfficeModel.js +20 -0
- package/dist/models/Agent/index.js +5 -0
- package/dist/models/Common/GlobalQueryModel.d.ts +11 -0
- package/dist/models/Common/GlobalQueryModel.js +14 -0
- package/dist/models/Common/LocationModel.d.ts +4 -0
- package/dist/models/Common/LocationModel.js +6 -0
- package/dist/models/Common/PaginationOptions.d.ts +4 -0
- package/dist/models/Common/PaginationOptions.js +6 -0
- package/dist/models/Common/Point.d.ts +5 -0
- package/dist/models/Common/Point.js +7 -0
- package/dist/models/Common/index.js +5 -0
- package/dist/models/Entities/AddressDetail.d.ts +42 -0
- package/dist/models/Entities/AddressDetail.js +42 -0
- package/dist/models/Entities/AddressPolygon.d.ts +10 -0
- package/dist/models/Entities/AddressPolygon.js +10 -0
- package/dist/models/Entities/Entity.d.ts +6 -0
- package/dist/models/Entities/Entity.js +7 -0
- package/dist/models/Entities/Listing.d.ts +78 -0
- package/dist/models/Entities/Listing.js +3 -0
- package/dist/models/Entities/ListingOpenHouse.d.ts +24 -0
- package/dist/models/Entities/ListingOpenHouse.js +3 -0
- package/dist/models/Entities/ListingSchool.d.ts +9 -0
- package/dist/models/Entities/ListingSchool.js +9 -0
- package/dist/models/Entities/Polygon.d.ts +2 -0
- package/dist/models/Entities/Polygon.js +3 -0
- package/dist/models/Entities/Property.d.ts +2 -0
- package/dist/models/Entities/Property.js +3 -0
- package/dist/models/Entities/PropertyFeature.d.ts +2 -0
- package/dist/models/Entities/PropertyFeature.js +3 -0
- package/dist/models/Entities/School.d.ts +2 -0
- package/dist/models/Entities/School.js +3 -0
- package/dist/models/Entities/index.js +10 -0
- package/dist/models/Enums/AgentTypeEnum.d.ts +6 -0
- package/dist/models/Enums/AgentTypeEnum.js +7 -0
- package/dist/models/Enums/AssociationFeeFrequencyEnum.d.ts +13 -0
- package/dist/models/Enums/AssociationFeeFrequencyEnum.js +14 -0
- package/dist/models/Enums/AuthenticationTypeEnum.d.ts +6 -0
- package/dist/models/Enums/AuthenticationTypeEnum.js +7 -0
- package/dist/models/Enums/CurrencyEnum.d.ts +5 -0
- package/dist/models/Enums/CurrencyEnum.js +6 -0
- package/dist/models/Enums/DirectionFacesEnum.d.ts +11 -0
- package/dist/models/Enums/DirectionFacesEnum.js +12 -0
- package/dist/models/Enums/FeatureSourceEnum.d.ts +6 -0
- package/dist/models/Enums/FeatureSourceEnum.js +14 -0
- package/dist/models/Enums/GeometryTypeEnum.d.ts +10 -0
- package/dist/models/Enums/GeometryTypeEnum.js +11 -0
- package/dist/models/Enums/ListingStatusEnum.d.ts +15 -0
- package/dist/models/Enums/ListingStatusEnum.js +31 -0
- package/dist/models/Enums/ListingTypeClassEnum.d.ts +6 -0
- package/dist/models/Enums/ListingTypeClassEnum.js +6 -0
- package/dist/models/Enums/ListingTypeEnum.d.ts +16 -0
- package/dist/models/Enums/ListingTypeEnum.js +20 -0
- package/dist/models/Enums/MLSEnum.d.ts +38 -0
- package/dist/models/Enums/MLSEnum.js +39 -0
- package/dist/models/Enums/OrderByOptions.d.ts +6 -0
- package/dist/models/Enums/OrderByOptions.js +7 -0
- package/dist/models/Enums/OwnershipTypeEnum.d.ts +22 -0
- package/dist/models/Enums/OwnershipTypeEnum.js +26 -0
- package/dist/models/Enums/PhysicalPropertyClassEnum.d.ts +6 -0
- package/dist/models/Enums/PhysicalPropertyClassEnum.js +7 -0
- package/dist/models/Enums/PhysicalPropertyTypeEnum.d.ts +51 -0
- package/dist/models/Enums/PhysicalPropertyTypeEnum.js +55 -0
- package/dist/models/Enums/PlatformEnum.d.ts +6 -0
- package/dist/models/Enums/PlatformEnum.js +7 -0
- package/dist/models/Enums/ProcessingStatusEnum.d.ts +8 -0
- package/dist/models/Enums/ProcessingStatusEnum.js +9 -0
- package/dist/models/Enums/ProcessingTypeEnum.d.ts +5 -0
- package/dist/models/Enums/ProcessingTypeEnum.js +6 -0
- package/dist/models/Enums/PropertyConditionEnum.d.ts +17 -0
- package/dist/models/Enums/PropertyConditionEnum.js +21 -0
- package/dist/models/Enums/PropertyLevelEnum.d.ts +12 -0
- package/dist/models/Enums/PropertyLevelEnum.js +16 -0
- package/dist/models/Enums/StreetDirectionEnum.d.ts +11 -0
- package/dist/models/Enums/StreetDirectionEnum.js +15 -0
- package/dist/models/Enums/StreetSuffixEnum.d.ts +245 -0
- package/dist/models/Enums/StreetSuffixEnum.js +246 -0
- package/dist/models/Enums/index.js +22 -0
- package/dist/models/Feature/CategoryModel.d.ts +4 -0
- package/dist/models/Feature/CategoryModel.js +6 -0
- package/dist/models/Feature/FeatureModel.d.ts +9 -0
- package/dist/models/Feature/FeatureModel.js +9 -0
- package/dist/models/Feature/SubCategoryModel.d.ts +4 -0
- package/dist/models/Feature/SubCategoryModel.js +6 -0
- package/dist/models/Feature/index.js +3 -0
- package/dist/models/Listing/ClusteringFilterRequestBaseModel.d.ts +0 -0
- package/{lib/models/Listing/ClusteringFilterRequestBaseModel.ts → dist/models/Listing/ClusteringFilterRequestBaseModel.js} +2 -1
- package/dist/models/Listing/GetByIdRequestModel.d.ts +5 -0
- package/dist/models/Listing/GetByIdRequestModel.js +9 -0
- package/dist/models/Listing/GetByMlsIdRequestModel.d.ts +6 -0
- package/dist/models/Listing/GetByMlsIdRequestModel.js +9 -0
- package/dist/models/Listing/GetListingsByFilterRequestModel.d.ts +13 -0
- package/dist/models/Listing/GetListingsByFilterRequestModel.js +15 -0
- package/dist/models/Listing/ListingModel.d.ts +81 -0
- package/dist/models/Listing/ListingModel.js +75 -0
- package/dist/models/Listing/OpenHouseModel.d.ts +20 -0
- package/dist/models/Listing/OpenHouseModel.js +23 -0
- package/dist/models/Listing/PhotoModel.d.ts +10 -0
- package/dist/models/Listing/PhotoModel.js +13 -0
- package/dist/models/Listing/PropertyModel.d.ts +49 -0
- package/dist/models/Listing/PropertyModel.js +48 -0
- package/dist/models/Listing/RentPriceModel.d.ts +34 -0
- package/dist/models/Listing/RentPriceModel.js +37 -0
- package/dist/models/Listing/StyleModel.d.ts +4 -0
- package/dist/models/Listing/StyleModel.js +7 -0
- package/dist/models/Listing/WalkScoreModel.d.ts +9 -0
- package/dist/models/Listing/WalkScoreModel.js +12 -0
- package/dist/models/Listing/index.js +10 -0
- package/dist/models/Mls/MlsInfoModel.d.ts +8 -0
- package/dist/models/Mls/MlsInfoModel.js +11 -0
- package/dist/models/Mls/index.js +1 -0
- package/dist/models/PData/index.js +1 -0
- package/dist/models/PData/models/Condition.d.ts +4 -0
- package/dist/models/PData/models/Condition.js +5 -0
- package/dist/models/PData/models/ConditionModel.d.ts +13 -0
- package/dist/models/PData/models/ConditionModel.js +15 -0
- package/dist/models/PData/models/IPagination.d.ts +4 -0
- package/dist/models/PData/models/IPagination.js +1 -0
- package/dist/models/PData/models/Operator.d.ts +14 -0
- package/dist/models/PData/models/Operator.js +15 -0
- package/dist/models/PData/models/Ordering.d.ts +7 -0
- package/dist/models/PData/models/Ordering.js +11 -0
- package/dist/models/PData/models/index.js +5 -0
- package/dist/models/Polygon/LimitModel.d.ts +6 -0
- package/dist/models/Polygon/LimitModel.js +9 -0
- package/dist/models/Polygon/PolygonFilterRequestModel.d.ts +9 -0
- package/dist/models/Polygon/PolygonFilterRequestModel.js +12 -0
- package/dist/models/Polygon/PolygonFilterResponseModel.d.ts +8 -0
- package/dist/models/Polygon/PolygonFilterResponseModel.js +9 -0
- package/dist/models/Polygon/PolygonLiteResponseModel.d.ts +15 -0
- package/dist/models/Polygon/PolygonLiteResponseModel.js +17 -0
- package/dist/models/Polygon/index.js +4 -0
- package/dist/models/School/SchoolIdentifierModel.d.ts +0 -0
- package/{lib/models/School/SchoolIdentifierModel.ts → dist/models/School/SchoolIdentifierModel.js} +2 -1
- package/dist/models/School/SchoolModel.d.ts +13 -0
- package/dist/models/School/SchoolModel.js +16 -0
- package/dist/models/School/index.js +1 -0
- package/dist/models/index.js +12 -0
- package/dist/services/SamlsClient.d.ts +8 -0
- package/{lib/services/SamlsClient.ts → dist/services/SamlsClient.js} +6 -5
- package/package.json +5 -5
- package/dist/browser/samls.js +0 -1348
- package/dist/node/samls.cjs +0 -1345
- package/lib/clients/AddressDetail.ts +0 -10
- package/lib/clients/ListingsClient.ts +0 -36
- package/lib/clients/MlsClient.ts +0 -14
- package/lib/clients/PolygonClient.ts +0 -12
- package/lib/globals/HttpModule.ts +0 -6
- package/lib/globals/constants/url.ts +0 -4
- package/lib/globals/models/IApiResponse.ts +0 -5
- package/lib/globals/models/ObjectPropertyPathChecker.ts +0 -3
- package/lib/models/Address/AddressDetailModel.ts +0 -39
- package/lib/models/Address/AddressQueryModel.ts +0 -10
- package/lib/models/Agent/AgentInfoModel.ts +0 -28
- package/lib/models/Agent/AgentModel.ts +0 -8
- package/lib/models/Agent/GetAgentRequestModel.ts +0 -8
- package/lib/models/Agent/GetAgentsRequestModel.ts +0 -9
- package/lib/models/Agent/OfficeModel.ts +0 -20
- package/lib/models/Common/GlobalQueryModel.ts +0 -17
- package/lib/models/Common/LocationModel.ts +0 -4
- package/lib/models/Common/PaginationOptions.ts +0 -4
- package/lib/models/Common/Point.ts +0 -10
- package/lib/models/Entities/AddressDetail.ts +0 -46
- package/lib/models/Entities/AddressPolygon.ts +0 -11
- package/lib/models/Entities/Entity.ts +0 -11
- package/lib/models/Entities/Listing.ts +0 -87
- package/lib/models/Entities/ListingOpenHouse.ts +0 -26
- package/lib/models/Entities/ListingSchool.ts +0 -10
- package/lib/models/Entities/Polygon.ts +0 -23
- package/lib/models/Entities/Property.ts +0 -60
- package/lib/models/Entities/PropertyFeature.ts +0 -13
- package/lib/models/Entities/School.ts +0 -19
- package/lib/models/Enums/AgentTypeEnum.ts +0 -7
- package/lib/models/Enums/AssociationFeeFrequencyEnum.ts +0 -13
- package/lib/models/Enums/AuthenticationTypeEnum.ts +0 -6
- package/lib/models/Enums/CurrencyEnum.ts +0 -5
- package/lib/models/Enums/DirectionFacesEnum.ts +0 -11
- package/lib/models/Enums/FeatureSourceEnum.ts +0 -15
- package/lib/models/Enums/GeometryTypeEnum.ts +0 -10
- package/lib/models/Enums/ListingStatusEnum.ts +0 -35
- package/lib/models/Enums/ListingTypeClassEnum.ts +0 -7
- package/lib/models/Enums/ListingTypeEnum.ts +0 -20
- package/lib/models/Enums/MLSEnum.ts +0 -38
- package/lib/models/Enums/OrderByOptions.ts +0 -6
- package/lib/models/Enums/OwnershipTypeEnum.ts +0 -26
- package/lib/models/Enums/PhysicalPropertyClassEnum.ts +0 -6
- package/lib/models/Enums/PhysicalPropertyTypeEnum.ts +0 -55
- package/lib/models/Enums/PlatformEnum.ts +0 -6
- package/lib/models/Enums/ProcessingStatusEnum.ts +0 -8
- package/lib/models/Enums/ProcessingTypeEnum.ts +0 -5
- package/lib/models/Enums/PropertyConditionEnum.ts +0 -21
- package/lib/models/Enums/PropertyLevelEnum.ts +0 -16
- package/lib/models/Enums/StreetDirectionEnum.ts +0 -15
- package/lib/models/Enums/StreetSuffixEnum.ts +0 -245
- package/lib/models/Feature/CategoryModel.ts +0 -4
- package/lib/models/Feature/FeatureModel.ts +0 -11
- package/lib/models/Feature/SubCategoryModel.ts +0 -4
- package/lib/models/Listing/ClusteringFilterResponseModel.cs +0 -29
- package/lib/models/Listing/GetByAddressRequestModel.cs +0 -21
- package/lib/models/Listing/GetByAgentRequestModel.cs +0 -13
- package/lib/models/Listing/GetByIdRequestModel.ts +0 -12
- package/lib/models/Listing/GetByMlsIdRequestModel.ts +0 -12
- package/lib/models/Listing/GetListingsByFilterRequestModel.ts +0 -19
- package/lib/models/Listing/GetMapListingsRequestModel.cs +0 -16
- package/lib/models/Listing/GetNearByListingsRequestModel.cs +0 -17
- package/lib/models/Listing/GetPhotosByIdsRequestModel.cs +0 -6
- package/lib/models/Listing/ListingDistancedModel.cs +0 -7
- package/lib/models/Listing/ListingModel.ts +0 -88
- package/lib/models/Listing/ListingsLocationQueryModel.cs +0 -16
- package/lib/models/Listing/LocationOptions.cs +0 -8
- package/lib/models/Listing/NearByListingsResponse.cs +0 -37
- package/lib/models/Listing/OpenHouseLiteModel.cs +0 -7
- package/lib/models/Listing/OpenHouseModel.ts +0 -21
- package/lib/models/Listing/PhotoModel.ts +0 -10
- package/lib/models/Listing/PropertyModel.ts +0 -57
- package/lib/models/Listing/RentPriceModel.ts +0 -35
- package/lib/models/Listing/StyleModel.ts +0 -5
- package/lib/models/Listing/WalkScoreModel.ts +0 -10
- package/lib/models/Mls/MlsInfoModel.ts +0 -9
- package/lib/models/PData/models/Condition.ts +0 -4
- package/lib/models/PData/models/ConditionModel.ts +0 -20
- package/lib/models/PData/models/IPagination.ts +0 -4
- package/lib/models/PData/models/Operator.ts +0 -14
- package/lib/models/PData/models/Ordering.ts +0 -12
- package/lib/models/Polygon/LimitModel.ts +0 -12
- package/lib/models/Polygon/PolygonFilterRequestModel.ts +0 -15
- package/lib/models/Polygon/PolygonFilterResponseModel.ts +0 -15
- package/lib/models/Polygon/PolygonLiteResponseModel.ts +0 -15
- package/lib/models/Polygon/PolygonResponseModel.cs +0 -22
- package/lib/models/Polygon/PolygonsQueryModel.cs +0 -12
- package/lib/models/School/SchoolModel.ts +0 -14
- package/lib/models/School/SchoolsByRadiusBatchRequestModel.cs +0 -6
- package/lib/models/School/SchoolsByRadiusRequestModel.cs +0 -10
- /package/{lib/clients/index.ts → dist/clients/index.d.ts} +0 -0
- /package/{lib/globals/index.ts → dist/globals/index.d.ts} +0 -0
- /package/{lib/index.ts → dist/index.d.ts} +0 -0
- /package/{lib/models/Address/index.ts → dist/models/Address/index.d.ts} +0 -0
- /package/{lib/models/Agent/index.ts → dist/models/Agent/index.d.ts} +0 -0
- /package/{lib/models/Common/index.ts → dist/models/Common/index.d.ts} +0 -0
- /package/{lib/models/Entities/index.ts → dist/models/Entities/index.d.ts} +0 -0
- /package/{lib/models/Enums/index.ts → dist/models/Enums/index.d.ts} +0 -0
- /package/{lib/models/Feature/index.ts → dist/models/Feature/index.d.ts} +0 -0
- /package/{lib/models/Listing/index.ts → dist/models/Listing/index.d.ts} +0 -0
- /package/{lib/models/Mls/index.ts → dist/models/Mls/index.d.ts} +0 -0
- /package/{lib/models/PData/index.ts → dist/models/PData/index.d.ts} +0 -0
- /package/{lib/models/PData/models/index.ts → dist/models/PData/models/index.d.ts} +0 -0
- /package/{lib/models/Polygon/index.ts → dist/models/Polygon/index.d.ts} +0 -0
- /package/{lib/models/School/index.ts → dist/models/School/index.d.ts} +0 -0
- /package/{lib/models/index.ts → dist/models/index.d.ts} +0 -0
package/dist/node/samls.cjs
DELETED
|
@@ -1,1345 +0,0 @@
|
|
|
1
|
-
// Samls 2023, version 1.0.0
|
|
2
|
-
'use strict';
|
|
3
|
-
|
|
4
|
-
var axios = require('axios');
|
|
5
|
-
|
|
6
|
-
const URL = {
|
|
7
|
-
domain: 'https://samls-providerapi.purlin.tech/api/',
|
|
8
|
-
pathPrefix: '',
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
const requestConfig = { baseURL: URL.domain };
|
|
12
|
-
const http = axios.create(requestConfig);
|
|
13
|
-
|
|
14
|
-
const PATH_SEGMENT$1 = 'AddressDetail';
|
|
15
|
-
class MlsClient {
|
|
16
|
-
getMlsInfos() {
|
|
17
|
-
return http.get(`${PATH_SEGMENT$1}/Mls`);
|
|
18
|
-
}
|
|
19
|
-
getMlsInfoById(id) {
|
|
20
|
-
return http.get(`${PATH_SEGMENT$1}/Mls/${id}`);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
class ListingsClient {
|
|
25
|
-
get(model) {
|
|
26
|
-
return http.post('Listing', model);
|
|
27
|
-
}
|
|
28
|
-
getListingsByFilter(model) {
|
|
29
|
-
return http.post('Listing/filter', model);
|
|
30
|
-
}
|
|
31
|
-
getByMlsId(model) {
|
|
32
|
-
return http.post('Listing/mlsId', model);
|
|
33
|
-
}
|
|
34
|
-
getByQuery(queryModel) {
|
|
35
|
-
return http.post('Listing/query', queryModel);
|
|
36
|
-
}
|
|
37
|
-
getListingTypeGroups() {
|
|
38
|
-
return http.get('Listing/type/groups');
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
let AddressDetail$1 = class AddressDetail {
|
|
43
|
-
getByQuery(queryModel) {
|
|
44
|
-
return http.post(`AddressDetail/query`, queryModel);
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
const PATH_SEGMENT = 'Polygon';
|
|
49
|
-
class PolygonClient {
|
|
50
|
-
filter(model) {
|
|
51
|
-
return http.post(`${PATH_SEGMENT}/filter`, model);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
//TODO build is not completed
|
|
56
|
-
//TODO and separate types in one file and remove src codes from library
|
|
57
|
-
class SamlsClient {
|
|
58
|
-
constructor() {
|
|
59
|
-
this.Mls = new MlsClient();
|
|
60
|
-
this.Polygons = new PolygonClient();
|
|
61
|
-
this.Listings = new ListingsClient();
|
|
62
|
-
this.AddressDetails = new AddressDetail$1();
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
//TODO custom field
|
|
67
|
-
class Point {
|
|
68
|
-
constructor(latitude, longitude) {
|
|
69
|
-
this.latitude = latitude;
|
|
70
|
-
this.longitude = longitude;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
class GlobalQueryModel {
|
|
75
|
-
constructor(data) {
|
|
76
|
-
this.skip = 0;
|
|
77
|
-
this.take = 10;
|
|
78
|
-
this.count = false;
|
|
79
|
-
this.filter = null;
|
|
80
|
-
this.order = null;
|
|
81
|
-
this.conditions = null;
|
|
82
|
-
this.fields = [];
|
|
83
|
-
if (data) {
|
|
84
|
-
Object.assign(this, data);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
class LocationModel {
|
|
90
|
-
constructor() {
|
|
91
|
-
this.Latitude = 0;
|
|
92
|
-
this.Longitude = 0;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
class PaginationOptions {
|
|
97
|
-
constructor() {
|
|
98
|
-
this.Page = 0;
|
|
99
|
-
this.Count = 0;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
class ConditionModel {
|
|
104
|
-
constructor(data) {
|
|
105
|
-
this.value = null;
|
|
106
|
-
this.isNot = false;
|
|
107
|
-
this.operator = null;
|
|
108
|
-
this.nextProperty = null;
|
|
109
|
-
this.subConditions = [];
|
|
110
|
-
this.subCondition = null;
|
|
111
|
-
this.nextCondition = null;
|
|
112
|
-
this.property = null;
|
|
113
|
-
if (data) {
|
|
114
|
-
Object.assign(this, data);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
class AddressQueryModel extends GlobalQueryModel {
|
|
120
|
-
constructor(fullAddress, data) {
|
|
121
|
-
super(data);
|
|
122
|
-
this.fullAddress = '';
|
|
123
|
-
this.fullAddress = fullAddress;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
class AddressDetailModel {
|
|
128
|
-
constructor() {
|
|
129
|
-
this.coreListingId = 0;
|
|
130
|
-
this.city = '';
|
|
131
|
-
this.country = '';
|
|
132
|
-
this.county = '';
|
|
133
|
-
this.crossStreet = '';
|
|
134
|
-
this.directions = '';
|
|
135
|
-
this.elementarySchool = '';
|
|
136
|
-
this.elementarySchoolDistrict = '';
|
|
137
|
-
this.fullAddress = '';
|
|
138
|
-
this.highSchool = '';
|
|
139
|
-
this.highSchoolDistrict = '';
|
|
140
|
-
this.latitude = null;
|
|
141
|
-
this.locationDescription = '';
|
|
142
|
-
this.longitude = null;
|
|
143
|
-
this.middleOrJuniorSchool = '';
|
|
144
|
-
this.middleOrJuniorSchoolDistrict = '';
|
|
145
|
-
this.neighborhood = '';
|
|
146
|
-
this.postalCode = '';
|
|
147
|
-
this.seniorCommunityYN = null;
|
|
148
|
-
this.stateOrProvince = '';
|
|
149
|
-
this.streetDirPrefix = null;
|
|
150
|
-
this.streetDirSuffix = null;
|
|
151
|
-
this.streetName = '';
|
|
152
|
-
this.streetNumber = '';
|
|
153
|
-
this.streetSuffix = null;
|
|
154
|
-
this.subDivision = '';
|
|
155
|
-
this.unitNumber = '';
|
|
156
|
-
this.waterBodyName = '';
|
|
157
|
-
this.waterfrontProximity = '';
|
|
158
|
-
this.waterfrontYN = null;
|
|
159
|
-
this.zoning = '';
|
|
160
|
-
this.samlsFullAddress = '';
|
|
161
|
-
this.samlsPartialAddress = '';
|
|
162
|
-
this.polygonCollection = [];
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
class AgentInfoModel {
|
|
167
|
-
constructor() {
|
|
168
|
-
this.agentId = 0;
|
|
169
|
-
this.agentAOR = '';
|
|
170
|
-
this.agentDesignation = '';
|
|
171
|
-
this.agentDirectPhone = '';
|
|
172
|
-
this.agentEmail = '';
|
|
173
|
-
this.agentFirstName = '';
|
|
174
|
-
this.agentFullName = '';
|
|
175
|
-
this.agentHomePhone = '';
|
|
176
|
-
this.agentKey = '';
|
|
177
|
-
this.agentLastName = '';
|
|
178
|
-
this.agentLicenseNumber = '';
|
|
179
|
-
this.agentMiddleName = '';
|
|
180
|
-
this.agentMls = null;
|
|
181
|
-
this.agentMlsId = '';
|
|
182
|
-
this.agentMobilePhone = '';
|
|
183
|
-
this.agentNamePrefix = '';
|
|
184
|
-
this.agentNameSuffix = '';
|
|
185
|
-
this.agentOfficePhone = '';
|
|
186
|
-
this.agentOfficePhoneExt = '';
|
|
187
|
-
this.agentPreferredPhone = '';
|
|
188
|
-
this.agentStateLicense = '';
|
|
189
|
-
this.agentUrl = '';
|
|
190
|
-
this.teamKey = '';
|
|
191
|
-
this.teamName = '';
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
class AgentModel extends AgentInfoModel {
|
|
196
|
-
constructor() {
|
|
197
|
-
super(...arguments);
|
|
198
|
-
this.agentTypeId = null;
|
|
199
|
-
this.office = null;
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
class GetAgentRequestModel {
|
|
204
|
-
constructor() {
|
|
205
|
-
this.agentMlsId = '';
|
|
206
|
-
this.mlsId = null;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
class GetAgentsRequestModel extends PaginationOptions {
|
|
211
|
-
constructor() {
|
|
212
|
-
super(...arguments);
|
|
213
|
-
this.email = '';
|
|
214
|
-
this.lastName = '';
|
|
215
|
-
this.firstName = '';
|
|
216
|
-
this.mlsId = null;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
class OfficeModel {
|
|
221
|
-
constructor() {
|
|
222
|
-
this.officeKey = '';
|
|
223
|
-
this.officeAOR = '';
|
|
224
|
-
this.officeCity = '';
|
|
225
|
-
this.officeEmail = '';
|
|
226
|
-
this.officeLocation = '';
|
|
227
|
-
this.officeMls = null;
|
|
228
|
-
this.officeMlsId = '';
|
|
229
|
-
this.officeName = '';
|
|
230
|
-
this.officeNeighborhood = '';
|
|
231
|
-
this.officePhone = '';
|
|
232
|
-
this.officePhoneExt = '';
|
|
233
|
-
this.officeState = '';
|
|
234
|
-
this.officeStreetName = '';
|
|
235
|
-
this.officeStreetNumber = '';
|
|
236
|
-
this.officeURL = '';
|
|
237
|
-
this.officeZip = '';
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
//TODO need to revisit
|
|
242
|
-
class Listing {
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
class AddressDetail {
|
|
246
|
-
constructor() {
|
|
247
|
-
this.CoreListingId = 0;
|
|
248
|
-
this.City = '';
|
|
249
|
-
this.Country = '';
|
|
250
|
-
this.County = '';
|
|
251
|
-
this.CrossStreet = '';
|
|
252
|
-
this.Directions = '';
|
|
253
|
-
this.ElementarySchool = '';
|
|
254
|
-
this.ElementarySchoolDistrict = '';
|
|
255
|
-
this.FullAddress = '';
|
|
256
|
-
this.HighSchool = '';
|
|
257
|
-
this.HighSchoolDistrict = '';
|
|
258
|
-
this.Latitude = null;
|
|
259
|
-
this.LocationDescription = '';
|
|
260
|
-
this.Longitude = null;
|
|
261
|
-
this.MiddleOrJuniorSchool = '';
|
|
262
|
-
this.MiddleOrJuniorSchoolDistrict = '';
|
|
263
|
-
this.Neighborhood = '';
|
|
264
|
-
this.PostalCode = '';
|
|
265
|
-
this.SeniorCommunityYN = null;
|
|
266
|
-
this.StateOrProvince = '';
|
|
267
|
-
this.StreetDirPrefix = null;
|
|
268
|
-
this.StreetDirSuffix = null;
|
|
269
|
-
this.StreetName = '';
|
|
270
|
-
this.StreetNumber = '';
|
|
271
|
-
this.StreetSuffix = null;
|
|
272
|
-
this.SubDivision = '';
|
|
273
|
-
this.UnitNumber = '';
|
|
274
|
-
this.WaterBodyName = '';
|
|
275
|
-
this.WaterfrontProximity = '';
|
|
276
|
-
this.WaterfrontYN = null;
|
|
277
|
-
this.Zoning = '';
|
|
278
|
-
this.Coordinate = new Point(0, 0);
|
|
279
|
-
this.SamlsFullAddress = '';
|
|
280
|
-
this.SamlsPartialAddress = '';
|
|
281
|
-
this.AddressPolygons = [];
|
|
282
|
-
this.CoreListing = new Listing();
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
class AddressPolygon {
|
|
287
|
-
constructor() {
|
|
288
|
-
this.id = 0;
|
|
289
|
-
this.addressId = 0;
|
|
290
|
-
this.polygonId = 0;
|
|
291
|
-
this.createDate = null;
|
|
292
|
-
this.polygon = null;
|
|
293
|
-
this.address = null;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
class Entity {
|
|
298
|
-
constructor(id, createDate, updateDate) {
|
|
299
|
-
this.id = id;
|
|
300
|
-
this.createDate = createDate;
|
|
301
|
-
this.updateDate = updateDate;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
//TODO need to revisit
|
|
306
|
-
class ListingOpenHouse {
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
class ListingSchool {
|
|
310
|
-
constructor() {
|
|
311
|
-
this.schoolId = 0;
|
|
312
|
-
this.coreListingId = 0;
|
|
313
|
-
this.school = null;
|
|
314
|
-
this.distance = null;
|
|
315
|
-
this.listing = null;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
//TODO need to revisit
|
|
320
|
-
class Polygon {
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
//TODO need to revisit
|
|
324
|
-
class Property {
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
//TODO need to revisit
|
|
328
|
-
class PropertyFeature {
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
//TODO need to revisit
|
|
332
|
-
class School {
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
exports.AgentTypeEnum = void 0;
|
|
336
|
-
(function (AgentTypeEnum) {
|
|
337
|
-
AgentTypeEnum[AgentTypeEnum["ListAgent"] = 1] = "ListAgent";
|
|
338
|
-
AgentTypeEnum[AgentTypeEnum["CoListAgent"] = 2] = "CoListAgent";
|
|
339
|
-
AgentTypeEnum[AgentTypeEnum["BuyerAgent"] = 3] = "BuyerAgent";
|
|
340
|
-
AgentTypeEnum[AgentTypeEnum["CoBuyerAgent"] = 4] = "CoBuyerAgent";
|
|
341
|
-
})(exports.AgentTypeEnum || (exports.AgentTypeEnum = {}));
|
|
342
|
-
|
|
343
|
-
exports.AssociationFeeFrequencyEnum = void 0;
|
|
344
|
-
(function (AssociationFeeFrequencyEnum) {
|
|
345
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["NotMapped"] = -1] = "NotMapped";
|
|
346
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Annually"] = 1] = "Annually";
|
|
347
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Quarterly"] = 2] = "Quarterly";
|
|
348
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Semiannually"] = 3] = "Semiannually";
|
|
349
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Bimonthly"] = 4] = "Bimonthly";
|
|
350
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Monthly"] = 5] = "Monthly";
|
|
351
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Semimonthly"] = 6] = "Semimonthly";
|
|
352
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Weekly"] = 7] = "Weekly";
|
|
353
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["Daily"] = 8] = "Daily";
|
|
354
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["OneTime"] = 9] = "OneTime";
|
|
355
|
-
AssociationFeeFrequencyEnum[AssociationFeeFrequencyEnum["SeeRemarks"] = 10] = "SeeRemarks";
|
|
356
|
-
})(exports.AssociationFeeFrequencyEnum || (exports.AssociationFeeFrequencyEnum = {}));
|
|
357
|
-
|
|
358
|
-
exports.AuthenticationTypeEnum = void 0;
|
|
359
|
-
(function (AuthenticationTypeEnum) {
|
|
360
|
-
AuthenticationTypeEnum[AuthenticationTypeEnum["None"] = 0] = "None";
|
|
361
|
-
AuthenticationTypeEnum[AuthenticationTypeEnum["AccessTokenParameter"] = 1] = "AccessTokenParameter";
|
|
362
|
-
AuthenticationTypeEnum[AuthenticationTypeEnum["AccessTokenHeader"] = 2] = "AccessTokenHeader";
|
|
363
|
-
AuthenticationTypeEnum[AuthenticationTypeEnum["ClientCredentials"] = 3] = "ClientCredentials";
|
|
364
|
-
})(exports.AuthenticationTypeEnum || (exports.AuthenticationTypeEnum = {}));
|
|
365
|
-
|
|
366
|
-
exports.CurrencyEnum = void 0;
|
|
367
|
-
(function (CurrencyEnum) {
|
|
368
|
-
CurrencyEnum[CurrencyEnum["NotMapped"] = -1] = "NotMapped";
|
|
369
|
-
CurrencyEnum[CurrencyEnum["Other"] = 0] = "Other";
|
|
370
|
-
CurrencyEnum[CurrencyEnum["USD"] = 1] = "USD";
|
|
371
|
-
})(exports.CurrencyEnum || (exports.CurrencyEnum = {}));
|
|
372
|
-
|
|
373
|
-
exports.DirectionFacesEnum = void 0;
|
|
374
|
-
(function (DirectionFacesEnum) {
|
|
375
|
-
DirectionFacesEnum[DirectionFacesEnum["NotMapped"] = -1] = "NotMapped";
|
|
376
|
-
DirectionFacesEnum[DirectionFacesEnum["North"] = 1] = "North";
|
|
377
|
-
DirectionFacesEnum[DirectionFacesEnum["NorthEast"] = 2] = "NorthEast";
|
|
378
|
-
DirectionFacesEnum[DirectionFacesEnum["East"] = 3] = "East";
|
|
379
|
-
DirectionFacesEnum[DirectionFacesEnum["SouthEast"] = 4] = "SouthEast";
|
|
380
|
-
DirectionFacesEnum[DirectionFacesEnum["South"] = 5] = "South";
|
|
381
|
-
DirectionFacesEnum[DirectionFacesEnum["SouthWest"] = 6] = "SouthWest";
|
|
382
|
-
DirectionFacesEnum[DirectionFacesEnum["West"] = 7] = "West";
|
|
383
|
-
DirectionFacesEnum[DirectionFacesEnum["NorthWest"] = 8] = "NorthWest";
|
|
384
|
-
})(exports.DirectionFacesEnum || (exports.DirectionFacesEnum = {}));
|
|
385
|
-
|
|
386
|
-
exports.FeatureSourceEnum = void 0;
|
|
387
|
-
(function (FeatureSourceEnum) {
|
|
388
|
-
FeatureSourceEnum[FeatureSourceEnum["MLS"] = 1] = "MLS";
|
|
389
|
-
FeatureSourceEnum[FeatureSourceEnum["ImageProcessing"] = 2] = "ImageProcessing";
|
|
390
|
-
FeatureSourceEnum[FeatureSourceEnum["NLP"] = 4] = "NLP";
|
|
391
|
-
})(exports.FeatureSourceEnum || (exports.FeatureSourceEnum = {}));
|
|
392
|
-
// Helper function to check if a combination of flags is set
|
|
393
|
-
function hasFlag(enumValue, flag) {
|
|
394
|
-
return (enumValue & flag) === flag;
|
|
395
|
-
}
|
|
396
|
-
// // Usage example
|
|
397
|
-
// const value: FeatureSourceEnum = FeatureSourceEnum.MLS | FeatureSourceEnum.NLP;
|
|
398
|
-
// console.log(hasFlag(value, FeatureSourceEnum.MLS)); // true
|
|
399
|
-
// console.log(hasFlag(value, FeatureSourceEnum.ImageProcessing)); // false
|
|
400
|
-
|
|
401
|
-
exports.GeometryTypeEnum = void 0;
|
|
402
|
-
(function (GeometryTypeEnum) {
|
|
403
|
-
GeometryTypeEnum[GeometryTypeEnum["Zip"] = 1] = "Zip";
|
|
404
|
-
GeometryTypeEnum[GeometryTypeEnum["Neighborhood"] = 2] = "Neighborhood";
|
|
405
|
-
GeometryTypeEnum[GeometryTypeEnum["City"] = 3] = "City";
|
|
406
|
-
GeometryTypeEnum[GeometryTypeEnum["County"] = 4] = "County";
|
|
407
|
-
GeometryTypeEnum[GeometryTypeEnum["State"] = 5] = "State";
|
|
408
|
-
GeometryTypeEnum[GeometryTypeEnum["School"] = 6] = "School";
|
|
409
|
-
GeometryTypeEnum[GeometryTypeEnum["SubNeighborhood"] = 7] = "SubNeighborhood";
|
|
410
|
-
GeometryTypeEnum[GeometryTypeEnum["SubDivision"] = 8] = "SubDivision";
|
|
411
|
-
})(exports.GeometryTypeEnum || (exports.GeometryTypeEnum = {}));
|
|
412
|
-
|
|
413
|
-
exports.ListingStatusEnum = void 0;
|
|
414
|
-
(function (ListingStatusEnum) {
|
|
415
|
-
ListingStatusEnum[ListingStatusEnum["NotMapped"] = -1] = "NotMapped";
|
|
416
|
-
ListingStatusEnum[ListingStatusEnum["Other"] = 0] = "Other";
|
|
417
|
-
ListingStatusEnum[ListingStatusEnum["Active"] = 1] = "Active";
|
|
418
|
-
ListingStatusEnum[ListingStatusEnum["ActiveUnderContract"] = 2] = "ActiveUnderContract";
|
|
419
|
-
ListingStatusEnum[ListingStatusEnum["Auction"] = 3] = "Auction";
|
|
420
|
-
ListingStatusEnum[ListingStatusEnum["ComingSoon"] = 4] = "ComingSoon";
|
|
421
|
-
ListingStatusEnum[ListingStatusEnum["Closed"] = 5] = "Closed";
|
|
422
|
-
ListingStatusEnum[ListingStatusEnum["Expired"] = 6] = "Expired";
|
|
423
|
-
ListingStatusEnum[ListingStatusEnum["Withdrawn"] = 7] = "Withdrawn";
|
|
424
|
-
ListingStatusEnum[ListingStatusEnum["Pending"] = 8] = "Pending";
|
|
425
|
-
ListingStatusEnum[ListingStatusEnum["Cancelled"] = 9] = "Cancelled";
|
|
426
|
-
ListingStatusEnum[ListingStatusEnum["TemporaryOffMarket"] = 10] = "TemporaryOffMarket";
|
|
427
|
-
ListingStatusEnum[ListingStatusEnum["Incomplete"] = 11] = "Incomplete";
|
|
428
|
-
})(exports.ListingStatusEnum || (exports.ListingStatusEnum = {}));
|
|
429
|
-
// // Usage example
|
|
430
|
-
// const status: ListingStatusEnum = ListingStatusEnum.Active;
|
|
431
|
-
// console.log(listingStatusDisplayNames[status]); // "Active"
|
|
432
|
-
// console.log(IsActiveListing(status)); // true
|
|
433
|
-
// console.log(IsArchiveListing(status)); // false
|
|
434
|
-
|
|
435
|
-
exports.ListingTypeClassEnum = void 0;
|
|
436
|
-
(function (ListingTypeClassEnum) {
|
|
437
|
-
ListingTypeClassEnum[ListingTypeClassEnum["Rental"] = 0] = "Rental";
|
|
438
|
-
ListingTypeClassEnum[ListingTypeClassEnum["Residential"] = 1] = "Residential";
|
|
439
|
-
ListingTypeClassEnum[ListingTypeClassEnum["Other"] = 2] = "Other";
|
|
440
|
-
})(exports.ListingTypeClassEnum || (exports.ListingTypeClassEnum = {}));
|
|
441
|
-
|
|
442
|
-
exports.ListingTypeEnum = void 0;
|
|
443
|
-
(function (ListingTypeEnum) {
|
|
444
|
-
ListingTypeEnum[ListingTypeEnum["NotMapped"] = -1] = "NotMapped";
|
|
445
|
-
ListingTypeEnum[ListingTypeEnum["Other"] = 0] = "Other";
|
|
446
|
-
ListingTypeEnum[ListingTypeEnum["CommercialLease"] = 1] = "CommercialLease";
|
|
447
|
-
ListingTypeEnum[ListingTypeEnum["CommercialSale"] = 2] = "CommercialSale";
|
|
448
|
-
ListingTypeEnum[ListingTypeEnum["FarmSale"] = 3] = "FarmSale";
|
|
449
|
-
ListingTypeEnum[ListingTypeEnum["FarmLease"] = 4] = "FarmLease";
|
|
450
|
-
ListingTypeEnum[ListingTypeEnum["LandSale"] = 5] = "LandSale";
|
|
451
|
-
ListingTypeEnum[ListingTypeEnum["LandLease"] = 6] = "LandLease";
|
|
452
|
-
ListingTypeEnum[ListingTypeEnum["ResidentialSale"] = 7] = "ResidentialSale";
|
|
453
|
-
ListingTypeEnum[ListingTypeEnum["ResidentialLease"] = 8] = "ResidentialLease";
|
|
454
|
-
ListingTypeEnum[ListingTypeEnum["ResidentialIncome"] = 9] = "ResidentialIncome";
|
|
455
|
-
ListingTypeEnum[ListingTypeEnum["BoatDockSale"] = 10] = "BoatDockSale";
|
|
456
|
-
ListingTypeEnum[ListingTypeEnum["BoatDockLease"] = 11] = "BoatDockLease";
|
|
457
|
-
ListingTypeEnum[ListingTypeEnum["BusinessOpportunity"] = 12] = "BusinessOpportunity";
|
|
458
|
-
})(exports.ListingTypeEnum || (exports.ListingTypeEnum = {}));
|
|
459
|
-
// // Usage example
|
|
460
|
-
// const typeName: ListingTypeEnum = ListingTypeEnum.ResidentialSale;
|
|
461
|
-
// console.log(listingTypeEnumDisplayNames[typeName]); // "Residential sale"
|
|
462
|
-
|
|
463
|
-
exports.MLSEnum = void 0;
|
|
464
|
-
(function (MLSEnum) {
|
|
465
|
-
MLSEnum[MLSEnum["HAR"] = 1] = "HAR";
|
|
466
|
-
MLSEnum[MLSEnum["ONEKEY"] = 2] = "ONEKEY";
|
|
467
|
-
MLSEnum[MLSEnum["STELLAR"] = 3] = "STELLAR";
|
|
468
|
-
MLSEnum[MLSEnum["MLSPIN"] = 4] = "MLSPIN";
|
|
469
|
-
MLSEnum[MLSEnum["NABOR"] = 5] = "NABOR";
|
|
470
|
-
MLSEnum[MLSEnum["MIAMIRE"] = 6] = "MIAMIRE";
|
|
471
|
-
MLSEnum[MLSEnum["REBNY"] = 7] = "REBNY";
|
|
472
|
-
MLSEnum[MLSEnum["GLVAR"] = 8] = "GLVAR";
|
|
473
|
-
MLSEnum[MLSEnum["FTL"] = 9] = "FTL";
|
|
474
|
-
MLSEnum[MLSEnum["ACTRIS"] = 10] = "ACTRIS";
|
|
475
|
-
MLSEnum[MLSEnum["RAIRC"] = 11] = "RAIRC";
|
|
476
|
-
MLSEnum[MLSEnum["BCS"] = 12] = "BCS";
|
|
477
|
-
MLSEnum[MLSEnum["CTEXAS"] = 13] = "CTEXAS";
|
|
478
|
-
MLSEnum[MLSEnum["CRMLS"] = 14] = "CRMLS";
|
|
479
|
-
MLSEnum[MLSEnum["RAMC"] = 15] = "RAMC";
|
|
480
|
-
MLSEnum[MLSEnum["AGS"] = 16] = "AGS";
|
|
481
|
-
MLSEnum[MLSEnum["PBB"] = 17] = "PBB";
|
|
482
|
-
MLSEnum[MLSEnum["NEFAR"] = 18] = "NEFAR";
|
|
483
|
-
MLSEnum[MLSEnum["VAIL"] = 19] = "VAIL";
|
|
484
|
-
MLSEnum[MLSEnum["MOMLS"] = 20] = "MOMLS";
|
|
485
|
-
MLSEnum[MLSEnum["SBR"] = 21] = "SBR";
|
|
486
|
-
MLSEnum[MLSEnum["GRW"] = 22] = "GRW";
|
|
487
|
-
MLSEnum[MLSEnum["IRESDS"] = 23] = "IRESDS";
|
|
488
|
-
MLSEnum[MLSEnum["RECO"] = 24] = "RECO";
|
|
489
|
-
MLSEnum[MLSEnum["SABOR"] = 25] = "SABOR";
|
|
490
|
-
MLSEnum[MLSEnum["NTREIS"] = 26] = "NTREIS";
|
|
491
|
-
MLSEnum[MLSEnum["HCMLS"] = 27] = "HCMLS";
|
|
492
|
-
MLSEnum[MLSEnum["CLAW"] = 28] = "CLAW";
|
|
493
|
-
MLSEnum[MLSEnum["NJMLS"] = 29] = "NJMLS";
|
|
494
|
-
MLSEnum[MLSEnum["GSMLS"] = 30] = "GSMLS";
|
|
495
|
-
MLSEnum[MLSEnum["MLSL"] = 31] = "MLSL";
|
|
496
|
-
MLSEnum[MLSEnum["SMART"] = 32] = "SMART";
|
|
497
|
-
MLSEnum[MLSEnum["BRIGHT"] = 33] = "BRIGHT";
|
|
498
|
-
MLSEnum[MLSEnum["NCB"] = 34] = "NCB";
|
|
499
|
-
MLSEnum[MLSEnum["OEAST"] = 35] = "OEAST";
|
|
500
|
-
MLSEnum[MLSEnum["EELI"] = 36] = "EELI";
|
|
501
|
-
})(exports.MLSEnum || (exports.MLSEnum = {}));
|
|
502
|
-
|
|
503
|
-
exports.OrderByOptions = void 0;
|
|
504
|
-
(function (OrderByOptions) {
|
|
505
|
-
OrderByOptions[OrderByOptions["ByPrice"] = 1] = "ByPrice";
|
|
506
|
-
OrderByOptions[OrderByOptions["ByPricePerSquareFeet"] = 2] = "ByPricePerSquareFeet";
|
|
507
|
-
OrderByOptions[OrderByOptions["ByNewest"] = 3] = "ByNewest";
|
|
508
|
-
OrderByOptions[OrderByOptions["BySize"] = 4] = "BySize";
|
|
509
|
-
})(exports.OrderByOptions || (exports.OrderByOptions = {}));
|
|
510
|
-
|
|
511
|
-
exports.OwnershipTypeEnum = void 0;
|
|
512
|
-
(function (OwnershipTypeEnum) {
|
|
513
|
-
OwnershipTypeEnum[OwnershipTypeEnum["NotMapped"] = -1] = "NotMapped";
|
|
514
|
-
OwnershipTypeEnum[OwnershipTypeEnum["CoOp"] = 1] = "CoOp";
|
|
515
|
-
OwnershipTypeEnum[OwnershipTypeEnum["CondoMinium"] = 2] = "CondoMinium";
|
|
516
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Corporation"] = 3] = "Corporation";
|
|
517
|
-
OwnershipTypeEnum[OwnershipTypeEnum["FeeSimple"] = 4] = "FeeSimple";
|
|
518
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Fractional"] = 5] = "Fractional";
|
|
519
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Franchise"] = 6] = "Franchise";
|
|
520
|
-
OwnershipTypeEnum[OwnershipTypeEnum["HomeownerAssociation"] = 7] = "HomeownerAssociation";
|
|
521
|
-
OwnershipTypeEnum[OwnershipTypeEnum["JointTenancy"] = 8] = "JointTenancy";
|
|
522
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Partnership"] = 9] = "Partnership";
|
|
523
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Private"] = 10] = "Private";
|
|
524
|
-
OwnershipTypeEnum[OwnershipTypeEnum["SoleProprietor"] = 11] = "SoleProprietor";
|
|
525
|
-
OwnershipTypeEnum[OwnershipTypeEnum["TenancyByEntirety"] = 12] = "TenancyByEntirety";
|
|
526
|
-
OwnershipTypeEnum[OwnershipTypeEnum["TenancyInCommon"] = 13] = "TenancyInCommon";
|
|
527
|
-
OwnershipTypeEnum[OwnershipTypeEnum["Timeshare"] = 14] = "Timeshare";
|
|
528
|
-
OwnershipTypeEnum[OwnershipTypeEnum["LimitedPartnership"] = 15] = "LimitedPartnership";
|
|
529
|
-
OwnershipTypeEnum[OwnershipTypeEnum["REO"] = 16] = "REO";
|
|
530
|
-
OwnershipTypeEnum[OwnershipTypeEnum["CorporateRELOOwned"] = 17] = "CorporateRELOOwned";
|
|
531
|
-
OwnershipTypeEnum[OwnershipTypeEnum["HUDOwned"] = 18] = "HUDOwned";
|
|
532
|
-
OwnershipTypeEnum[OwnershipTypeEnum["VAOwned"] = 19] = "VAOwned";
|
|
533
|
-
})(exports.OwnershipTypeEnum || (exports.OwnershipTypeEnum = {}));
|
|
534
|
-
// // Usage example
|
|
535
|
-
// const ownershipType: OwnershipTypeEnum = OwnershipTypeEnum.FeeSimple;
|
|
536
|
-
// console.log(ownershipTypeEnumDisplayNames[ownershipType]); // "Fee Simple"
|
|
537
|
-
|
|
538
|
-
exports.PhysicalPropertyTypeEnum = void 0;
|
|
539
|
-
(function (PhysicalPropertyTypeEnum) {
|
|
540
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["NotMapped"] = -1] = "NotMapped";
|
|
541
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Other"] = 0] = "Other";
|
|
542
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["HighRise"] = 1] = "HighRise";
|
|
543
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Apartment"] = 2] = "Apartment";
|
|
544
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Attached"] = 3] = "Attached";
|
|
545
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CoOp"] = 4] = "CoOp";
|
|
546
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Condominium"] = 5] = "Condominium";
|
|
547
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["DetachedSingle"] = 6] = "DetachedSingle";
|
|
548
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Duplex"] = 7] = "Duplex";
|
|
549
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Fourplex"] = 8] = "Fourplex";
|
|
550
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ManufacturedHome"] = 9] = "ManufacturedHome";
|
|
551
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MixedUse"] = 10] = "MixedUse";
|
|
552
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MobileHome"] = 11] = "MobileHome";
|
|
553
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ModularHome"] = 12] = "ModularHome";
|
|
554
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultiFamily"] = 13] = "MultiFamily";
|
|
555
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Residential"] = 14] = "Residential";
|
|
556
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamily"] = 15] = "SingleFamily";
|
|
557
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Timeshare"] = 16] = "Timeshare";
|
|
558
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Townhouse"] = 17] = "Townhouse";
|
|
559
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Triplex"] = 18] = "Triplex";
|
|
560
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Villa"] = 19] = "Villa";
|
|
561
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AgriculturalLand"] = 20] = "AgriculturalLand";
|
|
562
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["BoatSlip"] = 21] = "BoatSlip";
|
|
563
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Business"] = 22] = "Business";
|
|
564
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Commercial"] = 23] = "Commercial";
|
|
565
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["DeededParking"] = 24] = "DeededParking";
|
|
566
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Farm"] = 25] = "Farm";
|
|
567
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["HotelMotel"] = 26] = "HotelMotel";
|
|
568
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Industrial"] = 27] = "Industrial";
|
|
569
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Office"] = 28] = "Office";
|
|
570
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Recreation"] = 29] = "Recreation";
|
|
571
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Restaurant"] = 30] = "Restaurant";
|
|
572
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Retail"] = 31] = "Retail";
|
|
573
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SitePlanned"] = 32] = "SitePlanned";
|
|
574
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SpecialPurpose"] = 33] = "SpecialPurpose";
|
|
575
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["StockCooperative"] = 34] = "StockCooperative";
|
|
576
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Warehouse"] = 35] = "Warehouse";
|
|
577
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CommercialLand"] = 36] = "CommercialLand";
|
|
578
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ImprovedLand"] = 37] = "ImprovedLand";
|
|
579
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Land"] = 38] = "Land";
|
|
580
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultifamilyLot"] = 39] = "MultifamilyLot";
|
|
581
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultipleParcels"] = 40] = "MultipleParcels";
|
|
582
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RVLot"] = 41] = "RVLot";
|
|
583
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamilyLot"] = 42] = "SingleFamilyLot";
|
|
584
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["UnimprovedLand"] = 43] = "UnimprovedLand";
|
|
585
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RanchLand"] = 44] = "RanchLand";
|
|
586
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AccessoryApartment"] = 45] = "AccessoryApartment";
|
|
587
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["GarageApartment"] = 46] = "GarageApartment";
|
|
588
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["PUD"] = 47] = "PUD";
|
|
589
|
-
})(exports.PhysicalPropertyTypeEnum || (exports.PhysicalPropertyTypeEnum = {}));
|
|
590
|
-
// Usage example
|
|
591
|
-
// const propertyType: PhysicalPropertyTypeEnum = PhysicalPropertyTypeEnum.DetachedSingleFamilyResidence;
|
|
592
|
-
// console.log(physicalPropertyTypeEnumDisplayNames[propertyType]); // "Detached single family residence"
|
|
593
|
-
|
|
594
|
-
exports.PhysicalPropertyClassEnum = void 0;
|
|
595
|
-
(function (PhysicalPropertyClassEnum) {
|
|
596
|
-
PhysicalPropertyClassEnum[PhysicalPropertyClassEnum["Residential"] = 0] = "Residential";
|
|
597
|
-
PhysicalPropertyClassEnum[PhysicalPropertyClassEnum["NonResidential"] = 1] = "NonResidential";
|
|
598
|
-
PhysicalPropertyClassEnum[PhysicalPropertyClassEnum["Land"] = 2] = "Land";
|
|
599
|
-
PhysicalPropertyClassEnum[PhysicalPropertyClassEnum["Other"] = 3] = "Other";
|
|
600
|
-
})(exports.PhysicalPropertyClassEnum || (exports.PhysicalPropertyClassEnum = {}));
|
|
601
|
-
|
|
602
|
-
exports.PlatformEnum = void 0;
|
|
603
|
-
(function (PlatformEnum) {
|
|
604
|
-
PlatformEnum[PlatformEnum["None"] = 0] = "None";
|
|
605
|
-
PlatformEnum[PlatformEnum["Bridge"] = 1] = "Bridge";
|
|
606
|
-
PlatformEnum[PlatformEnum["Trestle"] = 2] = "Trestle";
|
|
607
|
-
PlatformEnum[PlatformEnum["Spark"] = 3] = "Spark";
|
|
608
|
-
})(exports.PlatformEnum || (exports.PlatformEnum = {}));
|
|
609
|
-
|
|
610
|
-
exports.ProcessingStatusEnum = void 0;
|
|
611
|
-
(function (ProcessingStatusEnum) {
|
|
612
|
-
ProcessingStatusEnum[ProcessingStatusEnum["Processing"] = -2] = "Processing";
|
|
613
|
-
ProcessingStatusEnum[ProcessingStatusEnum["NotReady"] = -1] = "NotReady";
|
|
614
|
-
ProcessingStatusEnum[ProcessingStatusEnum["NotProcessed"] = 0] = "NotProcessed";
|
|
615
|
-
ProcessingStatusEnum[ProcessingStatusEnum["Processed"] = 1] = "Processed";
|
|
616
|
-
ProcessingStatusEnum[ProcessingStatusEnum["Skipped"] = 2] = "Skipped";
|
|
617
|
-
ProcessingStatusEnum[ProcessingStatusEnum["Failed"] = 3] = "Failed";
|
|
618
|
-
})(exports.ProcessingStatusEnum || (exports.ProcessingStatusEnum = {}));
|
|
619
|
-
|
|
620
|
-
exports.ProcessingTypeEnum = void 0;
|
|
621
|
-
(function (ProcessingTypeEnum) {
|
|
622
|
-
ProcessingTypeEnum[ProcessingTypeEnum["ImageProcessing"] = 1] = "ImageProcessing";
|
|
623
|
-
ProcessingTypeEnum[ProcessingTypeEnum["NLProcessing"] = 2] = "NLProcessing";
|
|
624
|
-
ProcessingTypeEnum[ProcessingTypeEnum["GeoProcessing"] = 3] = "GeoProcessing";
|
|
625
|
-
})(exports.ProcessingTypeEnum || (exports.ProcessingTypeEnum = {}));
|
|
626
|
-
|
|
627
|
-
exports.PropertyConditionEnum = void 0;
|
|
628
|
-
(function (PropertyConditionEnum) {
|
|
629
|
-
PropertyConditionEnum[PropertyConditionEnum["NotMapped"] = -1] = "NotMapped";
|
|
630
|
-
PropertyConditionEnum[PropertyConditionEnum["ToBeBuilt"] = 1] = "ToBeBuilt";
|
|
631
|
-
PropertyConditionEnum[PropertyConditionEnum["UnderConstruction"] = 2] = "UnderConstruction";
|
|
632
|
-
PropertyConditionEnum[PropertyConditionEnum["Resale"] = 3] = "Resale";
|
|
633
|
-
PropertyConditionEnum[PropertyConditionEnum["NewConstruction"] = 4] = "NewConstruction";
|
|
634
|
-
PropertyConditionEnum[PropertyConditionEnum["UpdatedOrRemodeled"] = 5] = "UpdatedOrRemodeled";
|
|
635
|
-
PropertyConditionEnum[PropertyConditionEnum["TeardownValueinLand"] = 6] = "TeardownValueinLand";
|
|
636
|
-
PropertyConditionEnum[PropertyConditionEnum["FixerUpper"] = 7] = "FixerUpper";
|
|
637
|
-
PropertyConditionEnum[PropertyConditionEnum["Good"] = 8] = "Good";
|
|
638
|
-
PropertyConditionEnum[PropertyConditionEnum["Excellent"] = 9] = "Excellent";
|
|
639
|
-
PropertyConditionEnum[PropertyConditionEnum["VeryGood"] = 10] = "VeryGood";
|
|
640
|
-
PropertyConditionEnum[PropertyConditionEnum["Poor"] = 11] = "Poor";
|
|
641
|
-
PropertyConditionEnum[PropertyConditionEnum["Average"] = 12] = "Average";
|
|
642
|
-
PropertyConditionEnum[PropertyConditionEnum["Unknown"] = 13] = "Unknown";
|
|
643
|
-
PropertyConditionEnum[PropertyConditionEnum["SeeRemarks"] = 14] = "SeeRemarks";
|
|
644
|
-
})(exports.PropertyConditionEnum || (exports.PropertyConditionEnum = {}));
|
|
645
|
-
// Usage example
|
|
646
|
-
// const condition: PropertyConditionEnum = PropertyConditionEnum.NewConstruction;
|
|
647
|
-
// console.log(propertyConditionEnumDisplayNames[condition]); // "New Construction"
|
|
648
|
-
|
|
649
|
-
exports.PropertyLevelEnum = void 0;
|
|
650
|
-
(function (PropertyLevelEnum) {
|
|
651
|
-
PropertyLevelEnum[PropertyLevelEnum["NotMapped"] = -1] = "NotMapped";
|
|
652
|
-
PropertyLevelEnum[PropertyLevelEnum["Other"] = 0] = "Other";
|
|
653
|
-
PropertyLevelEnum[PropertyLevelEnum["One"] = 1] = "One";
|
|
654
|
-
PropertyLevelEnum[PropertyLevelEnum["Two"] = 2] = "Two";
|
|
655
|
-
PropertyLevelEnum[PropertyLevelEnum["OneAndHalf"] = 3] = "OneAndHalf";
|
|
656
|
-
PropertyLevelEnum[PropertyLevelEnum["TwoAndHalf"] = 4] = "TwoAndHalf";
|
|
657
|
-
PropertyLevelEnum[PropertyLevelEnum["ThreeOrMore"] = 5] = "ThreeOrMore";
|
|
658
|
-
PropertyLevelEnum[PropertyLevelEnum["SplitLevel"] = 6] = "SplitLevel";
|
|
659
|
-
PropertyLevelEnum[PropertyLevelEnum["SplitEntry"] = 7] = "SplitEntry";
|
|
660
|
-
PropertyLevelEnum[PropertyLevelEnum["FrontToBackSplit"] = 8] = "FrontToBackSplit";
|
|
661
|
-
})(exports.PropertyLevelEnum || (exports.PropertyLevelEnum = {}));
|
|
662
|
-
// Usage example
|
|
663
|
-
// const level: PropertyLevelEnum = PropertyLevelEnum.Two;
|
|
664
|
-
// console.log(propertyLevelEnumDisplayNames[level]);
|
|
665
|
-
|
|
666
|
-
exports.StreetSuffixEnum = void 0;
|
|
667
|
-
(function (StreetSuffixEnum) {
|
|
668
|
-
StreetSuffixEnum[StreetSuffixEnum["NotMapped"] = -1] = "NotMapped";
|
|
669
|
-
StreetSuffixEnum[StreetSuffixEnum["Alley"] = 1] = "Alley";
|
|
670
|
-
StreetSuffixEnum[StreetSuffixEnum["Anex"] = 2] = "Anex";
|
|
671
|
-
StreetSuffixEnum[StreetSuffixEnum["Arcade"] = 3] = "Arcade";
|
|
672
|
-
StreetSuffixEnum[StreetSuffixEnum["Avenue"] = 4] = "Avenue";
|
|
673
|
-
StreetSuffixEnum[StreetSuffixEnum["Bayou"] = 5] = "Bayou";
|
|
674
|
-
StreetSuffixEnum[StreetSuffixEnum["Beach"] = 6] = "Beach";
|
|
675
|
-
StreetSuffixEnum[StreetSuffixEnum["Bend"] = 7] = "Bend";
|
|
676
|
-
StreetSuffixEnum[StreetSuffixEnum["Bluff"] = 8] = "Bluff";
|
|
677
|
-
StreetSuffixEnum[StreetSuffixEnum["Bluffs"] = 9] = "Bluffs";
|
|
678
|
-
StreetSuffixEnum[StreetSuffixEnum["Bottom"] = 10] = "Bottom";
|
|
679
|
-
StreetSuffixEnum[StreetSuffixEnum["Boulevard"] = 11] = "Boulevard";
|
|
680
|
-
StreetSuffixEnum[StreetSuffixEnum["Branch"] = 12] = "Branch";
|
|
681
|
-
StreetSuffixEnum[StreetSuffixEnum["Bridge"] = 13] = "Bridge";
|
|
682
|
-
StreetSuffixEnum[StreetSuffixEnum["Brook"] = 14] = "Brook";
|
|
683
|
-
StreetSuffixEnum[StreetSuffixEnum["Bypass"] = 15] = "Bypass";
|
|
684
|
-
StreetSuffixEnum[StreetSuffixEnum["Camp"] = 16] = "Camp";
|
|
685
|
-
StreetSuffixEnum[StreetSuffixEnum["Canyon"] = 17] = "Canyon";
|
|
686
|
-
StreetSuffixEnum[StreetSuffixEnum["Cape"] = 18] = "Cape";
|
|
687
|
-
StreetSuffixEnum[StreetSuffixEnum["Causeway"] = 19] = "Causeway";
|
|
688
|
-
StreetSuffixEnum[StreetSuffixEnum["Center"] = 20] = "Center";
|
|
689
|
-
StreetSuffixEnum[StreetSuffixEnum["Circle"] = 21] = "Circle";
|
|
690
|
-
StreetSuffixEnum[StreetSuffixEnum["Circles"] = 22] = "Circles";
|
|
691
|
-
StreetSuffixEnum[StreetSuffixEnum["Cliff"] = 23] = "Cliff";
|
|
692
|
-
StreetSuffixEnum[StreetSuffixEnum["Cliffs"] = 24] = "Cliffs";
|
|
693
|
-
StreetSuffixEnum[StreetSuffixEnum["Club"] = 25] = "Club";
|
|
694
|
-
StreetSuffixEnum[StreetSuffixEnum["Common"] = 26] = "Common";
|
|
695
|
-
StreetSuffixEnum[StreetSuffixEnum["Commons"] = 27] = "Commons";
|
|
696
|
-
StreetSuffixEnum[StreetSuffixEnum["Corner"] = 28] = "Corner";
|
|
697
|
-
StreetSuffixEnum[StreetSuffixEnum["Corners"] = 29] = "Corners";
|
|
698
|
-
StreetSuffixEnum[StreetSuffixEnum["Course"] = 30] = "Course";
|
|
699
|
-
StreetSuffixEnum[StreetSuffixEnum["Court"] = 31] = "Court";
|
|
700
|
-
StreetSuffixEnum[StreetSuffixEnum["Courts"] = 32] = "Courts";
|
|
701
|
-
StreetSuffixEnum[StreetSuffixEnum["Cove"] = 33] = "Cove";
|
|
702
|
-
StreetSuffixEnum[StreetSuffixEnum["Coves"] = 34] = "Coves";
|
|
703
|
-
StreetSuffixEnum[StreetSuffixEnum["Creek"] = 35] = "Creek";
|
|
704
|
-
StreetSuffixEnum[StreetSuffixEnum["Crescent"] = 36] = "Crescent";
|
|
705
|
-
StreetSuffixEnum[StreetSuffixEnum["Crest"] = 37] = "Crest";
|
|
706
|
-
StreetSuffixEnum[StreetSuffixEnum["Crossing"] = 38] = "Crossing";
|
|
707
|
-
StreetSuffixEnum[StreetSuffixEnum["Crossroad"] = 39] = "Crossroad";
|
|
708
|
-
StreetSuffixEnum[StreetSuffixEnum["Crossroads"] = 40] = "Crossroads";
|
|
709
|
-
StreetSuffixEnum[StreetSuffixEnum["Curve"] = 41] = "Curve";
|
|
710
|
-
StreetSuffixEnum[StreetSuffixEnum["Dale"] = 42] = "Dale";
|
|
711
|
-
StreetSuffixEnum[StreetSuffixEnum["Dam"] = 43] = "Dam";
|
|
712
|
-
StreetSuffixEnum[StreetSuffixEnum["Divide"] = 44] = "Divide";
|
|
713
|
-
StreetSuffixEnum[StreetSuffixEnum["Drive"] = 45] = "Drive";
|
|
714
|
-
StreetSuffixEnum[StreetSuffixEnum["Drives"] = 46] = "Drives";
|
|
715
|
-
StreetSuffixEnum[StreetSuffixEnum["Estate"] = 47] = "Estate";
|
|
716
|
-
StreetSuffixEnum[StreetSuffixEnum["Estates"] = 48] = "Estates";
|
|
717
|
-
StreetSuffixEnum[StreetSuffixEnum["Expressway"] = 49] = "Expressway";
|
|
718
|
-
StreetSuffixEnum[StreetSuffixEnum["Extension"] = 50] = "Extension";
|
|
719
|
-
StreetSuffixEnum[StreetSuffixEnum["Fall"] = 51] = "Fall";
|
|
720
|
-
StreetSuffixEnum[StreetSuffixEnum["Falls"] = 52] = "Falls";
|
|
721
|
-
StreetSuffixEnum[StreetSuffixEnum["Ferry"] = 53] = "Ferry";
|
|
722
|
-
StreetSuffixEnum[StreetSuffixEnum["Field"] = 54] = "Field";
|
|
723
|
-
StreetSuffixEnum[StreetSuffixEnum["Fields"] = 55] = "Fields";
|
|
724
|
-
StreetSuffixEnum[StreetSuffixEnum["Flat"] = 56] = "Flat";
|
|
725
|
-
StreetSuffixEnum[StreetSuffixEnum["Flats"] = 57] = "Flats";
|
|
726
|
-
StreetSuffixEnum[StreetSuffixEnum["Ford"] = 58] = "Ford";
|
|
727
|
-
StreetSuffixEnum[StreetSuffixEnum["Forest"] = 59] = "Forest";
|
|
728
|
-
StreetSuffixEnum[StreetSuffixEnum["Forge"] = 60] = "Forge";
|
|
729
|
-
StreetSuffixEnum[StreetSuffixEnum["Fork"] = 61] = "Fork";
|
|
730
|
-
StreetSuffixEnum[StreetSuffixEnum["Fort"] = 62] = "Fort";
|
|
731
|
-
StreetSuffixEnum[StreetSuffixEnum["Freeway"] = 63] = "Freeway";
|
|
732
|
-
StreetSuffixEnum[StreetSuffixEnum["Garden"] = 64] = "Garden";
|
|
733
|
-
StreetSuffixEnum[StreetSuffixEnum["Gardens"] = 65] = "Gardens";
|
|
734
|
-
StreetSuffixEnum[StreetSuffixEnum["Gateway"] = 66] = "Gateway";
|
|
735
|
-
StreetSuffixEnum[StreetSuffixEnum["Glen"] = 67] = "Glen";
|
|
736
|
-
StreetSuffixEnum[StreetSuffixEnum["Green"] = 68] = "Green";
|
|
737
|
-
StreetSuffixEnum[StreetSuffixEnum["Greens"] = 69] = "Greens";
|
|
738
|
-
StreetSuffixEnum[StreetSuffixEnum["Grove"] = 70] = "Grove";
|
|
739
|
-
StreetSuffixEnum[StreetSuffixEnum["Harbor"] = 71] = "Harbor";
|
|
740
|
-
StreetSuffixEnum[StreetSuffixEnum["Haven"] = 72] = "Haven";
|
|
741
|
-
StreetSuffixEnum[StreetSuffixEnum["Heights"] = 73] = "Heights";
|
|
742
|
-
StreetSuffixEnum[StreetSuffixEnum["Highway"] = 74] = "Highway";
|
|
743
|
-
StreetSuffixEnum[StreetSuffixEnum["Hill"] = 75] = "Hill";
|
|
744
|
-
StreetSuffixEnum[StreetSuffixEnum["Hills"] = 76] = "Hills";
|
|
745
|
-
StreetSuffixEnum[StreetSuffixEnum["Hollow"] = 77] = "Hollow";
|
|
746
|
-
StreetSuffixEnum[StreetSuffixEnum["Island"] = 78] = "Island";
|
|
747
|
-
StreetSuffixEnum[StreetSuffixEnum["Islands"] = 79] = "Islands";
|
|
748
|
-
StreetSuffixEnum[StreetSuffixEnum["Isle"] = 80] = "Isle";
|
|
749
|
-
StreetSuffixEnum[StreetSuffixEnum["Junction"] = 81] = "Junction";
|
|
750
|
-
StreetSuffixEnum[StreetSuffixEnum["Key"] = 82] = "Key";
|
|
751
|
-
StreetSuffixEnum[StreetSuffixEnum["Knoll"] = 83] = "Knoll";
|
|
752
|
-
StreetSuffixEnum[StreetSuffixEnum["Knolls"] = 84] = "Knolls";
|
|
753
|
-
StreetSuffixEnum[StreetSuffixEnum["Lake"] = 85] = "Lake";
|
|
754
|
-
StreetSuffixEnum[StreetSuffixEnum["Lakes"] = 86] = "Lakes";
|
|
755
|
-
StreetSuffixEnum[StreetSuffixEnum["Land"] = 87] = "Land";
|
|
756
|
-
StreetSuffixEnum[StreetSuffixEnum["Landing"] = 88] = "Landing";
|
|
757
|
-
StreetSuffixEnum[StreetSuffixEnum["Lane"] = 89] = "Lane";
|
|
758
|
-
StreetSuffixEnum[StreetSuffixEnum["Light"] = 90] = "Light";
|
|
759
|
-
StreetSuffixEnum[StreetSuffixEnum["Lights"] = 91] = "Lights";
|
|
760
|
-
StreetSuffixEnum[StreetSuffixEnum["Lock"] = 92] = "Lock";
|
|
761
|
-
StreetSuffixEnum[StreetSuffixEnum["Lodge"] = 93] = "Lodge";
|
|
762
|
-
StreetSuffixEnum[StreetSuffixEnum["Loop"] = 94] = "Loop";
|
|
763
|
-
StreetSuffixEnum[StreetSuffixEnum["Mall"] = 95] = "Mall";
|
|
764
|
-
StreetSuffixEnum[StreetSuffixEnum["Manor"] = 96] = "Manor";
|
|
765
|
-
StreetSuffixEnum[StreetSuffixEnum["Meadow"] = 97] = "Meadow";
|
|
766
|
-
StreetSuffixEnum[StreetSuffixEnum["Meadows"] = 98] = "Meadows";
|
|
767
|
-
StreetSuffixEnum[StreetSuffixEnum["Mews"] = 99] = "Mews";
|
|
768
|
-
StreetSuffixEnum[StreetSuffixEnum["Mill"] = 100] = "Mill";
|
|
769
|
-
StreetSuffixEnum[StreetSuffixEnum["Mills"] = 101] = "Mills";
|
|
770
|
-
StreetSuffixEnum[StreetSuffixEnum["Mission"] = 102] = "Mission";
|
|
771
|
-
StreetSuffixEnum[StreetSuffixEnum["Mount"] = 103] = "Mount";
|
|
772
|
-
StreetSuffixEnum[StreetSuffixEnum["Mountain"] = 104] = "Mountain";
|
|
773
|
-
StreetSuffixEnum[StreetSuffixEnum["Neck"] = 105] = "Neck";
|
|
774
|
-
StreetSuffixEnum[StreetSuffixEnum["Orchard"] = 106] = "Orchard";
|
|
775
|
-
StreetSuffixEnum[StreetSuffixEnum["Oval"] = 107] = "Oval";
|
|
776
|
-
StreetSuffixEnum[StreetSuffixEnum["Overpass"] = 108] = "Overpass";
|
|
777
|
-
StreetSuffixEnum[StreetSuffixEnum["Park"] = 109] = "Park";
|
|
778
|
-
StreetSuffixEnum[StreetSuffixEnum["Parkway"] = 110] = "Parkway";
|
|
779
|
-
StreetSuffixEnum[StreetSuffixEnum["Pass"] = 111] = "Pass";
|
|
780
|
-
StreetSuffixEnum[StreetSuffixEnum["Passage"] = 112] = "Passage";
|
|
781
|
-
StreetSuffixEnum[StreetSuffixEnum["Path"] = 113] = "Path";
|
|
782
|
-
StreetSuffixEnum[StreetSuffixEnum["Pike"] = 114] = "Pike";
|
|
783
|
-
StreetSuffixEnum[StreetSuffixEnum["Pine"] = 115] = "Pine";
|
|
784
|
-
StreetSuffixEnum[StreetSuffixEnum["Pines"] = 116] = "Pines";
|
|
785
|
-
StreetSuffixEnum[StreetSuffixEnum["Place"] = 117] = "Place";
|
|
786
|
-
StreetSuffixEnum[StreetSuffixEnum["Plain"] = 118] = "Plain";
|
|
787
|
-
StreetSuffixEnum[StreetSuffixEnum["Plains"] = 119] = "Plains";
|
|
788
|
-
StreetSuffixEnum[StreetSuffixEnum["Plaza"] = 120] = "Plaza";
|
|
789
|
-
StreetSuffixEnum[StreetSuffixEnum["Point"] = 121] = "Point";
|
|
790
|
-
StreetSuffixEnum[StreetSuffixEnum["Port"] = 122] = "Port";
|
|
791
|
-
StreetSuffixEnum[StreetSuffixEnum["Prairie"] = 123] = "Prairie";
|
|
792
|
-
StreetSuffixEnum[StreetSuffixEnum["Radial"] = 124] = "Radial";
|
|
793
|
-
StreetSuffixEnum[StreetSuffixEnum["Ranch"] = 125] = "Ranch";
|
|
794
|
-
StreetSuffixEnum[StreetSuffixEnum["Rapid"] = 126] = "Rapid";
|
|
795
|
-
StreetSuffixEnum[StreetSuffixEnum["Rapids"] = 127] = "Rapids";
|
|
796
|
-
StreetSuffixEnum[StreetSuffixEnum["Rest"] = 128] = "Rest";
|
|
797
|
-
StreetSuffixEnum[StreetSuffixEnum["Ridge"] = 129] = "Ridge";
|
|
798
|
-
StreetSuffixEnum[StreetSuffixEnum["Ridges"] = 130] = "Ridges";
|
|
799
|
-
StreetSuffixEnum[StreetSuffixEnum["River"] = 131] = "River";
|
|
800
|
-
StreetSuffixEnum[StreetSuffixEnum["Road"] = 132] = "Road";
|
|
801
|
-
StreetSuffixEnum[StreetSuffixEnum["Roads"] = 133] = "Roads";
|
|
802
|
-
StreetSuffixEnum[StreetSuffixEnum["Route"] = 134] = "Route";
|
|
803
|
-
StreetSuffixEnum[StreetSuffixEnum["Row"] = 135] = "Row";
|
|
804
|
-
StreetSuffixEnum[StreetSuffixEnum["Rue"] = 136] = "Rue";
|
|
805
|
-
StreetSuffixEnum[StreetSuffixEnum["Run"] = 137] = "Run";
|
|
806
|
-
StreetSuffixEnum[StreetSuffixEnum["Shoal"] = 138] = "Shoal";
|
|
807
|
-
StreetSuffixEnum[StreetSuffixEnum["Shore"] = 139] = "Shore";
|
|
808
|
-
StreetSuffixEnum[StreetSuffixEnum["Shores"] = 140] = "Shores";
|
|
809
|
-
StreetSuffixEnum[StreetSuffixEnum["Skyway"] = 141] = "Skyway";
|
|
810
|
-
StreetSuffixEnum[StreetSuffixEnum["Spring"] = 142] = "Spring";
|
|
811
|
-
StreetSuffixEnum[StreetSuffixEnum["Springs"] = 143] = "Springs";
|
|
812
|
-
StreetSuffixEnum[StreetSuffixEnum["Spur"] = 144] = "Spur";
|
|
813
|
-
StreetSuffixEnum[StreetSuffixEnum["Square"] = 145] = "Square";
|
|
814
|
-
StreetSuffixEnum[StreetSuffixEnum["Station"] = 146] = "Station";
|
|
815
|
-
StreetSuffixEnum[StreetSuffixEnum["Stravenue"] = 147] = "Stravenue";
|
|
816
|
-
StreetSuffixEnum[StreetSuffixEnum["Stream"] = 148] = "Stream";
|
|
817
|
-
StreetSuffixEnum[StreetSuffixEnum["Street"] = 149] = "Street";
|
|
818
|
-
StreetSuffixEnum[StreetSuffixEnum["Streets"] = 150] = "Streets";
|
|
819
|
-
StreetSuffixEnum[StreetSuffixEnum["Summit"] = 151] = "Summit";
|
|
820
|
-
StreetSuffixEnum[StreetSuffixEnum["Terrace"] = 152] = "Terrace";
|
|
821
|
-
StreetSuffixEnum[StreetSuffixEnum["Trace"] = 153] = "Trace";
|
|
822
|
-
StreetSuffixEnum[StreetSuffixEnum["Track"] = 154] = "Track";
|
|
823
|
-
StreetSuffixEnum[StreetSuffixEnum["Trail"] = 155] = "Trail";
|
|
824
|
-
StreetSuffixEnum[StreetSuffixEnum["Trailer"] = 156] = "Trailer";
|
|
825
|
-
StreetSuffixEnum[StreetSuffixEnum["Turnpike"] = 157] = "Turnpike";
|
|
826
|
-
StreetSuffixEnum[StreetSuffixEnum["Valley"] = 158] = "Valley";
|
|
827
|
-
StreetSuffixEnum[StreetSuffixEnum["Viaduct"] = 159] = "Viaduct";
|
|
828
|
-
StreetSuffixEnum[StreetSuffixEnum["View"] = 160] = "View";
|
|
829
|
-
StreetSuffixEnum[StreetSuffixEnum["Views"] = 161] = "Views";
|
|
830
|
-
StreetSuffixEnum[StreetSuffixEnum["Village"] = 162] = "Village";
|
|
831
|
-
StreetSuffixEnum[StreetSuffixEnum["Villages"] = 163] = "Villages";
|
|
832
|
-
StreetSuffixEnum[StreetSuffixEnum["Ville"] = 164] = "Ville";
|
|
833
|
-
StreetSuffixEnum[StreetSuffixEnum["Vista"] = 165] = "Vista";
|
|
834
|
-
StreetSuffixEnum[StreetSuffixEnum["Walk"] = 166] = "Walk";
|
|
835
|
-
StreetSuffixEnum[StreetSuffixEnum["Way"] = 167] = "Way";
|
|
836
|
-
StreetSuffixEnum[StreetSuffixEnum["Ways"] = 168] = "Ways";
|
|
837
|
-
StreetSuffixEnum[StreetSuffixEnum["Well"] = 169] = "Well";
|
|
838
|
-
StreetSuffixEnum[StreetSuffixEnum["Wells"] = 170] = "Wells";
|
|
839
|
-
StreetSuffixEnum[StreetSuffixEnum["Brooks"] = 171] = "Brooks";
|
|
840
|
-
StreetSuffixEnum[StreetSuffixEnum["Burg"] = 172] = "Burg";
|
|
841
|
-
StreetSuffixEnum[StreetSuffixEnum["Burgs"] = 173] = "Burgs";
|
|
842
|
-
StreetSuffixEnum[StreetSuffixEnum["Centers"] = 174] = "Centers";
|
|
843
|
-
StreetSuffixEnum[StreetSuffixEnum["Extensions"] = 175] = "Extensions";
|
|
844
|
-
StreetSuffixEnum[StreetSuffixEnum["Fords"] = 176] = "Fords";
|
|
845
|
-
StreetSuffixEnum[StreetSuffixEnum["Forges"] = 177] = "Forges";
|
|
846
|
-
StreetSuffixEnum[StreetSuffixEnum["Forks"] = 178] = "Forks";
|
|
847
|
-
StreetSuffixEnum[StreetSuffixEnum["Glens"] = 179] = "Glens";
|
|
848
|
-
StreetSuffixEnum[StreetSuffixEnum["Groves"] = 180] = "Groves";
|
|
849
|
-
StreetSuffixEnum[StreetSuffixEnum["Harbors"] = 181] = "Harbors";
|
|
850
|
-
StreetSuffixEnum[StreetSuffixEnum["Inlet"] = 182] = "Inlet";
|
|
851
|
-
StreetSuffixEnum[StreetSuffixEnum["Junctions"] = 183] = "Junctions";
|
|
852
|
-
StreetSuffixEnum[StreetSuffixEnum["Keys"] = 184] = "Keys";
|
|
853
|
-
StreetSuffixEnum[StreetSuffixEnum["Loaf"] = 185] = "Loaf";
|
|
854
|
-
StreetSuffixEnum[StreetSuffixEnum["Locks"] = 186] = "Locks";
|
|
855
|
-
StreetSuffixEnum[StreetSuffixEnum["Manors"] = 187] = "Manors";
|
|
856
|
-
StreetSuffixEnum[StreetSuffixEnum["Motorway"] = 188] = "Motorway";
|
|
857
|
-
StreetSuffixEnum[StreetSuffixEnum["Mountains"] = 189] = "Mountains";
|
|
858
|
-
StreetSuffixEnum[StreetSuffixEnum["Parks"] = 190] = "Parks";
|
|
859
|
-
StreetSuffixEnum[StreetSuffixEnum["Parkways"] = 191] = "Parkways";
|
|
860
|
-
StreetSuffixEnum[StreetSuffixEnum["Points"] = 192] = "Points";
|
|
861
|
-
StreetSuffixEnum[StreetSuffixEnum["Ports"] = 193] = "Ports";
|
|
862
|
-
StreetSuffixEnum[StreetSuffixEnum["Ramp"] = 194] = "Ramp";
|
|
863
|
-
StreetSuffixEnum[StreetSuffixEnum["Shoals"] = 195] = "Shoals";
|
|
864
|
-
StreetSuffixEnum[StreetSuffixEnum["Spurs"] = 196] = "Spurs";
|
|
865
|
-
StreetSuffixEnum[StreetSuffixEnum["Squares"] = 197] = "Squares";
|
|
866
|
-
StreetSuffixEnum[StreetSuffixEnum["Throughway"] = 198] = "Throughway";
|
|
867
|
-
StreetSuffixEnum[StreetSuffixEnum["Trafficway"] = 199] = "Trafficway";
|
|
868
|
-
StreetSuffixEnum[StreetSuffixEnum["Tunnel"] = 200] = "Tunnel";
|
|
869
|
-
StreetSuffixEnum[StreetSuffixEnum["Underpass"] = 201] = "Underpass";
|
|
870
|
-
StreetSuffixEnum[StreetSuffixEnum["Union"] = 202] = "Union";
|
|
871
|
-
StreetSuffixEnum[StreetSuffixEnum["Unions"] = 203] = "Unions";
|
|
872
|
-
StreetSuffixEnum[StreetSuffixEnum["Valleys"] = 204] = "Valleys";
|
|
873
|
-
StreetSuffixEnum[StreetSuffixEnum["Walks"] = 205] = "Walks";
|
|
874
|
-
StreetSuffixEnum[StreetSuffixEnum["Wall"] = 206] = "Wall";
|
|
875
|
-
StreetSuffixEnum[StreetSuffixEnum["AveCir"] = 207] = "AveCir";
|
|
876
|
-
StreetSuffixEnum[StreetSuffixEnum["AveCt"] = 208] = "AveCt";
|
|
877
|
-
StreetSuffixEnum[StreetSuffixEnum["AveDr"] = 209] = "AveDr";
|
|
878
|
-
StreetSuffixEnum[StreetSuffixEnum["AveLn"] = 210] = "AveLn";
|
|
879
|
-
StreetSuffixEnum[StreetSuffixEnum["AvePkwy"] = 211] = "AvePkwy";
|
|
880
|
-
StreetSuffixEnum[StreetSuffixEnum["AvePl"] = 212] = "AvePl";
|
|
881
|
-
StreetSuffixEnum[StreetSuffixEnum["AveRd"] = 213] = "AveRd";
|
|
882
|
-
StreetSuffixEnum[StreetSuffixEnum["AveWay"] = 214] = "AveWay";
|
|
883
|
-
StreetSuffixEnum[StreetSuffixEnum["Bay"] = 215] = "Bay";
|
|
884
|
-
StreetSuffixEnum[StreetSuffixEnum["Cay"] = 216] = "Cay";
|
|
885
|
-
StreetSuffixEnum[StreetSuffixEnum["CirCt"] = 217] = "CirCt";
|
|
886
|
-
StreetSuffixEnum[StreetSuffixEnum["CirDr"] = 218] = "CirDr";
|
|
887
|
-
StreetSuffixEnum[StreetSuffixEnum["Crossway"] = 219] = "Crossway";
|
|
888
|
-
StreetSuffixEnum[StreetSuffixEnum["CtRd"] = 220] = "CtRd";
|
|
889
|
-
StreetSuffixEnum[StreetSuffixEnum["DrRd"] = 221] = "DrRd";
|
|
890
|
-
StreetSuffixEnum[StreetSuffixEnum["LnCt"] = 222] = "LnCt";
|
|
891
|
-
StreetSuffixEnum[StreetSuffixEnum["LnRd"] = 223] = "LnRd";
|
|
892
|
-
StreetSuffixEnum[StreetSuffixEnum["PlCt"] = 224] = "PlCt";
|
|
893
|
-
StreetSuffixEnum[StreetSuffixEnum["PlDr"] = 225] = "PlDr";
|
|
894
|
-
StreetSuffixEnum[StreetSuffixEnum["SqDr"] = 226] = "SqDr";
|
|
895
|
-
StreetSuffixEnum[StreetSuffixEnum["StCir"] = 227] = "StCir";
|
|
896
|
-
StreetSuffixEnum[StreetSuffixEnum["StCt"] = 228] = "StCt";
|
|
897
|
-
StreetSuffixEnum[StreetSuffixEnum["StDr"] = 229] = "StDr";
|
|
898
|
-
StreetSuffixEnum[StreetSuffixEnum["StLn"] = 230] = "StLn";
|
|
899
|
-
StreetSuffixEnum[StreetSuffixEnum["StPl"] = 231] = "StPl";
|
|
900
|
-
StreetSuffixEnum[StreetSuffixEnum["StRd"] = 232] = "StRd";
|
|
901
|
-
StreetSuffixEnum[StreetSuffixEnum["Downs"] = 233] = "Downs";
|
|
902
|
-
StreetSuffixEnum[StreetSuffixEnum["Gate"] = 234] = "Gate";
|
|
903
|
-
StreetSuffixEnum[StreetSuffixEnum["Prom"] = 235] = "Prom";
|
|
904
|
-
StreetSuffixEnum[StreetSuffixEnum["Via"] = 236] = "Via";
|
|
905
|
-
StreetSuffixEnum[StreetSuffixEnum["Woods"] = 237] = "Woods";
|
|
906
|
-
StreetSuffixEnum[StreetSuffixEnum["Close"] = 238] = "Close";
|
|
907
|
-
StreetSuffixEnum[StreetSuffixEnum["Trails"] = 239] = "Trails";
|
|
908
|
-
StreetSuffixEnum[StreetSuffixEnum["Mile"] = 240] = "Mile";
|
|
909
|
-
StreetSuffixEnum[StreetSuffixEnum["Chase"] = 241] = "Chase";
|
|
910
|
-
StreetSuffixEnum[StreetSuffixEnum["LaneSpur"] = 242] = "LaneSpur";
|
|
911
|
-
})(exports.StreetSuffixEnum || (exports.StreetSuffixEnum = {}));
|
|
912
|
-
|
|
913
|
-
exports.StreetDirectionEnum = void 0;
|
|
914
|
-
(function (StreetDirectionEnum) {
|
|
915
|
-
StreetDirectionEnum[StreetDirectionEnum["NotMapped"] = -1] = "NotMapped";
|
|
916
|
-
StreetDirectionEnum[StreetDirectionEnum["North"] = 1] = "North";
|
|
917
|
-
StreetDirectionEnum[StreetDirectionEnum["NorthEast"] = 2] = "NorthEast";
|
|
918
|
-
StreetDirectionEnum[StreetDirectionEnum["East"] = 3] = "East";
|
|
919
|
-
StreetDirectionEnum[StreetDirectionEnum["SouthEast"] = 4] = "SouthEast";
|
|
920
|
-
StreetDirectionEnum[StreetDirectionEnum["South"] = 5] = "South";
|
|
921
|
-
StreetDirectionEnum[StreetDirectionEnum["SouthWest"] = 6] = "SouthWest";
|
|
922
|
-
StreetDirectionEnum[StreetDirectionEnum["West"] = 7] = "West";
|
|
923
|
-
StreetDirectionEnum[StreetDirectionEnum["NorthWest"] = 8] = "NorthWest";
|
|
924
|
-
})(exports.StreetDirectionEnum || (exports.StreetDirectionEnum = {}));
|
|
925
|
-
// Usage example
|
|
926
|
-
// const direction: StreetDirectionEnum = StreetDirectionEnum.East;
|
|
927
|
-
// console.log(streetDirectionEnumDisplayNames[direction]); // "E"
|
|
928
|
-
|
|
929
|
-
class CategoryModel {
|
|
930
|
-
constructor() {
|
|
931
|
-
this.id = 0;
|
|
932
|
-
this.name = '';
|
|
933
|
-
}
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
class FeatureModel {
|
|
937
|
-
constructor() {
|
|
938
|
-
this.id = 0;
|
|
939
|
-
this.name = '';
|
|
940
|
-
this.weight = 0;
|
|
941
|
-
this.category = null;
|
|
942
|
-
this.subCategory = null;
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
class SubCategoryModel {
|
|
947
|
-
constructor() {
|
|
948
|
-
this.id = 0;
|
|
949
|
-
this.name = '';
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
//Fully cleaned
|
|
954
|
-
class MlsInfoModel {
|
|
955
|
-
constructor() {
|
|
956
|
-
this.id = 0;
|
|
957
|
-
this.mls = '';
|
|
958
|
-
this.mlsName = '';
|
|
959
|
-
this.publicLogoUrl = '';
|
|
960
|
-
this.privateLogoUrl = '';
|
|
961
|
-
this.isLogoRequired = false;
|
|
962
|
-
}
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
class ListingModel {
|
|
966
|
-
constructor() {
|
|
967
|
-
this.id = 0;
|
|
968
|
-
this.availabilityDate = null;
|
|
969
|
-
this.buyerAgencyCompensation = null;
|
|
970
|
-
this.buyerFinancing = '';
|
|
971
|
-
this.closePrice = null;
|
|
972
|
-
this.closeTimestamp = null;
|
|
973
|
-
this.cumulativeDaysOnMarket = null;
|
|
974
|
-
this.currency = null;
|
|
975
|
-
this.daysOnMarket = null;
|
|
976
|
-
this.disclosures = '';
|
|
977
|
-
this.expirationDate = null;
|
|
978
|
-
this.internetAddressDisplayYN = null;
|
|
979
|
-
this.internetAutomatedValuationDisplayYN = null;
|
|
980
|
-
this.internetConsumerCommentYN = null;
|
|
981
|
-
this.internetEntireListingDisplayYN = null;
|
|
982
|
-
this.lastModificationTimestamp = null;
|
|
983
|
-
this.leaseTerm = '';
|
|
984
|
-
this.listingAgreement = '';
|
|
985
|
-
this.listingEntryTimestamp = null;
|
|
986
|
-
this.listingId = '';
|
|
987
|
-
this.listingService = '';
|
|
988
|
-
this.listingStatus = null;
|
|
989
|
-
this.listingTerms = '';
|
|
990
|
-
this.listingType = null;
|
|
991
|
-
this.listPrice = null;
|
|
992
|
-
this.pricePerSqFeet = null;
|
|
993
|
-
this.listPriceOriginal = null;
|
|
994
|
-
this.lockBoxLocation = '';
|
|
995
|
-
this.lockBoxSerialNumber = '';
|
|
996
|
-
this.lockBoxType = '';
|
|
997
|
-
this.maxPrice = null;
|
|
998
|
-
this.minPrice = null;
|
|
999
|
-
this.mlsArea = '';
|
|
1000
|
-
this.mlsName = '';
|
|
1001
|
-
this.onMarketTimestamp = null;
|
|
1002
|
-
this.offMarketTimestamp = null;
|
|
1003
|
-
this.originalListingSource = '';
|
|
1004
|
-
this.originatingSystemKey = '';
|
|
1005
|
-
this.ownerPays = '';
|
|
1006
|
-
this.ownershipType = null;
|
|
1007
|
-
this.pendingTimestamp = null;
|
|
1008
|
-
this.petDeposit = null;
|
|
1009
|
-
this.petsAllowedYN = null;
|
|
1010
|
-
this.photosChangeTimestamp = null;
|
|
1011
|
-
this.photosCount = 0;
|
|
1012
|
-
this.priceChangeTimestamp = null;
|
|
1013
|
-
this.privateRemarks = '';
|
|
1014
|
-
this.publicRemarks = '';
|
|
1015
|
-
this.purchaseContractDate = null;
|
|
1016
|
-
this.showingContactName = '';
|
|
1017
|
-
this.showingContactPhone = '';
|
|
1018
|
-
this.showingContactPhoneExt = '';
|
|
1019
|
-
this.showingContactType = '';
|
|
1020
|
-
this.statusChangeTimestamp = null;
|
|
1021
|
-
this.taxAnnualAmount = null;
|
|
1022
|
-
this.taxAssessedValue = null;
|
|
1023
|
-
this.taxYear = null;
|
|
1024
|
-
this.tenantPays = '';
|
|
1025
|
-
this.virtualTourURLBranded = ' ';
|
|
1026
|
-
this.virtualTourURLUnbranded = '';
|
|
1027
|
-
this.withdrawnDate = null;
|
|
1028
|
-
this.sourceMlsId = null;
|
|
1029
|
-
this.property = null;
|
|
1030
|
-
this.addressDetail = null;
|
|
1031
|
-
this.rentPrices = null;
|
|
1032
|
-
this.walkScores = null;
|
|
1033
|
-
this.openHouses = null;
|
|
1034
|
-
this.photos = null;
|
|
1035
|
-
this.schools = null;
|
|
1036
|
-
this.agents = null;
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
|
|
1040
|
-
class GetListingsByFilterRequestModel extends PaginationOptions {
|
|
1041
|
-
constructor() {
|
|
1042
|
-
super(...arguments);
|
|
1043
|
-
this.ListingTypes = null;
|
|
1044
|
-
this.OrderBy = null;
|
|
1045
|
-
this.NumberOfBedrooms = null;
|
|
1046
|
-
this.MinPrice = null;
|
|
1047
|
-
this.MaxPrice = null;
|
|
1048
|
-
this.ListingStatuses = null;
|
|
1049
|
-
this.PropertyTypes = null;
|
|
1050
|
-
this.PlaceIds = null;
|
|
1051
|
-
this.Fields = null;
|
|
1052
|
-
}
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
class PropertyModel {
|
|
1056
|
-
constructor() {
|
|
1057
|
-
this.AssociationFee = null;
|
|
1058
|
-
this.AssociationFeeFrequency = null;
|
|
1059
|
-
this.AssociationFeeIncludes = '';
|
|
1060
|
-
this.AssociationName = '';
|
|
1061
|
-
this.AssociationPhone = '';
|
|
1062
|
-
this.BasementDetails = '';
|
|
1063
|
-
this.BasementYN = null;
|
|
1064
|
-
this.BathroomsFull = null;
|
|
1065
|
-
this.BathroomsHalf = null;
|
|
1066
|
-
this.BathroomsOneQuarter = null;
|
|
1067
|
-
this.BathroomsPartial = null;
|
|
1068
|
-
this.BathroomsThreeQuarter = null;
|
|
1069
|
-
this.BathroomsTotal = null;
|
|
1070
|
-
this.BedroomsTotal = null;
|
|
1071
|
-
this.BuilderModel = '';
|
|
1072
|
-
this.BuilderName = '';
|
|
1073
|
-
this.BuildingName = '';
|
|
1074
|
-
this.DirectionFaces = null;
|
|
1075
|
-
this.EntryLevel = null;
|
|
1076
|
-
this.FarmYN = null;
|
|
1077
|
-
this.FireplacesTotal = null;
|
|
1078
|
-
this.GarageInBuildingYN = null;
|
|
1079
|
-
this.GarageSpaces = null;
|
|
1080
|
-
this.Levels = null;
|
|
1081
|
-
this.LivingAreaSquareFeet = null;
|
|
1082
|
-
this.LivingAreaSquareMeters = null;
|
|
1083
|
-
this.LotDescription = '';
|
|
1084
|
-
this.LotSizeAcres = null;
|
|
1085
|
-
this.LotSizeDimensions = '';
|
|
1086
|
-
this.LotSizeSquareFeet = null;
|
|
1087
|
-
this.NewConstructionYN = null;
|
|
1088
|
-
this.NumberOfUnits = null;
|
|
1089
|
-
this.ParcelNumber = '';
|
|
1090
|
-
this.ParkingTotal = null;
|
|
1091
|
-
this.PhysicalPropertyType = null;
|
|
1092
|
-
this.PoolPrivateYN = null;
|
|
1093
|
-
this.PropertyCondition = null;
|
|
1094
|
-
this.RoofCondition = '';
|
|
1095
|
-
this.RoomsTotal = null;
|
|
1096
|
-
this.Stories = null;
|
|
1097
|
-
this.UniversalPropertyId = '';
|
|
1098
|
-
this.YearBuilt = null;
|
|
1099
|
-
this.Style = null;
|
|
1100
|
-
this.Features = null;
|
|
1101
|
-
}
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
class GetByMlsIdRequestModel {
|
|
1105
|
-
constructor(data) {
|
|
1106
|
-
this.mlsId = '';
|
|
1107
|
-
this.fields = [];
|
|
1108
|
-
if (data) {
|
|
1109
|
-
Object.assign(this, data);
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
class GetByIdRequestModel {
|
|
1115
|
-
constructor(data) {
|
|
1116
|
-
this.id = 0;
|
|
1117
|
-
this.fields = [];
|
|
1118
|
-
if (data) {
|
|
1119
|
-
Object.assign(this, data);
|
|
1120
|
-
}
|
|
1121
|
-
}
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
//Fully cleaned
|
|
1125
|
-
class StyleModel {
|
|
1126
|
-
constructor() {
|
|
1127
|
-
this.Name = '';
|
|
1128
|
-
this.Probability = 0;
|
|
1129
|
-
}
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
//Fully cleaned
|
|
1133
|
-
class RentPriceModel {
|
|
1134
|
-
constructor() {
|
|
1135
|
-
this.JanuaryPrice = null;
|
|
1136
|
-
this.FebruaryPrice = null;
|
|
1137
|
-
this.MarchPrice = null;
|
|
1138
|
-
this.MarchToLDPrice = null;
|
|
1139
|
-
this.MarchAprilPrice = null;
|
|
1140
|
-
this.AprilPrice = null;
|
|
1141
|
-
this.AprilToLDPrice = null;
|
|
1142
|
-
this.AprilMayPrice = null;
|
|
1143
|
-
this.MayPrice = null;
|
|
1144
|
-
this.MayToLDPrice = null;
|
|
1145
|
-
this.MayJunePrice = null;
|
|
1146
|
-
this.MDToLDPrice = null;
|
|
1147
|
-
this.JunePrice = null;
|
|
1148
|
-
this.JuneToLDPrice = null;
|
|
1149
|
-
this.JuneJulyPrice = null;
|
|
1150
|
-
this.JulyPrice = null;
|
|
1151
|
-
this.JulyToLDPrice = null;
|
|
1152
|
-
this.JulyAugustPrice = null;
|
|
1153
|
-
this.AugustPrice = null;
|
|
1154
|
-
this.AugustToLDPrice = null;
|
|
1155
|
-
this.SeptemberPrice = null;
|
|
1156
|
-
this.OctoberPrice = null;
|
|
1157
|
-
this.NovemberPrice = null;
|
|
1158
|
-
this.DecemberPrice = null;
|
|
1159
|
-
this.WeeklyPrice = null;
|
|
1160
|
-
this.MonthlyPrice = null;
|
|
1161
|
-
this.YearlyPrice = null;
|
|
1162
|
-
this.ExtendedSeasonPrice = null;
|
|
1163
|
-
this.OffSeasonPrice = null;
|
|
1164
|
-
this.LowSeasonPrice = null;
|
|
1165
|
-
this.WinterPrice = null;
|
|
1166
|
-
this.FurnishedPrice = null;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
//Fully cleaned
|
|
1171
|
-
class WalkScoreModel {
|
|
1172
|
-
constructor() {
|
|
1173
|
-
this.WalkScore = null;
|
|
1174
|
-
this.WalkScoreDescription = '';
|
|
1175
|
-
this.TransitScore = null;
|
|
1176
|
-
this.TransitDescription = '';
|
|
1177
|
-
this.TransitDetailsSummary = '';
|
|
1178
|
-
this.BikeScore = null;
|
|
1179
|
-
this.BikeDescription = '';
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
//Fully cleaned
|
|
1184
|
-
class OpenHouseModel {
|
|
1185
|
-
constructor() {
|
|
1186
|
-
this.Key = '';
|
|
1187
|
-
this.Status = '';
|
|
1188
|
-
this.Type = '';
|
|
1189
|
-
this.Remarks = '';
|
|
1190
|
-
this.AttendedBy = '';
|
|
1191
|
-
this.LiveStreamUri = '';
|
|
1192
|
-
this.ShowingAgentKey = '';
|
|
1193
|
-
this.ShowingAgentMlsId = '';
|
|
1194
|
-
this.ShowingAgentLastName = '';
|
|
1195
|
-
this.RefreshmentsOrSnacks = '';
|
|
1196
|
-
this.ShowingAgentFirstName = '';
|
|
1197
|
-
this.LiveStreamDescription = '';
|
|
1198
|
-
this.EndTime = null;
|
|
1199
|
-
this.StartTime = null;
|
|
1200
|
-
this.LiveStreamEnd = null;
|
|
1201
|
-
this.LiveStreamStart = null;
|
|
1202
|
-
this.ModificationTimestamp = null;
|
|
1203
|
-
this.AppointmentRequiredYN = null;
|
|
1204
|
-
}
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
class PhotoModel {
|
|
1208
|
-
constructor() {
|
|
1209
|
-
this.Id = 0;
|
|
1210
|
-
this.Url = '';
|
|
1211
|
-
this.MlsUrl = '';
|
|
1212
|
-
this.Order = 0;
|
|
1213
|
-
this.CoreListingId = 0;
|
|
1214
|
-
this.Tags = null;
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
class LimitModel {
|
|
1219
|
-
constructor(data) {
|
|
1220
|
-
this.count = 0;
|
|
1221
|
-
this.type = null;
|
|
1222
|
-
if (data) {
|
|
1223
|
-
Object.assign(this, data);
|
|
1224
|
-
}
|
|
1225
|
-
}
|
|
1226
|
-
}
|
|
1227
|
-
|
|
1228
|
-
class PolygonLiteResponseModel {
|
|
1229
|
-
constructor() {
|
|
1230
|
-
this.id = 0;
|
|
1231
|
-
this.name = '';
|
|
1232
|
-
this.shortName = '';
|
|
1233
|
-
this.urlKey = '';
|
|
1234
|
-
this.city = '';
|
|
1235
|
-
this.county = '';
|
|
1236
|
-
this.cityId = null;
|
|
1237
|
-
this.state = '';
|
|
1238
|
-
this.stateId = null;
|
|
1239
|
-
this.neighborhood = '';
|
|
1240
|
-
this.zip = '';
|
|
1241
|
-
this.weight = 0;
|
|
1242
|
-
this.stateShortName = '';
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
class PolygonFilterRequestModel {
|
|
1247
|
-
constructor(data) {
|
|
1248
|
-
this.text = '';
|
|
1249
|
-
this.states = [];
|
|
1250
|
-
this.skipNullUrlKey = false;
|
|
1251
|
-
this.skipNullGeometry = false;
|
|
1252
|
-
this.limits = [];
|
|
1253
|
-
if (data) {
|
|
1254
|
-
Object.assign(this, data);
|
|
1255
|
-
}
|
|
1256
|
-
}
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
class PolygonFilterResponseModel {
|
|
1260
|
-
constructor(data) {
|
|
1261
|
-
this.type = null;
|
|
1262
|
-
this.polygons = [];
|
|
1263
|
-
if (data) {
|
|
1264
|
-
Object.assign(this, data);
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
exports.Operator = void 0;
|
|
1270
|
-
(function (Operator) {
|
|
1271
|
-
Operator[Operator["Eq"] = 0] = "Eq";
|
|
1272
|
-
Operator[Operator["Gt"] = 1] = "Gt";
|
|
1273
|
-
Operator[Operator["Ge"] = 2] = "Ge";
|
|
1274
|
-
Operator[Operator["Lt"] = 3] = "Lt";
|
|
1275
|
-
Operator[Operator["Le"] = 4] = "Le";
|
|
1276
|
-
Operator[Operator["In"] = 5] = "In";
|
|
1277
|
-
Operator[Operator["Sw"] = 6] = "Sw";
|
|
1278
|
-
Operator[Operator["Ew"] = 7] = "Ew";
|
|
1279
|
-
Operator[Operator["Like"] = 8] = "Like";
|
|
1280
|
-
Operator[Operator["IsNull"] = 9] = "IsNull";
|
|
1281
|
-
Operator[Operator["Any"] = 10] = "Any";
|
|
1282
|
-
Operator[Operator["All"] = 11] = "All";
|
|
1283
|
-
})(exports.Operator || (exports.Operator = {}));
|
|
1284
|
-
|
|
1285
|
-
class OrderingModel {
|
|
1286
|
-
constructor() {
|
|
1287
|
-
this.property = null;
|
|
1288
|
-
this.isDescending = false;
|
|
1289
|
-
this.matchedConditions = [];
|
|
1290
|
-
}
|
|
1291
|
-
toString() {
|
|
1292
|
-
const direction = this.isDescending ? 'desc' : 'asc';
|
|
1293
|
-
return this.property !== null ? `p=${this.property},d=${direction}` : `c=${''},d=${direction}`; //TODO c
|
|
1294
|
-
}
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
exports.Condition = void 0;
|
|
1298
|
-
(function (Condition) {
|
|
1299
|
-
Condition[Condition["And"] = 0] = "And";
|
|
1300
|
-
Condition[Condition["Or"] = 1] = "Or";
|
|
1301
|
-
})(exports.Condition || (exports.Condition = {}));
|
|
1302
|
-
|
|
1303
|
-
exports.AddressDetail = AddressDetail;
|
|
1304
|
-
exports.AddressDetailModel = AddressDetailModel;
|
|
1305
|
-
exports.AddressPolygon = AddressPolygon;
|
|
1306
|
-
exports.AddressQueryModel = AddressQueryModel;
|
|
1307
|
-
exports.AgentInfoModel = AgentInfoModel;
|
|
1308
|
-
exports.AgentModel = AgentModel;
|
|
1309
|
-
exports.CategoryModel = CategoryModel;
|
|
1310
|
-
exports.ConditionModel = ConditionModel;
|
|
1311
|
-
exports.Entity = Entity;
|
|
1312
|
-
exports.FeatureModel = FeatureModel;
|
|
1313
|
-
exports.GetAgentRequestModel = GetAgentRequestModel;
|
|
1314
|
-
exports.GetAgentsRequestModel = GetAgentsRequestModel;
|
|
1315
|
-
exports.GetByIdRequestModel = GetByIdRequestModel;
|
|
1316
|
-
exports.GetByMlsIdRequestModel = GetByMlsIdRequestModel;
|
|
1317
|
-
exports.GetListingsByFilterRequestModel = GetListingsByFilterRequestModel;
|
|
1318
|
-
exports.GlobalQueryModel = GlobalQueryModel;
|
|
1319
|
-
exports.LimitModel = LimitModel;
|
|
1320
|
-
exports.Listing = Listing;
|
|
1321
|
-
exports.ListingModel = ListingModel;
|
|
1322
|
-
exports.ListingOpenHouse = ListingOpenHouse;
|
|
1323
|
-
exports.ListingSchool = ListingSchool;
|
|
1324
|
-
exports.LocationModel = LocationModel;
|
|
1325
|
-
exports.MlsInfoModel = MlsInfoModel;
|
|
1326
|
-
exports.OfficeModel = OfficeModel;
|
|
1327
|
-
exports.OpenHouseModel = OpenHouseModel;
|
|
1328
|
-
exports.OrderingModel = OrderingModel;
|
|
1329
|
-
exports.PaginationOptions = PaginationOptions;
|
|
1330
|
-
exports.PhotoModel = PhotoModel;
|
|
1331
|
-
exports.Point = Point;
|
|
1332
|
-
exports.Polygon = Polygon;
|
|
1333
|
-
exports.PolygonFilterRequestModel = PolygonFilterRequestModel;
|
|
1334
|
-
exports.PolygonFilterResponseModel = PolygonFilterResponseModel;
|
|
1335
|
-
exports.PolygonLiteResponseModel = PolygonLiteResponseModel;
|
|
1336
|
-
exports.Property = Property;
|
|
1337
|
-
exports.PropertyFeature = PropertyFeature;
|
|
1338
|
-
exports.PropertyModel = PropertyModel;
|
|
1339
|
-
exports.RentPriceModel = RentPriceModel;
|
|
1340
|
-
exports.SamlsClient = SamlsClient;
|
|
1341
|
-
exports.School = School;
|
|
1342
|
-
exports.StyleModel = StyleModel;
|
|
1343
|
-
exports.SubCategoryModel = SubCategoryModel;
|
|
1344
|
-
exports.WalkScoreModel = WalkScoreModel;
|
|
1345
|
-
exports.hasFlag = hasFlag;
|