samls-js-integration 1.1.26 → 1.1.28
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/Address/AddressQueryModel.d.ts +1 -0
- package/dist/Address/AddressQueryModel.js +1 -0
- package/dist/Mls/MlsInfo.model.d.ts +20 -0
- package/dist/Mls/MlsInfo.model.js +25 -0
- package/dist/Mls/MlsState.model.d.ts +5 -0
- package/dist/Mls/MlsState.model.js +11 -0
- package/dist/Mls/index.d.ts +2 -1
- package/dist/Mls/index.js +2 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/package.json +1 -1
- package/dist/Mls/MlsInfoModel.d.ts +0 -8
- package/dist/Mls/MlsInfoModel.js +0 -14
|
@@ -4,6 +4,7 @@ import { ContextTypeEnum } from '../Enums/Listing/ContextType.enum';
|
|
|
4
4
|
import { ListingStatusEnum } from '../Enums';
|
|
5
5
|
export declare class AddressQueryModel extends GlobalQueryModel {
|
|
6
6
|
fullAddress: string;
|
|
7
|
+
internetAddressDisplayYN: boolean | null;
|
|
7
8
|
listingStatuses: ListingStatusEnum[];
|
|
8
9
|
contextType: ContextTypeEnum;
|
|
9
10
|
listingTypeClass: ListingTypeClassEnumKeys | null;
|
|
@@ -7,6 +7,7 @@ class AddressQueryModel extends Common_1.GlobalQueryModel {
|
|
|
7
7
|
constructor(data, superData) {
|
|
8
8
|
super(superData);
|
|
9
9
|
this.fullAddress = '';
|
|
10
|
+
this.internetAddressDisplayYN = null;
|
|
10
11
|
this.listingStatuses = [];
|
|
11
12
|
this.contextType = ContextType_enum_1.ContextTypeEnum.Both;
|
|
12
13
|
this.listingTypeClass = null;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { MlsStateModel } from './MlsState.model';
|
|
2
|
+
export declare class MlsInfoModel {
|
|
3
|
+
id: number;
|
|
4
|
+
mls: string;
|
|
5
|
+
mlsName: string;
|
|
6
|
+
publicLogoUrl: string;
|
|
7
|
+
privateLogoUrl: string;
|
|
8
|
+
isLogoRequired: boolean;
|
|
9
|
+
isMlsNameRequired: boolean;
|
|
10
|
+
isIDXInfoRequired: boolean;
|
|
11
|
+
isOfficeNameRequired: boolean;
|
|
12
|
+
isAgentsLicenseRequired: boolean;
|
|
13
|
+
isPrimaryAgentPhoneRequired: boolean;
|
|
14
|
+
isPrimaryAgentEmailRequired: boolean;
|
|
15
|
+
isSecondaryAgentPhoneRequired: boolean;
|
|
16
|
+
isSecondaryAgentEmailRequired: boolean;
|
|
17
|
+
isPrimaryAgentFullNameRequired: boolean;
|
|
18
|
+
isSecondaryAgentFullNameRequired: boolean;
|
|
19
|
+
mlsStates: MlsStateModel[];
|
|
20
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MlsInfoModel = void 0;
|
|
4
|
+
class MlsInfoModel {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.id = 0;
|
|
7
|
+
this.mls = '';
|
|
8
|
+
this.mlsName = '';
|
|
9
|
+
this.publicLogoUrl = '';
|
|
10
|
+
this.privateLogoUrl = '';
|
|
11
|
+
this.isLogoRequired = false;
|
|
12
|
+
this.isMlsNameRequired = false;
|
|
13
|
+
this.isIDXInfoRequired = false;
|
|
14
|
+
this.isOfficeNameRequired = false;
|
|
15
|
+
this.isAgentsLicenseRequired = false;
|
|
16
|
+
this.isPrimaryAgentPhoneRequired = false;
|
|
17
|
+
this.isPrimaryAgentEmailRequired = false;
|
|
18
|
+
this.isSecondaryAgentPhoneRequired = false;
|
|
19
|
+
this.isSecondaryAgentEmailRequired = false;
|
|
20
|
+
this.isPrimaryAgentFullNameRequired = false;
|
|
21
|
+
this.isSecondaryAgentFullNameRequired = false;
|
|
22
|
+
this.mlsStates = [];
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.MlsInfoModel = MlsInfoModel;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MlsStateModel = void 0;
|
|
4
|
+
class MlsStateModel {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.id = 0;
|
|
7
|
+
this.name = null;
|
|
8
|
+
this.shortName = null;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.MlsStateModel = MlsStateModel;
|
package/dist/Mls/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './MlsInfo.model';
|
|
2
|
+
export * from './MlsState.model';
|
package/dist/Mls/index.js
CHANGED
|
@@ -14,4 +14,5 @@ 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("./MlsInfo.model"), exports);
|
|
18
|
+
__exportStar(require("./MlsState.model"), exports);
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './Mls';
|
|
2
2
|
export * from './Enums';
|
|
3
|
+
export * from './PData';
|
|
4
|
+
export * from './Agent';
|
|
5
|
+
export * from './School';
|
|
3
6
|
export * from './Common';
|
|
4
7
|
export * from './Address';
|
|
5
|
-
export * from './Agent';
|
|
6
8
|
export * from './Feature';
|
|
7
|
-
export * from './Mls';
|
|
8
9
|
export * from './Listing';
|
|
9
|
-
export * from './School';
|
|
10
10
|
export * from './Polygon';
|
|
11
|
-
export * from './
|
|
11
|
+
export * from './Entities';
|
package/dist/index.js
CHANGED
|
@@ -14,14 +14,14 @@ 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("./Mls"), exports);
|
|
18
18
|
__exportStar(require("./Enums"), exports);
|
|
19
|
+
__exportStar(require("./PData"), exports);
|
|
20
|
+
__exportStar(require("./Agent"), exports);
|
|
21
|
+
__exportStar(require("./School"), exports);
|
|
19
22
|
__exportStar(require("./Common"), exports);
|
|
20
23
|
__exportStar(require("./Address"), exports);
|
|
21
|
-
__exportStar(require("./Agent"), exports);
|
|
22
24
|
__exportStar(require("./Feature"), exports);
|
|
23
|
-
__exportStar(require("./Mls"), exports);
|
|
24
25
|
__exportStar(require("./Listing"), exports);
|
|
25
|
-
__exportStar(require("./School"), exports);
|
|
26
26
|
__exportStar(require("./Polygon"), exports);
|
|
27
|
-
__exportStar(require("./
|
|
27
|
+
__exportStar(require("./Entities"), exports);
|
package/package.json
CHANGED
package/dist/Mls/MlsInfoModel.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MlsInfoModel = void 0;
|
|
4
|
-
class MlsInfoModel {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.id = 0;
|
|
7
|
-
this.mls = '';
|
|
8
|
-
this.mlsName = '';
|
|
9
|
-
this.publicLogoUrl = '';
|
|
10
|
-
this.privateLogoUrl = '';
|
|
11
|
-
this.isLogoRequired = false;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.MlsInfoModel = MlsInfoModel;
|