samls-js-integration 1.0.78 → 1.0.80

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.
@@ -1,4 +1,4 @@
1
1
  export declare class PaginationOptions {
2
- Page: number;
3
- Count: number;
2
+ page: number;
3
+ count: number;
4
4
  }
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PaginationOptions = void 0;
4
4
  class PaginationOptions {
5
5
  constructor() {
6
- this.Page = 0;
7
- this.Count = 0;
6
+ this.page = 0;
7
+ this.count = 0;
8
8
  }
9
9
  }
10
10
  exports.PaginationOptions = PaginationOptions;
@@ -0,0 +1,10 @@
1
+ import { PaginationOptions } from '../Common';
2
+ import { MLSEnum, AgentTypeEnum } from '../Enums';
3
+ export declare class GetByAgentRequestModel extends PaginationOptions {
4
+ agentMlsId: string;
5
+ activeStatusGroup: boolean;
6
+ mlsId: MLSEnum;
7
+ fields: string[];
8
+ agentTypes: AgentTypeEnum[];
9
+ constructor(data?: Partial<GetByAgentRequestModel>);
10
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetByAgentRequestModel = void 0;
4
+ const Common_1 = require("../Common");
5
+ const Enums_1 = require("../Enums");
6
+ class GetByAgentRequestModel extends Common_1.PaginationOptions {
7
+ constructor(data) {
8
+ super();
9
+ this.agentMlsId = '';
10
+ this.activeStatusGroup = true;
11
+ this.mlsId = Enums_1.MLSEnum.NotMapped;
12
+ this.fields = [];
13
+ this.agentTypes = [];
14
+ data && Object.assign(this, data);
15
+ }
16
+ }
17
+ exports.GetByAgentRequestModel = GetByAgentRequestModel;
@@ -10,3 +10,4 @@ export * from './OpenHouse.model';
10
10
  export * from './Photo.model';
11
11
  export * from './GetListingsByFilterRequest.model';
12
12
  export * from './GetMapListingsRequest.model';
13
+ export * from './GetByAgentRequest.model';
@@ -26,3 +26,4 @@ __exportStar(require("./OpenHouse.model"), exports);
26
26
  __exportStar(require("./Photo.model"), exports);
27
27
  __exportStar(require("./GetListingsByFilterRequest.model"), exports);
28
28
  __exportStar(require("./GetMapListingsRequest.model"), exports);
29
+ __exportStar(require("./GetByAgentRequest.model"), exports);
package/dist/index.d.ts CHANGED
@@ -6,5 +6,6 @@ export * from './Agent';
6
6
  export * from './Feature';
7
7
  export * from './Mls';
8
8
  export * from './Listing';
9
+ export * from './School';
9
10
  export * from './Polygon';
10
11
  export * from './PData';
package/dist/index.js CHANGED
@@ -22,5 +22,6 @@ __exportStar(require("./Agent"), exports);
22
22
  __exportStar(require("./Feature"), exports);
23
23
  __exportStar(require("./Mls"), exports);
24
24
  __exportStar(require("./Listing"), exports);
25
+ __exportStar(require("./School"), exports);
25
26
  __exportStar(require("./Polygon"), exports);
26
27
  __exportStar(require("./PData"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",