samls-js-integration 1.0.53 → 1.0.55
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/Common/Point.js +0 -1
- package/dist/Feature/{FeatureModel.d.ts → Feature.model.d.ts} +2 -2
- package/dist/Feature/index.d.ts +3 -3
- package/dist/Feature/index.js +3 -3
- package/dist/Listing/ClusteringFilterRequestBase.model.d.ts +7 -0
- package/dist/Listing/ClusteringFilterRequestBase.model.js +11 -17
- package/dist/Listing/GetMapListingsRequest.model.d.ts +7 -0
- package/dist/Listing/GetMapListingsRequest.model.js +12 -0
- package/dist/Listing/index.d.ts +3 -2
- package/dist/Listing/index.js +3 -2
- package/package.json +2 -2
- /package/dist/Feature/{CategoryModel.d.ts → Category.model.d.ts} +0 -0
- /package/dist/Feature/{CategoryModel.js → Category.model.js} +0 -0
- /package/dist/Feature/{FeatureModel.js → Feature.model.js} +0 -0
- /package/dist/Feature/{SubCategoryModel.d.ts → SubCategory.model.d.ts} +0 -0
- /package/dist/Feature/{SubCategoryModel.js → SubCategory.model.js} +0 -0
package/dist/Common/Point.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CategoryModel } from './
|
|
2
|
-
import { SubCategoryModel } from './
|
|
1
|
+
import { CategoryModel } from './Category.model';
|
|
2
|
+
import { SubCategoryModel } from './SubCategory.model';
|
|
3
3
|
export declare class FeatureModel {
|
|
4
4
|
id: number;
|
|
5
5
|
name: string;
|
package/dist/Feature/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
1
|
+
export * from './Category.model';
|
|
2
|
+
export * from './Feature.model';
|
|
3
|
+
export * from './SubCategory.model';
|
package/dist/Feature/index.js
CHANGED
|
@@ -14,6 +14,6 @@ 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("./
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./Category.model"), exports);
|
|
18
|
+
__exportStar(require("./Feature.model"), exports);
|
|
19
|
+
__exportStar(require("./SubCategory.model"), exports);
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
// public class ClusteringFilterRequestModel : ClusteringFilterRequestBaseModel
|
|
16
|
-
// {
|
|
17
|
-
// public Geometry Polygon { get; set; }
|
|
18
|
-
// }
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ClusteringFilterRequestModel = void 0;
|
|
4
|
+
const Common_1 = require("../Common");
|
|
5
|
+
class ClusteringFilterRequestModel {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.zoomLevel = 0;
|
|
8
|
+
this.polygon = null;
|
|
9
|
+
this.query = new Common_1.GlobalQueryModel();
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.ClusteringFilterRequestModel = ClusteringFilterRequestModel;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetMapListingsRequestBaseModel = void 0;
|
|
4
|
+
const Common_1 = require("../Common");
|
|
5
|
+
class GetMapListingsRequestBaseModel {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.zoomLevel = 0;
|
|
8
|
+
this.polygon = null;
|
|
9
|
+
this.query = new Common_1.GlobalQueryModel();
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.GetMapListingsRequestBaseModel = GetMapListingsRequestBaseModel;
|
package/dist/Listing/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
export * from './IListingTypeGroups.model';
|
|
1
2
|
export * from './Listing.model';
|
|
2
|
-
export * from './GetListingsByFilterRequest.model';
|
|
3
3
|
export * from './Property.model';
|
|
4
4
|
export * from './GetByMlsIdRequest.model';
|
|
5
5
|
export * from './GetByIdRequest.model';
|
|
@@ -8,4 +8,5 @@ export * from './RentPrice.model';
|
|
|
8
8
|
export * from './WalkScore.model';
|
|
9
9
|
export * from './OpenHouse.model';
|
|
10
10
|
export * from './Photo.model';
|
|
11
|
-
export * from './
|
|
11
|
+
export * from './GetListingsByFilterRequest.model';
|
|
12
|
+
export * from './GetMapListingsRequest.model';
|
package/dist/Listing/index.js
CHANGED
|
@@ -14,8 +14,8 @@ 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("./IListingTypeGroups.model"), exports);
|
|
17
18
|
__exportStar(require("./Listing.model"), exports);
|
|
18
|
-
__exportStar(require("./GetListingsByFilterRequest.model"), exports);
|
|
19
19
|
__exportStar(require("./Property.model"), exports);
|
|
20
20
|
__exportStar(require("./GetByMlsIdRequest.model"), exports);
|
|
21
21
|
__exportStar(require("./GetByIdRequest.model"), exports);
|
|
@@ -24,4 +24,5 @@ __exportStar(require("./RentPrice.model"), exports);
|
|
|
24
24
|
__exportStar(require("./WalkScore.model"), exports);
|
|
25
25
|
__exportStar(require("./OpenHouse.model"), exports);
|
|
26
26
|
__exportStar(require("./Photo.model"), exports);
|
|
27
|
-
__exportStar(require("./
|
|
27
|
+
__exportStar(require("./GetListingsByFilterRequest.model"), exports);
|
|
28
|
+
__exportStar(require("./GetMapListingsRequest.model"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "samls-js-integration",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.55",
|
|
4
4
|
"description": "samls npm package",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "",
|
|
19
19
|
"license": "ISC",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"
|
|
21
|
+
"@types/geojson": "^7946.0.13"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@rollup/plugin-json": "^6.0.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|