samls-js-integration 1.0.39 → 1.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (282) hide show
  1. package/README.md +6 -1
  2. package/dist/clients/AddressDetail.d.ts +5 -0
  3. package/dist/clients/AddressDetail.js +6 -0
  4. package/dist/clients/ListingsClient.d.ts +9 -0
  5. package/dist/clients/ListingsClient.js +18 -0
  6. package/dist/clients/MlsClient.d.ts +6 -0
  7. package/dist/clients/MlsClient.js +10 -0
  8. package/dist/clients/PolygonClient.d.ts +5 -0
  9. package/dist/clients/PolygonClient.js +7 -0
  10. package/dist/clients/index.js +3 -0
  11. package/dist/globals/HttpModule.d.ts +1 -0
  12. package/dist/globals/HttpModule.js +4 -0
  13. package/dist/globals/constants/url.d.ts +4 -0
  14. package/dist/globals/constants/url.js +4 -0
  15. package/dist/globals/index.js +3 -0
  16. package/dist/globals/models/IApiResponse.d.ts +5 -0
  17. package/dist/globals/models/IApiResponse.js +1 -0
  18. package/{lib/globals/models/index.ts → dist/globals/models/index.d.ts} +0 -1
  19. package/dist/globals/models/index.js +2 -0
  20. package/dist/index.js +2 -0
  21. package/dist/models/Address/AddressDetailModel.d.ts +37 -0
  22. package/dist/models/Address/AddressDetailModel.js +38 -0
  23. package/dist/models/Address/AddressQueryModel.d.ts +5 -0
  24. package/dist/models/Address/AddressQueryModel.js +8 -0
  25. package/dist/models/Address/index.js +2 -0
  26. package/dist/models/Agent/AgentInfoModel.d.ts +27 -0
  27. package/dist/models/Agent/AgentInfoModel.js +28 -0
  28. package/dist/models/Agent/AgentModel.d.ts +7 -0
  29. package/dist/models/Agent/AgentModel.js +8 -0
  30. package/dist/models/Agent/GetAgentRequestModel.d.ts +6 -0
  31. package/dist/models/Agent/GetAgentRequestModel.js +7 -0
  32. package/dist/models/Agent/GetAgentsRequestModel.d.ts +8 -0
  33. package/dist/models/Agent/GetAgentsRequestModel.js +10 -0
  34. package/dist/models/Agent/OfficeModel.d.ts +19 -0
  35. package/dist/models/Agent/OfficeModel.js +20 -0
  36. package/dist/models/Agent/index.js +5 -0
  37. package/dist/models/Common/GlobalQueryModel.d.ts +11 -0
  38. package/dist/models/Common/GlobalQueryModel.js +14 -0
  39. package/dist/models/Common/LocationModel.d.ts +4 -0
  40. package/dist/models/Common/LocationModel.js +6 -0
  41. package/dist/models/Common/PaginationOptions.d.ts +4 -0
  42. package/dist/models/Common/PaginationOptions.js +6 -0
  43. package/dist/models/Common/Point.d.ts +5 -0
  44. package/dist/models/Common/Point.js +7 -0
  45. package/dist/models/Common/index.js +5 -0
  46. package/dist/models/Entities/AddressDetail.d.ts +42 -0
  47. package/dist/models/Entities/AddressDetail.js +42 -0
  48. package/dist/models/Entities/AddressPolygon.d.ts +10 -0
  49. package/dist/models/Entities/AddressPolygon.js +10 -0
  50. package/dist/models/Entities/Entity.d.ts +6 -0
  51. package/dist/models/Entities/Entity.js +7 -0
  52. package/dist/models/Entities/Listing.d.ts +78 -0
  53. package/dist/models/Entities/Listing.js +3 -0
  54. package/dist/models/Entities/ListingOpenHouse.d.ts +24 -0
  55. package/dist/models/Entities/ListingOpenHouse.js +3 -0
  56. package/dist/models/Entities/ListingSchool.d.ts +9 -0
  57. package/dist/models/Entities/ListingSchool.js +9 -0
  58. package/dist/models/Entities/Polygon.d.ts +2 -0
  59. package/dist/models/Entities/Polygon.js +3 -0
  60. package/dist/models/Entities/Property.d.ts +2 -0
  61. package/dist/models/Entities/Property.js +3 -0
  62. package/dist/models/Entities/PropertyFeature.d.ts +2 -0
  63. package/dist/models/Entities/PropertyFeature.js +3 -0
  64. package/dist/models/Entities/School.d.ts +2 -0
  65. package/dist/models/Entities/School.js +3 -0
  66. package/dist/models/Entities/index.js +10 -0
  67. package/dist/models/Enums/AgentTypeEnum.d.ts +6 -0
  68. package/dist/models/Enums/AgentTypeEnum.js +7 -0
  69. package/dist/models/Enums/AssociationFeeFrequencyEnum.d.ts +13 -0
  70. package/dist/models/Enums/AssociationFeeFrequencyEnum.js +14 -0
  71. package/dist/models/Enums/AuthenticationTypeEnum.d.ts +6 -0
  72. package/dist/models/Enums/AuthenticationTypeEnum.js +7 -0
  73. package/dist/models/Enums/CurrencyEnum.d.ts +5 -0
  74. package/dist/models/Enums/CurrencyEnum.js +6 -0
  75. package/dist/models/Enums/DirectionFacesEnum.d.ts +11 -0
  76. package/dist/models/Enums/DirectionFacesEnum.js +12 -0
  77. package/dist/models/Enums/FeatureSourceEnum.d.ts +6 -0
  78. package/dist/models/Enums/FeatureSourceEnum.js +14 -0
  79. package/dist/models/Enums/GeometryTypeEnum.d.ts +10 -0
  80. package/dist/models/Enums/GeometryTypeEnum.js +11 -0
  81. package/dist/models/Enums/ListingStatusEnum.d.ts +15 -0
  82. package/dist/models/Enums/ListingStatusEnum.js +31 -0
  83. package/dist/models/Enums/ListingTypeClassEnum.d.ts +6 -0
  84. package/dist/models/Enums/ListingTypeClassEnum.js +6 -0
  85. package/dist/models/Enums/ListingTypeEnum.d.ts +16 -0
  86. package/dist/models/Enums/ListingTypeEnum.js +20 -0
  87. package/dist/models/Enums/MLSEnum.d.ts +38 -0
  88. package/dist/models/Enums/MLSEnum.js +39 -0
  89. package/dist/models/Enums/OrderByOptions.d.ts +6 -0
  90. package/dist/models/Enums/OrderByOptions.js +7 -0
  91. package/dist/models/Enums/OwnershipTypeEnum.d.ts +22 -0
  92. package/dist/models/Enums/OwnershipTypeEnum.js +26 -0
  93. package/dist/models/Enums/PhysicalPropertyClassEnum.d.ts +6 -0
  94. package/dist/models/Enums/PhysicalPropertyClassEnum.js +7 -0
  95. package/dist/models/Enums/PhysicalPropertyTypeEnum.d.ts +51 -0
  96. package/dist/models/Enums/PhysicalPropertyTypeEnum.js +55 -0
  97. package/dist/models/Enums/PlatformEnum.d.ts +6 -0
  98. package/dist/models/Enums/PlatformEnum.js +7 -0
  99. package/dist/models/Enums/ProcessingStatusEnum.d.ts +8 -0
  100. package/dist/models/Enums/ProcessingStatusEnum.js +9 -0
  101. package/dist/models/Enums/ProcessingTypeEnum.d.ts +5 -0
  102. package/dist/models/Enums/ProcessingTypeEnum.js +6 -0
  103. package/dist/models/Enums/PropertyConditionEnum.d.ts +17 -0
  104. package/dist/models/Enums/PropertyConditionEnum.js +21 -0
  105. package/dist/models/Enums/PropertyLevelEnum.d.ts +12 -0
  106. package/dist/models/Enums/PropertyLevelEnum.js +16 -0
  107. package/dist/models/Enums/StreetDirectionEnum.d.ts +11 -0
  108. package/dist/models/Enums/StreetDirectionEnum.js +15 -0
  109. package/dist/models/Enums/StreetSuffixEnum.d.ts +245 -0
  110. package/dist/models/Enums/StreetSuffixEnum.js +246 -0
  111. package/dist/models/Enums/index.js +22 -0
  112. package/dist/models/Feature/CategoryModel.d.ts +4 -0
  113. package/dist/models/Feature/CategoryModel.js +6 -0
  114. package/dist/models/Feature/FeatureModel.d.ts +9 -0
  115. package/dist/models/Feature/FeatureModel.js +9 -0
  116. package/dist/models/Feature/SubCategoryModel.d.ts +4 -0
  117. package/dist/models/Feature/SubCategoryModel.js +6 -0
  118. package/dist/models/Feature/index.js +3 -0
  119. package/dist/models/Listing/ClusteringFilterRequestBaseModel.d.ts +0 -0
  120. package/{lib/models/Listing/ClusteringFilterRequestBaseModel.ts → dist/models/Listing/ClusteringFilterRequestBaseModel.js} +2 -1
  121. package/dist/models/Listing/GetByIdRequestModel.d.ts +5 -0
  122. package/dist/models/Listing/GetByIdRequestModel.js +9 -0
  123. package/dist/models/Listing/GetByMlsIdRequestModel.d.ts +5 -0
  124. package/dist/models/Listing/GetByMlsIdRequestModel.js +9 -0
  125. package/dist/models/Listing/GetListingsByFilterRequestModel.d.ts +13 -0
  126. package/dist/models/Listing/GetListingsByFilterRequestModel.js +15 -0
  127. package/dist/models/Listing/ListingModel.d.ts +81 -0
  128. package/dist/models/Listing/ListingModel.js +75 -0
  129. package/dist/models/Listing/OpenHouseModel.d.ts +20 -0
  130. package/dist/models/Listing/OpenHouseModel.js +23 -0
  131. package/dist/models/Listing/PhotoModel.d.ts +10 -0
  132. package/dist/models/Listing/PhotoModel.js +13 -0
  133. package/dist/models/Listing/PropertyModel.d.ts +49 -0
  134. package/dist/models/Listing/PropertyModel.js +48 -0
  135. package/dist/models/Listing/RentPriceModel.d.ts +34 -0
  136. package/dist/models/Listing/RentPriceModel.js +37 -0
  137. package/dist/models/Listing/StyleModel.d.ts +4 -0
  138. package/dist/models/Listing/StyleModel.js +7 -0
  139. package/dist/models/Listing/WalkScoreModel.d.ts +9 -0
  140. package/dist/models/Listing/WalkScoreModel.js +12 -0
  141. package/dist/models/Listing/index.js +10 -0
  142. package/dist/models/Mls/MlsInfoModel.d.ts +8 -0
  143. package/dist/models/Mls/MlsInfoModel.js +11 -0
  144. package/dist/models/Mls/index.js +1 -0
  145. package/dist/models/PData/index.js +1 -0
  146. package/dist/models/PData/models/Condition.d.ts +4 -0
  147. package/dist/models/PData/models/Condition.js +5 -0
  148. package/dist/models/PData/models/ConditionModel.d.ts +13 -0
  149. package/dist/models/PData/models/ConditionModel.js +15 -0
  150. package/dist/models/PData/models/IPagination.d.ts +4 -0
  151. package/dist/models/PData/models/IPagination.js +1 -0
  152. package/dist/models/PData/models/Operator.d.ts +14 -0
  153. package/dist/models/PData/models/Operator.js +15 -0
  154. package/dist/models/PData/models/Ordering.d.ts +7 -0
  155. package/dist/models/PData/models/Ordering.js +11 -0
  156. package/dist/models/PData/models/index.js +5 -0
  157. package/dist/models/Polygon/LimitModel.d.ts +6 -0
  158. package/dist/models/Polygon/LimitModel.js +9 -0
  159. package/dist/models/Polygon/PolygonFilterRequestModel.d.ts +9 -0
  160. package/dist/models/Polygon/PolygonFilterRequestModel.js +12 -0
  161. package/dist/models/Polygon/PolygonFilterResponseModel.d.ts +8 -0
  162. package/dist/models/Polygon/PolygonFilterResponseModel.js +9 -0
  163. package/dist/models/Polygon/PolygonLiteResponseModel.d.ts +15 -0
  164. package/dist/models/Polygon/PolygonLiteResponseModel.js +17 -0
  165. package/dist/models/Polygon/index.js +4 -0
  166. package/dist/models/School/SchoolIdentifierModel.d.ts +0 -0
  167. package/{lib/models/School/SchoolIdentifierModel.ts → dist/models/School/SchoolIdentifierModel.js} +2 -1
  168. package/dist/models/School/SchoolModel.d.ts +13 -0
  169. package/dist/models/School/SchoolModel.js +16 -0
  170. package/dist/models/School/index.js +1 -0
  171. package/dist/models/index.js +12 -0
  172. package/dist/services/SamlsClient.d.ts +8 -0
  173. package/{lib/services/SamlsClient.ts → dist/services/SamlsClient.js} +6 -5
  174. package/package.json +5 -5
  175. package/dist/browser/samls.js +0 -1348
  176. package/dist/node/samls.cjs +0 -1345
  177. package/lib/clients/AddressDetail.ts +0 -10
  178. package/lib/clients/ListingsClient.ts +0 -36
  179. package/lib/clients/MlsClient.ts +0 -14
  180. package/lib/clients/PolygonClient.ts +0 -12
  181. package/lib/globals/HttpModule.ts +0 -6
  182. package/lib/globals/constants/url.ts +0 -4
  183. package/lib/globals/models/IApiResponse.ts +0 -5
  184. package/lib/globals/models/ObjectPropertyPathChecker.ts +0 -3
  185. package/lib/models/Address/AddressDetailModel.ts +0 -39
  186. package/lib/models/Address/AddressQueryModel.ts +0 -10
  187. package/lib/models/Agent/AgentInfoModel.ts +0 -28
  188. package/lib/models/Agent/AgentModel.ts +0 -8
  189. package/lib/models/Agent/GetAgentRequestModel.ts +0 -8
  190. package/lib/models/Agent/GetAgentsRequestModel.ts +0 -9
  191. package/lib/models/Agent/OfficeModel.ts +0 -20
  192. package/lib/models/Common/GlobalQueryModel.ts +0 -17
  193. package/lib/models/Common/LocationModel.ts +0 -4
  194. package/lib/models/Common/PaginationOptions.ts +0 -4
  195. package/lib/models/Common/Point.ts +0 -10
  196. package/lib/models/Entities/AddressDetail.ts +0 -46
  197. package/lib/models/Entities/AddressPolygon.ts +0 -11
  198. package/lib/models/Entities/Entity.ts +0 -11
  199. package/lib/models/Entities/Listing.ts +0 -87
  200. package/lib/models/Entities/ListingOpenHouse.ts +0 -26
  201. package/lib/models/Entities/ListingSchool.ts +0 -10
  202. package/lib/models/Entities/Polygon.ts +0 -23
  203. package/lib/models/Entities/Property.ts +0 -60
  204. package/lib/models/Entities/PropertyFeature.ts +0 -13
  205. package/lib/models/Entities/School.ts +0 -19
  206. package/lib/models/Enums/AgentTypeEnum.ts +0 -7
  207. package/lib/models/Enums/AssociationFeeFrequencyEnum.ts +0 -13
  208. package/lib/models/Enums/AuthenticationTypeEnum.ts +0 -6
  209. package/lib/models/Enums/CurrencyEnum.ts +0 -5
  210. package/lib/models/Enums/DirectionFacesEnum.ts +0 -11
  211. package/lib/models/Enums/FeatureSourceEnum.ts +0 -15
  212. package/lib/models/Enums/GeometryTypeEnum.ts +0 -10
  213. package/lib/models/Enums/ListingStatusEnum.ts +0 -35
  214. package/lib/models/Enums/ListingTypeClassEnum.ts +0 -7
  215. package/lib/models/Enums/ListingTypeEnum.ts +0 -20
  216. package/lib/models/Enums/MLSEnum.ts +0 -38
  217. package/lib/models/Enums/OrderByOptions.ts +0 -6
  218. package/lib/models/Enums/OwnershipTypeEnum.ts +0 -26
  219. package/lib/models/Enums/PhysicalPropertyClassEnum.ts +0 -6
  220. package/lib/models/Enums/PhysicalPropertyTypeEnum.ts +0 -55
  221. package/lib/models/Enums/PlatformEnum.ts +0 -6
  222. package/lib/models/Enums/ProcessingStatusEnum.ts +0 -8
  223. package/lib/models/Enums/ProcessingTypeEnum.ts +0 -5
  224. package/lib/models/Enums/PropertyConditionEnum.ts +0 -21
  225. package/lib/models/Enums/PropertyLevelEnum.ts +0 -16
  226. package/lib/models/Enums/StreetDirectionEnum.ts +0 -15
  227. package/lib/models/Enums/StreetSuffixEnum.ts +0 -245
  228. package/lib/models/Feature/CategoryModel.ts +0 -4
  229. package/lib/models/Feature/FeatureModel.ts +0 -11
  230. package/lib/models/Feature/SubCategoryModel.ts +0 -4
  231. package/lib/models/Listing/ClusteringFilterResponseModel.cs +0 -29
  232. package/lib/models/Listing/GetByAddressRequestModel.cs +0 -21
  233. package/lib/models/Listing/GetByAgentRequestModel.cs +0 -13
  234. package/lib/models/Listing/GetByIdRequestModel.ts +0 -12
  235. package/lib/models/Listing/GetByMlsIdRequestModel.ts +0 -12
  236. package/lib/models/Listing/GetListingsByFilterRequestModel.ts +0 -19
  237. package/lib/models/Listing/GetMapListingsRequestModel.cs +0 -16
  238. package/lib/models/Listing/GetNearByListingsRequestModel.cs +0 -17
  239. package/lib/models/Listing/GetPhotosByIdsRequestModel.cs +0 -6
  240. package/lib/models/Listing/ListingDistancedModel.cs +0 -7
  241. package/lib/models/Listing/ListingModel.ts +0 -88
  242. package/lib/models/Listing/ListingsLocationQueryModel.cs +0 -16
  243. package/lib/models/Listing/LocationOptions.cs +0 -8
  244. package/lib/models/Listing/NearByListingsResponse.cs +0 -37
  245. package/lib/models/Listing/OpenHouseLiteModel.cs +0 -7
  246. package/lib/models/Listing/OpenHouseModel.ts +0 -21
  247. package/lib/models/Listing/PhotoModel.ts +0 -10
  248. package/lib/models/Listing/PropertyModel.ts +0 -57
  249. package/lib/models/Listing/RentPriceModel.ts +0 -35
  250. package/lib/models/Listing/StyleModel.ts +0 -5
  251. package/lib/models/Listing/WalkScoreModel.ts +0 -10
  252. package/lib/models/Mls/MlsInfoModel.ts +0 -9
  253. package/lib/models/PData/models/Condition.ts +0 -4
  254. package/lib/models/PData/models/ConditionModel.ts +0 -20
  255. package/lib/models/PData/models/IPagination.ts +0 -4
  256. package/lib/models/PData/models/Operator.ts +0 -14
  257. package/lib/models/PData/models/Ordering.ts +0 -12
  258. package/lib/models/Polygon/LimitModel.ts +0 -12
  259. package/lib/models/Polygon/PolygonFilterRequestModel.ts +0 -15
  260. package/lib/models/Polygon/PolygonFilterResponseModel.ts +0 -15
  261. package/lib/models/Polygon/PolygonLiteResponseModel.ts +0 -15
  262. package/lib/models/Polygon/PolygonResponseModel.cs +0 -22
  263. package/lib/models/Polygon/PolygonsQueryModel.cs +0 -12
  264. package/lib/models/School/SchoolModel.ts +0 -14
  265. package/lib/models/School/SchoolsByRadiusBatchRequestModel.cs +0 -6
  266. package/lib/models/School/SchoolsByRadiusRequestModel.cs +0 -10
  267. /package/{lib/clients/index.ts → dist/clients/index.d.ts} +0 -0
  268. /package/{lib/globals/index.ts → dist/globals/index.d.ts} +0 -0
  269. /package/{lib/index.ts → dist/index.d.ts} +0 -0
  270. /package/{lib/models/Address/index.ts → dist/models/Address/index.d.ts} +0 -0
  271. /package/{lib/models/Agent/index.ts → dist/models/Agent/index.d.ts} +0 -0
  272. /package/{lib/models/Common/index.ts → dist/models/Common/index.d.ts} +0 -0
  273. /package/{lib/models/Entities/index.ts → dist/models/Entities/index.d.ts} +0 -0
  274. /package/{lib/models/Enums/index.ts → dist/models/Enums/index.d.ts} +0 -0
  275. /package/{lib/models/Feature/index.ts → dist/models/Feature/index.d.ts} +0 -0
  276. /package/{lib/models/Listing/index.ts → dist/models/Listing/index.d.ts} +0 -0
  277. /package/{lib/models/Mls/index.ts → dist/models/Mls/index.d.ts} +0 -0
  278. /package/{lib/models/PData/index.ts → dist/models/PData/index.d.ts} +0 -0
  279. /package/{lib/models/PData/models/index.ts → dist/models/PData/models/index.d.ts} +0 -0
  280. /package/{lib/models/Polygon/index.ts → dist/models/Polygon/index.d.ts} +0 -0
  281. /package/{lib/models/School/index.ts → dist/models/School/index.d.ts} +0 -0
  282. /package/{lib/models/index.ts → dist/models/index.d.ts} +0 -0
@@ -0,0 +1,51 @@
1
+ export declare enum PhysicalPropertyTypeEnum {
2
+ NotMapped = -1,
3
+ Other = 0,
4
+ HighRise = 1,
5
+ Apartment = 2,
6
+ Attached = 3,
7
+ CoOp = 4,
8
+ Condominium = 5,
9
+ DetachedSingle = 6,
10
+ Duplex = 7,
11
+ Fourplex = 8,
12
+ ManufacturedHome = 9,
13
+ MixedUse = 10,
14
+ MobileHome = 11,
15
+ ModularHome = 12,
16
+ MultiFamily = 13,
17
+ Residential = 14,
18
+ SingleFamily = 15,
19
+ Timeshare = 16,
20
+ Townhouse = 17,
21
+ Triplex = 18,
22
+ Villa = 19,
23
+ AgriculturalLand = 20,
24
+ BoatSlip = 21,
25
+ Business = 22,
26
+ Commercial = 23,
27
+ DeededParking = 24,
28
+ Farm = 25,
29
+ HotelMotel = 26,
30
+ Industrial = 27,
31
+ Office = 28,
32
+ Recreation = 29,
33
+ Restaurant = 30,
34
+ Retail = 31,
35
+ SitePlanned = 32,
36
+ SpecialPurpose = 33,
37
+ StockCooperative = 34,
38
+ Warehouse = 35,
39
+ CommercialLand = 36,
40
+ ImprovedLand = 37,
41
+ Land = 38,
42
+ MultifamilyLot = 39,
43
+ MultipleParcels = 40,
44
+ RVLot = 41,
45
+ SingleFamilyLot = 42,
46
+ UnimprovedLand = 43,
47
+ RanchLand = 44,
48
+ AccessoryApartment = 45,
49
+ GarageApartment = 46,
50
+ PUD = 47
51
+ }
@@ -0,0 +1,55 @@
1
+ export var PhysicalPropertyTypeEnum;
2
+ (function (PhysicalPropertyTypeEnum) {
3
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["NotMapped"] = -1] = "NotMapped";
4
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Other"] = 0] = "Other";
5
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["HighRise"] = 1] = "HighRise";
6
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Apartment"] = 2] = "Apartment";
7
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Attached"] = 3] = "Attached";
8
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CoOp"] = 4] = "CoOp";
9
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Condominium"] = 5] = "Condominium";
10
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["DetachedSingle"] = 6] = "DetachedSingle";
11
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Duplex"] = 7] = "Duplex";
12
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Fourplex"] = 8] = "Fourplex";
13
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ManufacturedHome"] = 9] = "ManufacturedHome";
14
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MixedUse"] = 10] = "MixedUse";
15
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MobileHome"] = 11] = "MobileHome";
16
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ModularHome"] = 12] = "ModularHome";
17
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultiFamily"] = 13] = "MultiFamily";
18
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Residential"] = 14] = "Residential";
19
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamily"] = 15] = "SingleFamily";
20
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Timeshare"] = 16] = "Timeshare";
21
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Townhouse"] = 17] = "Townhouse";
22
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Triplex"] = 18] = "Triplex";
23
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Villa"] = 19] = "Villa";
24
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AgriculturalLand"] = 20] = "AgriculturalLand";
25
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["BoatSlip"] = 21] = "BoatSlip";
26
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Business"] = 22] = "Business";
27
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Commercial"] = 23] = "Commercial";
28
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["DeededParking"] = 24] = "DeededParking";
29
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Farm"] = 25] = "Farm";
30
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["HotelMotel"] = 26] = "HotelMotel";
31
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Industrial"] = 27] = "Industrial";
32
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Office"] = 28] = "Office";
33
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Recreation"] = 29] = "Recreation";
34
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Restaurant"] = 30] = "Restaurant";
35
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Retail"] = 31] = "Retail";
36
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SitePlanned"] = 32] = "SitePlanned";
37
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SpecialPurpose"] = 33] = "SpecialPurpose";
38
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["StockCooperative"] = 34] = "StockCooperative";
39
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Warehouse"] = 35] = "Warehouse";
40
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CommercialLand"] = 36] = "CommercialLand";
41
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ImprovedLand"] = 37] = "ImprovedLand";
42
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Land"] = 38] = "Land";
43
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultifamilyLot"] = 39] = "MultifamilyLot";
44
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultipleParcels"] = 40] = "MultipleParcels";
45
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RVLot"] = 41] = "RVLot";
46
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamilyLot"] = 42] = "SingleFamilyLot";
47
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["UnimprovedLand"] = 43] = "UnimprovedLand";
48
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RanchLand"] = 44] = "RanchLand";
49
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AccessoryApartment"] = 45] = "AccessoryApartment";
50
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["GarageApartment"] = 46] = "GarageApartment";
51
+ PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["PUD"] = 47] = "PUD";
52
+ })(PhysicalPropertyTypeEnum || (PhysicalPropertyTypeEnum = {}));
53
+ // Usage example
54
+ // const propertyType: PhysicalPropertyTypeEnum = PhysicalPropertyTypeEnum.DetachedSingleFamilyResidence;
55
+ // console.log(physicalPropertyTypeEnumDisplayNames[propertyType]); // "Detached single family residence"
@@ -0,0 +1,6 @@
1
+ export declare enum PlatformEnum {
2
+ None = 0,
3
+ Bridge = 1,
4
+ Trestle = 2,
5
+ Spark = 3
6
+ }
@@ -0,0 +1,7 @@
1
+ export var PlatformEnum;
2
+ (function (PlatformEnum) {
3
+ PlatformEnum[PlatformEnum["None"] = 0] = "None";
4
+ PlatformEnum[PlatformEnum["Bridge"] = 1] = "Bridge";
5
+ PlatformEnum[PlatformEnum["Trestle"] = 2] = "Trestle";
6
+ PlatformEnum[PlatformEnum["Spark"] = 3] = "Spark";
7
+ })(PlatformEnum || (PlatformEnum = {}));
@@ -0,0 +1,8 @@
1
+ export declare enum ProcessingStatusEnum {
2
+ Processing = -2,
3
+ NotReady = -1,
4
+ NotProcessed = 0,
5
+ Processed = 1,
6
+ Skipped = 2,
7
+ Failed = 3
8
+ }
@@ -0,0 +1,9 @@
1
+ export var ProcessingStatusEnum;
2
+ (function (ProcessingStatusEnum) {
3
+ ProcessingStatusEnum[ProcessingStatusEnum["Processing"] = -2] = "Processing";
4
+ ProcessingStatusEnum[ProcessingStatusEnum["NotReady"] = -1] = "NotReady";
5
+ ProcessingStatusEnum[ProcessingStatusEnum["NotProcessed"] = 0] = "NotProcessed";
6
+ ProcessingStatusEnum[ProcessingStatusEnum["Processed"] = 1] = "Processed";
7
+ ProcessingStatusEnum[ProcessingStatusEnum["Skipped"] = 2] = "Skipped";
8
+ ProcessingStatusEnum[ProcessingStatusEnum["Failed"] = 3] = "Failed";
9
+ })(ProcessingStatusEnum || (ProcessingStatusEnum = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum ProcessingTypeEnum {
2
+ ImageProcessing = 1,
3
+ NLProcessing = 2,
4
+ GeoProcessing = 3
5
+ }
@@ -0,0 +1,6 @@
1
+ export var ProcessingTypeEnum;
2
+ (function (ProcessingTypeEnum) {
3
+ ProcessingTypeEnum[ProcessingTypeEnum["ImageProcessing"] = 1] = "ImageProcessing";
4
+ ProcessingTypeEnum[ProcessingTypeEnum["NLProcessing"] = 2] = "NLProcessing";
5
+ ProcessingTypeEnum[ProcessingTypeEnum["GeoProcessing"] = 3] = "GeoProcessing";
6
+ })(ProcessingTypeEnum || (ProcessingTypeEnum = {}));
@@ -0,0 +1,17 @@
1
+ export declare enum PropertyConditionEnum {
2
+ NotMapped = -1,
3
+ ToBeBuilt = 1,
4
+ UnderConstruction = 2,
5
+ Resale = 3,
6
+ NewConstruction = 4,
7
+ UpdatedOrRemodeled = 5,
8
+ TeardownValueinLand = 6,
9
+ FixerUpper = 7,
10
+ Good = 8,
11
+ Excellent = 9,
12
+ VeryGood = 10,
13
+ Poor = 11,
14
+ Average = 12,
15
+ Unknown = 13,
16
+ SeeRemarks = 14
17
+ }
@@ -0,0 +1,21 @@
1
+ export var PropertyConditionEnum;
2
+ (function (PropertyConditionEnum) {
3
+ PropertyConditionEnum[PropertyConditionEnum["NotMapped"] = -1] = "NotMapped";
4
+ PropertyConditionEnum[PropertyConditionEnum["ToBeBuilt"] = 1] = "ToBeBuilt";
5
+ PropertyConditionEnum[PropertyConditionEnum["UnderConstruction"] = 2] = "UnderConstruction";
6
+ PropertyConditionEnum[PropertyConditionEnum["Resale"] = 3] = "Resale";
7
+ PropertyConditionEnum[PropertyConditionEnum["NewConstruction"] = 4] = "NewConstruction";
8
+ PropertyConditionEnum[PropertyConditionEnum["UpdatedOrRemodeled"] = 5] = "UpdatedOrRemodeled";
9
+ PropertyConditionEnum[PropertyConditionEnum["TeardownValueinLand"] = 6] = "TeardownValueinLand";
10
+ PropertyConditionEnum[PropertyConditionEnum["FixerUpper"] = 7] = "FixerUpper";
11
+ PropertyConditionEnum[PropertyConditionEnum["Good"] = 8] = "Good";
12
+ PropertyConditionEnum[PropertyConditionEnum["Excellent"] = 9] = "Excellent";
13
+ PropertyConditionEnum[PropertyConditionEnum["VeryGood"] = 10] = "VeryGood";
14
+ PropertyConditionEnum[PropertyConditionEnum["Poor"] = 11] = "Poor";
15
+ PropertyConditionEnum[PropertyConditionEnum["Average"] = 12] = "Average";
16
+ PropertyConditionEnum[PropertyConditionEnum["Unknown"] = 13] = "Unknown";
17
+ PropertyConditionEnum[PropertyConditionEnum["SeeRemarks"] = 14] = "SeeRemarks";
18
+ })(PropertyConditionEnum || (PropertyConditionEnum = {}));
19
+ // Usage example
20
+ // const condition: PropertyConditionEnum = PropertyConditionEnum.NewConstruction;
21
+ // console.log(propertyConditionEnumDisplayNames[condition]); // "New Construction"
@@ -0,0 +1,12 @@
1
+ export declare enum PropertyLevelEnum {
2
+ NotMapped = -1,
3
+ Other = 0,
4
+ One = 1,
5
+ Two = 2,
6
+ OneAndHalf = 3,
7
+ TwoAndHalf = 4,
8
+ ThreeOrMore = 5,
9
+ SplitLevel = 6,
10
+ SplitEntry = 7,
11
+ FrontToBackSplit = 8
12
+ }
@@ -0,0 +1,16 @@
1
+ export var PropertyLevelEnum;
2
+ (function (PropertyLevelEnum) {
3
+ PropertyLevelEnum[PropertyLevelEnum["NotMapped"] = -1] = "NotMapped";
4
+ PropertyLevelEnum[PropertyLevelEnum["Other"] = 0] = "Other";
5
+ PropertyLevelEnum[PropertyLevelEnum["One"] = 1] = "One";
6
+ PropertyLevelEnum[PropertyLevelEnum["Two"] = 2] = "Two";
7
+ PropertyLevelEnum[PropertyLevelEnum["OneAndHalf"] = 3] = "OneAndHalf";
8
+ PropertyLevelEnum[PropertyLevelEnum["TwoAndHalf"] = 4] = "TwoAndHalf";
9
+ PropertyLevelEnum[PropertyLevelEnum["ThreeOrMore"] = 5] = "ThreeOrMore";
10
+ PropertyLevelEnum[PropertyLevelEnum["SplitLevel"] = 6] = "SplitLevel";
11
+ PropertyLevelEnum[PropertyLevelEnum["SplitEntry"] = 7] = "SplitEntry";
12
+ PropertyLevelEnum[PropertyLevelEnum["FrontToBackSplit"] = 8] = "FrontToBackSplit";
13
+ })(PropertyLevelEnum || (PropertyLevelEnum = {}));
14
+ // Usage example
15
+ // const level: PropertyLevelEnum = PropertyLevelEnum.Two;
16
+ // console.log(propertyLevelEnumDisplayNames[level]);
@@ -0,0 +1,11 @@
1
+ export declare enum StreetDirectionEnum {
2
+ NotMapped = -1,
3
+ North = 1,
4
+ NorthEast = 2,
5
+ East = 3,
6
+ SouthEast = 4,
7
+ South = 5,
8
+ SouthWest = 6,
9
+ West = 7,
10
+ NorthWest = 8
11
+ }
@@ -0,0 +1,15 @@
1
+ export var StreetDirectionEnum;
2
+ (function (StreetDirectionEnum) {
3
+ StreetDirectionEnum[StreetDirectionEnum["NotMapped"] = -1] = "NotMapped";
4
+ StreetDirectionEnum[StreetDirectionEnum["North"] = 1] = "North";
5
+ StreetDirectionEnum[StreetDirectionEnum["NorthEast"] = 2] = "NorthEast";
6
+ StreetDirectionEnum[StreetDirectionEnum["East"] = 3] = "East";
7
+ StreetDirectionEnum[StreetDirectionEnum["SouthEast"] = 4] = "SouthEast";
8
+ StreetDirectionEnum[StreetDirectionEnum["South"] = 5] = "South";
9
+ StreetDirectionEnum[StreetDirectionEnum["SouthWest"] = 6] = "SouthWest";
10
+ StreetDirectionEnum[StreetDirectionEnum["West"] = 7] = "West";
11
+ StreetDirectionEnum[StreetDirectionEnum["NorthWest"] = 8] = "NorthWest";
12
+ })(StreetDirectionEnum || (StreetDirectionEnum = {}));
13
+ // Usage example
14
+ // const direction: StreetDirectionEnum = StreetDirectionEnum.East;
15
+ // console.log(streetDirectionEnumDisplayNames[direction]); // "E"
@@ -0,0 +1,245 @@
1
+ export declare enum StreetSuffixEnum {
2
+ NotMapped = -1,
3
+ Alley = 1,
4
+ Anex = 2,
5
+ Arcade = 3,
6
+ Avenue = 4,
7
+ Bayou = 5,
8
+ Beach = 6,
9
+ Bend = 7,
10
+ Bluff = 8,
11
+ Bluffs = 9,
12
+ Bottom = 10,
13
+ Boulevard = 11,
14
+ Branch = 12,
15
+ Bridge = 13,
16
+ Brook = 14,
17
+ Bypass = 15,
18
+ Camp = 16,
19
+ Canyon = 17,
20
+ Cape = 18,
21
+ Causeway = 19,
22
+ Center = 20,
23
+ Circle = 21,
24
+ Circles = 22,
25
+ Cliff = 23,
26
+ Cliffs = 24,
27
+ Club = 25,
28
+ Common = 26,
29
+ Commons = 27,
30
+ Corner = 28,
31
+ Corners = 29,
32
+ Course = 30,
33
+ Court = 31,
34
+ Courts = 32,
35
+ Cove = 33,
36
+ Coves = 34,
37
+ Creek = 35,
38
+ Crescent = 36,
39
+ Crest = 37,
40
+ Crossing = 38,
41
+ Crossroad = 39,
42
+ Crossroads = 40,
43
+ Curve = 41,
44
+ Dale = 42,
45
+ Dam = 43,
46
+ Divide = 44,
47
+ Drive = 45,
48
+ Drives = 46,
49
+ Estate = 47,
50
+ Estates = 48,
51
+ Expressway = 49,
52
+ Extension = 50,
53
+ Fall = 51,
54
+ Falls = 52,
55
+ Ferry = 53,
56
+ Field = 54,
57
+ Fields = 55,
58
+ Flat = 56,
59
+ Flats = 57,
60
+ Ford = 58,
61
+ Forest = 59,
62
+ Forge = 60,
63
+ Fork = 61,
64
+ Fort = 62,
65
+ Freeway = 63,
66
+ Garden = 64,
67
+ Gardens = 65,
68
+ Gateway = 66,
69
+ Glen = 67,
70
+ Green = 68,
71
+ Greens = 69,
72
+ Grove = 70,
73
+ Harbor = 71,
74
+ Haven = 72,
75
+ Heights = 73,
76
+ Highway = 74,
77
+ Hill = 75,
78
+ Hills = 76,
79
+ Hollow = 77,
80
+ Island = 78,
81
+ Islands = 79,
82
+ Isle = 80,
83
+ Junction = 81,
84
+ Key = 82,
85
+ Knoll = 83,
86
+ Knolls = 84,
87
+ Lake = 85,
88
+ Lakes = 86,
89
+ Land = 87,
90
+ Landing = 88,
91
+ Lane = 89,
92
+ Light = 90,
93
+ Lights = 91,
94
+ Lock = 92,
95
+ Lodge = 93,
96
+ Loop = 94,
97
+ Mall = 95,
98
+ Manor = 96,
99
+ Meadow = 97,
100
+ Meadows = 98,
101
+ Mews = 99,
102
+ Mill = 100,
103
+ Mills = 101,
104
+ Mission = 102,
105
+ Mount = 103,
106
+ Mountain = 104,
107
+ Neck = 105,
108
+ Orchard = 106,
109
+ Oval = 107,
110
+ Overpass = 108,
111
+ Park = 109,
112
+ Parkway = 110,
113
+ Pass = 111,
114
+ Passage = 112,
115
+ Path = 113,
116
+ Pike = 114,
117
+ Pine = 115,
118
+ Pines = 116,
119
+ Place = 117,
120
+ Plain = 118,
121
+ Plains = 119,
122
+ Plaza = 120,
123
+ Point = 121,
124
+ Port = 122,
125
+ Prairie = 123,
126
+ Radial = 124,
127
+ Ranch = 125,
128
+ Rapid = 126,
129
+ Rapids = 127,
130
+ Rest = 128,
131
+ Ridge = 129,
132
+ Ridges = 130,
133
+ River = 131,
134
+ Road = 132,
135
+ Roads = 133,
136
+ Route = 134,
137
+ Row = 135,
138
+ Rue = 136,
139
+ Run = 137,
140
+ Shoal = 138,
141
+ Shore = 139,
142
+ Shores = 140,
143
+ Skyway = 141,
144
+ Spring = 142,
145
+ Springs = 143,
146
+ Spur = 144,
147
+ Square = 145,
148
+ Station = 146,
149
+ Stravenue = 147,
150
+ Stream = 148,
151
+ Street = 149,
152
+ Streets = 150,
153
+ Summit = 151,
154
+ Terrace = 152,
155
+ Trace = 153,
156
+ Track = 154,
157
+ Trail = 155,
158
+ Trailer = 156,
159
+ Turnpike = 157,
160
+ Valley = 158,
161
+ Viaduct = 159,
162
+ View = 160,
163
+ Views = 161,
164
+ Village = 162,
165
+ Villages = 163,
166
+ Ville = 164,
167
+ Vista = 165,
168
+ Walk = 166,
169
+ Way = 167,
170
+ Ways = 168,
171
+ Well = 169,
172
+ Wells = 170,
173
+ Brooks = 171,
174
+ Burg = 172,
175
+ Burgs = 173,
176
+ Centers = 174,
177
+ Extensions = 175,
178
+ Fords = 176,
179
+ Forges = 177,
180
+ Forks = 178,
181
+ Glens = 179,
182
+ Groves = 180,
183
+ Harbors = 181,
184
+ Inlet = 182,
185
+ Junctions = 183,
186
+ Keys = 184,
187
+ Loaf = 185,
188
+ Locks = 186,
189
+ Manors = 187,
190
+ Motorway = 188,
191
+ Mountains = 189,
192
+ Parks = 190,
193
+ Parkways = 191,
194
+ Points = 192,
195
+ Ports = 193,
196
+ Ramp = 194,
197
+ Shoals = 195,
198
+ Spurs = 196,
199
+ Squares = 197,
200
+ Throughway = 198,
201
+ Trafficway = 199,
202
+ Tunnel = 200,
203
+ Underpass = 201,
204
+ Union = 202,
205
+ Unions = 203,
206
+ Valleys = 204,
207
+ Walks = 205,
208
+ Wall = 206,
209
+ AveCir = 207,
210
+ AveCt = 208,
211
+ AveDr = 209,
212
+ AveLn = 210,
213
+ AvePkwy = 211,
214
+ AvePl = 212,
215
+ AveRd = 213,
216
+ AveWay = 214,
217
+ Bay = 215,
218
+ Cay = 216,
219
+ CirCt = 217,
220
+ CirDr = 218,
221
+ Crossway = 219,
222
+ CtRd = 220,
223
+ DrRd = 221,
224
+ LnCt = 222,
225
+ LnRd = 223,
226
+ PlCt = 224,
227
+ PlDr = 225,
228
+ SqDr = 226,
229
+ StCir = 227,
230
+ StCt = 228,
231
+ StDr = 229,
232
+ StLn = 230,
233
+ StPl = 231,
234
+ StRd = 232,
235
+ Downs = 233,
236
+ Gate = 234,
237
+ Prom = 235,
238
+ Via = 236,
239
+ Woods = 237,
240
+ Close = 238,
241
+ Trails = 239,
242
+ Mile = 240,
243
+ Chase = 241,
244
+ LaneSpur = 242
245
+ }