samls-js-integration 1.0.64 → 1.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/dist/Enums/ListingTypeEnum.js +0 -3
- package/dist/Enums/PhysicalPropertyTypeEnum.d.ts +19 -19
- package/dist/Enums/PhysicalPropertyTypeEnum.js +19 -19
- package/dist/Enums/index.d.ts +1 -1
- package/dist/Enums/index.js +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# Samls-js-integration
|
|
2
2
|
|
|
3
3
|
The package provides
|
|
4
|
-
* Core http interface as a service to make calls to samls api with axios library.
|
|
5
4
|
* A bunch of ts Models to work with Samls Data, model files have .model filename suffix to make it possible to use them
|
|
6
|
-
easily in libraries supporting OpenApi specification(e.g. @nestjs/swagger).
|
|
5
|
+
easily in libraries supporting to the OpenApi specification(e.g. @nestjs/swagger).
|
|
@@ -18,6 +18,3 @@ var ListingTypeEnum;
|
|
|
18
18
|
ListingTypeEnum[ListingTypeEnum["BoatDockLease"] = 11] = "BoatDockLease";
|
|
19
19
|
ListingTypeEnum[ListingTypeEnum["BusinessOpportunity"] = 12] = "BusinessOpportunity";
|
|
20
20
|
})(ListingTypeEnum || (exports.ListingTypeEnum = ListingTypeEnum = {}));
|
|
21
|
-
// // Usage example
|
|
22
|
-
// const typeName: ListingTypeEnum = ListingTypeEnum.ResidentialSale;
|
|
23
|
-
// console.log(listingTypeEnumDisplayNames[typeName]); // "Residential sale"
|
|
@@ -29,23 +29,23 @@ export declare enum PhysicalPropertyTypeEnum {
|
|
|
29
29
|
HotelMotel = 26,
|
|
30
30
|
Industrial = 27,
|
|
31
31
|
Office = 28,
|
|
32
|
-
Recreation =
|
|
33
|
-
Restaurant =
|
|
34
|
-
Retail =
|
|
35
|
-
SitePlanned =
|
|
36
|
-
SpecialPurpose =
|
|
37
|
-
StockCooperative =
|
|
38
|
-
Warehouse =
|
|
39
|
-
CommercialLand =
|
|
40
|
-
ImprovedLand =
|
|
41
|
-
Land =
|
|
42
|
-
MultifamilyLot =
|
|
43
|
-
MultipleParcels =
|
|
44
|
-
RVLot =
|
|
45
|
-
SingleFamilyLot =
|
|
46
|
-
UnimprovedLand =
|
|
47
|
-
RanchLand =
|
|
48
|
-
AccessoryApartment =
|
|
49
|
-
GarageApartment =
|
|
50
|
-
PUD =
|
|
32
|
+
Recreation = 30,
|
|
33
|
+
Restaurant = 31,
|
|
34
|
+
Retail = 32,
|
|
35
|
+
SitePlanned = 33,
|
|
36
|
+
SpecialPurpose = 34,
|
|
37
|
+
StockCooperative = 35,
|
|
38
|
+
Warehouse = 36,
|
|
39
|
+
CommercialLand = 37,
|
|
40
|
+
ImprovedLand = 38,
|
|
41
|
+
Land = 39,
|
|
42
|
+
MultifamilyLot = 40,
|
|
43
|
+
MultipleParcels = 41,
|
|
44
|
+
RVLot = 42,
|
|
45
|
+
SingleFamilyLot = 43,
|
|
46
|
+
UnimprovedLand = 44,
|
|
47
|
+
RanchLand = 45,
|
|
48
|
+
AccessoryApartment = 46,
|
|
49
|
+
GarageApartment = 47,
|
|
50
|
+
PUD = 48
|
|
51
51
|
}
|
|
@@ -33,23 +33,23 @@ var PhysicalPropertyTypeEnum;
|
|
|
33
33
|
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["HotelMotel"] = 26] = "HotelMotel";
|
|
34
34
|
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Industrial"] = 27] = "Industrial";
|
|
35
35
|
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Office"] = 28] = "Office";
|
|
36
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Recreation"] =
|
|
37
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Restaurant"] =
|
|
38
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Retail"] =
|
|
39
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SitePlanned"] =
|
|
40
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SpecialPurpose"] =
|
|
41
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["StockCooperative"] =
|
|
42
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Warehouse"] =
|
|
43
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CommercialLand"] =
|
|
44
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ImprovedLand"] =
|
|
45
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Land"] =
|
|
46
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultifamilyLot"] =
|
|
47
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultipleParcels"] =
|
|
48
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RVLot"] =
|
|
49
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamilyLot"] =
|
|
50
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["UnimprovedLand"] =
|
|
51
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RanchLand"] =
|
|
52
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AccessoryApartment"] =
|
|
53
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["GarageApartment"] =
|
|
54
|
-
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["PUD"] =
|
|
36
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Recreation"] = 30] = "Recreation";
|
|
37
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Restaurant"] = 31] = "Restaurant";
|
|
38
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Retail"] = 32] = "Retail";
|
|
39
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SitePlanned"] = 33] = "SitePlanned";
|
|
40
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SpecialPurpose"] = 34] = "SpecialPurpose";
|
|
41
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["StockCooperative"] = 35] = "StockCooperative";
|
|
42
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Warehouse"] = 36] = "Warehouse";
|
|
43
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["CommercialLand"] = 37] = "CommercialLand";
|
|
44
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["ImprovedLand"] = 38] = "ImprovedLand";
|
|
45
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["Land"] = 39] = "Land";
|
|
46
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultifamilyLot"] = 40] = "MultifamilyLot";
|
|
47
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["MultipleParcels"] = 41] = "MultipleParcels";
|
|
48
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RVLot"] = 42] = "RVLot";
|
|
49
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["SingleFamilyLot"] = 43] = "SingleFamilyLot";
|
|
50
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["UnimprovedLand"] = 44] = "UnimprovedLand";
|
|
51
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["RanchLand"] = 45] = "RanchLand";
|
|
52
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["AccessoryApartment"] = 46] = "AccessoryApartment";
|
|
53
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["GarageApartment"] = 47] = "GarageApartment";
|
|
54
|
+
PhysicalPropertyTypeEnum[PhysicalPropertyTypeEnum["PUD"] = 48] = "PUD";
|
|
55
55
|
})(PhysicalPropertyTypeEnum || (exports.PhysicalPropertyTypeEnum = PhysicalPropertyTypeEnum = {}));
|
package/dist/Enums/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './PhysicalPropertyTypeEnum';
|
|
1
2
|
export * from './AgentTypeEnum';
|
|
2
3
|
export * from './AssociationFeeFrequencyEnum';
|
|
3
4
|
export * from './AuthenticationTypeEnum';
|
|
@@ -11,7 +12,6 @@ export * from './ListingTypeEnum';
|
|
|
11
12
|
export * from './MLSEnum';
|
|
12
13
|
export * from './OrderByOptions';
|
|
13
14
|
export * from './OwnershipTypeEnum';
|
|
14
|
-
export * from './PhysicalPropertyTypeEnum';
|
|
15
15
|
export * from './PhysicalPropertyClassEnum';
|
|
16
16
|
export * from './PlatformEnum';
|
|
17
17
|
export * from './ProcessingStatusEnum';
|
package/dist/Enums/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./PhysicalPropertyTypeEnum"), exports);
|
|
17
18
|
__exportStar(require("./AgentTypeEnum"), exports);
|
|
18
19
|
__exportStar(require("./AssociationFeeFrequencyEnum"), exports);
|
|
19
20
|
__exportStar(require("./AuthenticationTypeEnum"), exports);
|
|
@@ -27,7 +28,6 @@ __exportStar(require("./ListingTypeEnum"), exports);
|
|
|
27
28
|
__exportStar(require("./MLSEnum"), exports);
|
|
28
29
|
__exportStar(require("./OrderByOptions"), exports);
|
|
29
30
|
__exportStar(require("./OwnershipTypeEnum"), exports);
|
|
30
|
-
__exportStar(require("./PhysicalPropertyTypeEnum"), exports);
|
|
31
31
|
__exportStar(require("./PhysicalPropertyClassEnum"), exports);
|
|
32
32
|
__exportStar(require("./PlatformEnum"), exports);
|
|
33
33
|
__exportStar(require("./ProcessingStatusEnum"), exports);
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -14,11 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./Enums"), exports);
|
|
18
18
|
__exportStar(require("./Common"), exports);
|
|
19
19
|
__exportStar(require("./Address"), exports);
|
|
20
20
|
__exportStar(require("./Agent"), exports);
|
|
21
|
-
__exportStar(require("./Enums"), exports);
|
|
22
21
|
__exportStar(require("./Feature"), exports);
|
|
23
22
|
__exportStar(require("./Mls"), exports);
|
|
24
23
|
__exportStar(require("./Listing"), exports);
|