spartaxx.businessmodels 1.0.224 → 1.0.225

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.
@@ -3,6 +3,7 @@ export interface AccountInfo {
3
3
  AccountId?: number;
4
4
  AccountNumber?: number;
5
5
  PropertyType?: string;
6
+ OCALUCTypeType?: string;
6
7
  CountyName?: string;
7
8
  CountyState?: string;
8
9
  AccountStatus?: string;
package/CCC/CCCModel.ts CHANGED
@@ -21,6 +21,7 @@ import { DMpropertySurveyClientInputs } from "./DMpropertySurveyClientInputs";
21
21
  import { DMQuestionImage } from "./DMQuestionImage";
22
22
  import { DMImageInfos } from "./DMImageInfos";
23
23
  import { ClientPackageParam } from "./ClientPackageParam";
24
+ import { CCCClientContactFormInfo } from "Common/CCCClientContactFormInfo";
24
25
 
25
26
  export {
26
27
  ScoreCardDetails,
@@ -45,5 +46,6 @@ export {
45
46
  DMpropertySurveyClientInputs,
46
47
  DMQuestionImage,
47
48
  DMImageInfos,
48
- ClientPackageParam
49
+ ClientPackageParam,
50
+ CCCClientContactFormInfo
49
51
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export interface ClientContactInfo {
2
+ FirstName?: string;
3
+ LastName?: string;
4
+ Email?: string;
5
+ AlternateEmail?: string;
6
+ AddressLine1?: string;
7
+ AddressLine2?: string;
8
+ AddressLine3?: string;
9
+ AddressLine4?: string;
10
+ CityId?: number;
11
+ StateId?: number;
12
+ ZipCode?: string;
13
+ Phone?: string;
14
+ }
@@ -14,7 +14,7 @@ import { ClientTypeInfo } from "./ClientTypeInfo";
14
14
  import { AgentTypeInfo } from "./AgentTypeInfo";
15
15
  import { AgentNameInfo } from "./AgentNameInfo";
16
16
  import { ParishNameInfo } from "./ParishNameInfo";
17
-
17
+
18
18
  export interface ClientSetupModels{
19
19
  State: StateInfo,
20
20
  City: CityInfo,
@@ -202,6 +202,7 @@ export interface AppConfigHub {
202
202
  CompanyTollFree?: string;
203
203
  CompanyFax?: string;
204
204
  ClientPortalUrl?: string;
205
+ ClientPortalUrlLabel?: string;
205
206
  TaxYear?: string;
206
207
  NextYear?: string;
207
208
  AppraisalAddress?: string;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { ClientContactInfo } from "ClientSetup/ClientContactInfo";
2
+ import { CityInfo } from "ClientSetup/CityInfo";
3
+ import { StateInfo } from "ClientSetup/StateInfo";
4
+
5
+ export interface CCCClientContactFormInfo {
6
+ ClientContactInfo?: ClientContactInfo;
7
+ CityInfo?: CityInfo[];
8
+ StateInfo?: StateInfo[];
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.224",
3
+ "version": "1.0.225",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {