spartaxx.businessmodels 1.0.272 → 1.0.273

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/CCC/CCCModel.ts CHANGED
@@ -26,8 +26,9 @@ import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
26
26
  import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
27
27
  import { ClientInputForm } from "./ClientInputForm";
28
28
  import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
29
- import {DynamicDMFormParams} from "CCC/DynamicDMFormParams";
30
- import {DynamicDMFormClientInputData} from "CCC/DynamicDMFormClientInputData";
29
+ import { DynamicDMFormParams } from "CCC/DynamicDMFormParams";
30
+ import { DynamicDMFormClientInputData } from "CCC/DynamicDMFormClientInputData";
31
+ import { DMpropertySurveyClientInfo } from "CCC/DMpropertySurveyClientInfo";
31
32
 
32
33
  export {
33
34
  ScoreCardDetails,
@@ -63,5 +64,6 @@ export {
63
64
  ClientInputForm,
64
65
  ValidateClientSignWithDocuFirstAPIParam,
65
66
  DynamicDMFormParams,
66
- DynamicDMFormClientInputData
67
+ DynamicDMFormClientInputData,
68
+ DMpropertySurveyClientInfo
67
69
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,40 @@
1
+ export interface DMpropertySurveyClientInfo {
2
+ AccountNumber?: string;
3
+ AccountId?: number;
4
+ ClientNumber?: string;
5
+ ClientName?: string;
6
+ ClientId?: number;
7
+ PropertyAddr?: string;
8
+ County?: string;
9
+ CountyId?: number;
10
+ TaxYear?: number;
11
+ BuildingSqFT?: number;
12
+ BuildingValue?: number;
13
+ LandSqFT?: number;
14
+ LandValue?: number;
15
+ YearBuilt?: number;
16
+ RemodelYear?: number;
17
+ Grade?: string;
18
+ CDU?: string;
19
+ HOMvalueOpinion?: string;
20
+ OwnerOccupied?: string;
21
+ HomeSoldLast24months?: string;
22
+ SoldListingPrice?: string;
23
+ HasStructureFloodedBefore?: string;
24
+ HowManyTimes?: number;
25
+ LastFloodingDate?: Date;
26
+ StillConditionIssues?: string;
27
+ Remarks?: string;
28
+ Remodeled?: string;
29
+ RemodeledType?: string;
30
+ ActionID?: number;
31
+ ActionType?: string;
32
+ IsPropertyInFloodZone?: string;
33
+ RepairsForCurrentTaxYear?: string;
34
+ AllDamageRepaired?: string;
35
+ HomeInsuranceCoverage?: string;
36
+ PleaseDescribe?: string;
37
+ AnyAtypicalCharacteristics?: string;
38
+ AdditionalComments?: string;
39
+ PropertyDetailsId?: number;
40
+ }
@@ -2,51 +2,15 @@ import { DMUnit } from "./DMUnit";
2
2
  import { DMCategory } from "./DMCategory";
3
3
  import { DMQuestion } from "./DMQuestion";
4
4
  import { DMSpecifiedConditions } from "./DMSpecifiedConditions";
5
+ import { DMpropertySurveyClientInfo } from "./DMpropertySurveyClientInfo";
5
6
 
6
7
  export interface DMpropertySurveyClientInputs {
7
- AccountNumber?: string;
8
- AccountId?: number;
9
- ClientNumber?: string;
10
- ClientName?: string;
11
- ClientId?: number;
12
- PropertyAddr?: string;
13
- County?: string;
14
- CountyId?: number;
15
- TaxYear?: number;
16
- BuildingSqFT?: number;
17
- BuildingValue?: number;
18
- LandSqFT?: number;
19
- LandValue?: number;
20
- YearBuilt?: number;
21
- RemodelYear?: number;
22
- Grade?: string;
23
- CDU?: string;
24
- HOMvalueOpinion?: string;
25
- OwnerOccupied?: string;
26
- HomeSoldLast24months?: string;
27
- SoldListingPrice?: string;
28
- HasStructureFloodedBefore?: string;
29
- HowManyTimes?: number;
30
- LastFloodingDate?: Date;
31
- StillConditionIssues?: string;
32
- Remarks?: string;
33
- Remodeled?: string;
34
- RemodeledType?: string;
35
- ActionID?: number;
36
- ActionType?: string;
37
- IsPropertyInFloodZone?: string;
38
- RepairsForCurrentTaxYear?: string;
39
- AllDamageRepaired?: string;
40
- HomeInsuranceCoverage?: string;
41
- PleaseDescribe?: string;
42
- AnyAtypicalCharacteristics?: string;
43
- AdditionalComments?: string;
44
- PropertyDetailsId?: number;
45
- DMUnit?: DMUnit;
46
- DMCategory?: DMCategory;
47
- DMQuestion?: DMQuestion;
48
- DMSpecifiedConditions?: DMSpecifiedConditions;
8
+ DMUnit?: DMUnit[];
9
+ DMCategory?: DMCategory[];
10
+ DMQuestion?: DMQuestion[];
11
+ DMSpecifiedConditions?: DMSpecifiedConditions[];
49
12
  IsBlank?: boolean;
13
+ DMpropertySurveyClientInfo?: DMpropertySurveyClientInfo;
50
14
  }
51
15
 
52
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.272",
3
+ "version": "1.0.273",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {