samls-js-integration 1.1.72 → 1.1.74

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.
@@ -5,7 +5,7 @@ export declare class OfficeModel {
5
5
  officeCity: string;
6
6
  officeEmail: string;
7
7
  officeLocation: string;
8
- officeMls: MLSEnum | null;
8
+ officeMls: keyof typeof MLSEnum | null;
9
9
  officeMlsId: string;
10
10
  officeName: string;
11
11
  officeNeighborhood: string;
@@ -12,6 +12,8 @@ export declare class MlsInfoModel {
12
12
  isIDXTextRequired: boolean;
13
13
  isMlsNameRequired: boolean;
14
14
  isOfficeNameRequired: boolean;
15
+ isOfficeEmailRequired: boolean;
16
+ isOfficePhoneRequired: boolean;
15
17
  isAgentsLicenseRequired: boolean;
16
18
  isPrimaryAgentPhoneRequired: boolean;
17
19
  isPrimaryAgentEmailRequired: boolean;
@@ -15,6 +15,8 @@ class MlsInfoModel {
15
15
  this.isIDXTextRequired = false;
16
16
  this.isMlsNameRequired = false;
17
17
  this.isOfficeNameRequired = false;
18
+ this.isOfficeEmailRequired = false;
19
+ this.isOfficePhoneRequired = false;
18
20
  this.isAgentsLicenseRequired = false;
19
21
  this.isPrimaryAgentPhoneRequired = false;
20
22
  this.isPrimaryAgentEmailRequired = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.1.72",
3
+ "version": "1.1.74",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",