samls-js-integration 1.1.69 → 1.1.72
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,6 +1,7 @@
|
|
|
1
1
|
import { AddressDetailModel } from './AddressDetailModel';
|
|
2
|
-
import { ListingAgencyEnum } from
|
|
2
|
+
import { ListingAgencyEnum, MLSEnum } from '../Enums';
|
|
3
3
|
export declare class AddressDetailExtendedModel extends AddressDetailModel {
|
|
4
|
+
sourceMlsId: keyof typeof MLSEnum;
|
|
4
5
|
internetAddressDisplayYN: boolean | null;
|
|
5
6
|
internetEntireListingDisplayYN: boolean | null;
|
|
6
7
|
listingAgency: keyof typeof ListingAgencyEnum;
|
|
@@ -5,6 +5,7 @@ const AddressDetailModel_1 = require("./AddressDetailModel");
|
|
|
5
5
|
class AddressDetailExtendedModel extends AddressDetailModel_1.AddressDetailModel {
|
|
6
6
|
constructor() {
|
|
7
7
|
super(...arguments);
|
|
8
|
+
this.sourceMlsId = 'NotMapped';
|
|
8
9
|
this.internetAddressDisplayYN = null;
|
|
9
10
|
this.internetEntireListingDisplayYN = null;
|
|
10
11
|
this.listingAgency = 'Other';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ListingStatusEnumKeys, ListingAgencyEnum } from '../Enums';
|
|
1
|
+
import { ListingStatusEnumKeys, ListingAgencyEnum, MLSEnum } from '../Enums';
|
|
2
2
|
import { OpenHouseLiteModel } from './OpenHouseLite.model';
|
|
3
3
|
import { RentPriceModel } from './RentPrice.model';
|
|
4
4
|
export declare class ClusteringFilterResponseModel {
|
|
@@ -20,6 +20,7 @@ export interface NonClusteredListingsInfo {
|
|
|
20
20
|
listPrice: number | null;
|
|
21
21
|
closePrice: number | null;
|
|
22
22
|
pricePrefix: string | null;
|
|
23
|
+
sourceMlsId: keyof typeof MLSEnum;
|
|
23
24
|
listingEntryTimestamp: string | null;
|
|
24
25
|
internetAddressDisplayYN: boolean | null;
|
|
25
26
|
internetEntireListingDisplayYN: boolean | null;
|