spartaxx.businessmodels 1.0.271 → 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 +7 -1
- package/CCC/DMpropertySurveyClientInfo.js +2 -0
- package/CCC/DMpropertySurveyClientInfo.ts +40 -0
- package/CCC/DMpropertySurveyClientInputs.ts +6 -42
- package/CCC/DynamicDMFormClientInputData.js +2 -0
- package/CCC/DynamicDMFormClientInputData.ts +5 -0
- package/CCC/DynamicDMFormParams.js +2 -0
- package/CCC/DynamicDMFormParams.ts +10 -0
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -26,6 +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";
|
31
|
+
import { DMpropertySurveyClientInfo } from "CCC/DMpropertySurveyClientInfo";
|
29
32
|
|
30
33
|
export {
|
31
34
|
ScoreCardDetails,
|
@@ -59,5 +62,8 @@ export {
|
|
59
62
|
ClientPhoneInfo,
|
60
63
|
createDefaultClientPhoneInfo,
|
61
64
|
ClientInputForm,
|
62
|
-
ValidateClientSignWithDocuFirstAPIParam
|
65
|
+
ValidateClientSignWithDocuFirstAPIParam,
|
66
|
+
DynamicDMFormParams,
|
67
|
+
DynamicDMFormClientInputData,
|
68
|
+
DMpropertySurveyClientInfo
|
63
69
|
}
|
@@ -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
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
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
|
|