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