samls-js-integration 1.0.96 → 1.0.97
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListingAgencyEnum = void 0;
|
|
4
|
+
var ListingAgencyEnum;
|
|
5
|
+
(function (ListingAgencyEnum) {
|
|
6
|
+
ListingAgencyEnum[ListingAgencyEnum["Other"] = 0] = "Other";
|
|
7
|
+
ListingAgencyEnum[ListingAgencyEnum["DouglasElliman"] = 1] = "DouglasElliman";
|
|
8
|
+
})(ListingAgencyEnum || (exports.ListingAgencyEnum = ListingAgencyEnum = {}));
|
|
@@ -7,6 +7,7 @@ import { WalkScoreModel } from './WalkScore.model';
|
|
|
7
7
|
import { OpenHouseModel } from './OpenHouse.model';
|
|
8
8
|
import { PhotoModel } from './Photo.model';
|
|
9
9
|
import { SchoolModel } from '../School';
|
|
10
|
+
import { ListingAgencyEnum } from '../Enums/ListingAgencyEnum.enum';
|
|
10
11
|
export declare class ListingModel {
|
|
11
12
|
id: number;
|
|
12
13
|
availabilityDate: string | null;
|
|
@@ -25,6 +26,7 @@ export declare class ListingModel {
|
|
|
25
26
|
internetEntireListingDisplayYN: boolean | null;
|
|
26
27
|
lastModificationTimestamp: string | null;
|
|
27
28
|
leaseTerm: string;
|
|
29
|
+
listingAgencyEnum: ListingAgencyEnum;
|
|
28
30
|
listingAgreement: string;
|
|
29
31
|
listingEntryTimestamp: string | null;
|
|
30
32
|
listingId: string;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ListingModel = void 0;
|
|
4
4
|
const Enums_1 = require("../Enums");
|
|
5
|
+
const ListingAgencyEnum_enum_1 = require("../Enums/ListingAgencyEnum.enum");
|
|
5
6
|
class ListingModel {
|
|
6
7
|
constructor() {
|
|
7
8
|
this.id = 0;
|
|
@@ -21,6 +22,7 @@ class ListingModel {
|
|
|
21
22
|
this.internetEntireListingDisplayYN = null;
|
|
22
23
|
this.lastModificationTimestamp = null;
|
|
23
24
|
this.leaseTerm = '';
|
|
25
|
+
this.listingAgencyEnum = ListingAgencyEnum_enum_1.ListingAgencyEnum.Other;
|
|
24
26
|
this.listingAgreement = '';
|
|
25
27
|
this.listingEntryTimestamp = null;
|
|
26
28
|
this.listingId = '';
|