spartaxx.businessmodels 1.0.315 → 1.0.318
Sign up to get free protection for your applications and to get access to all the features.
@@ -16,46 +16,46 @@ YearBuilt?: number;
|
|
16
16
|
RemodelYear?: number;
|
17
17
|
Grade?: string;
|
18
18
|
CDU?: string;
|
19
|
-
|
20
|
-
OwnerOccupied?:
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
|
20
|
+
OwnerOccupied?: number;
|
21
|
+
Remodeled?: number;
|
22
|
+
RemodeledType?: number;
|
23
|
+
IsPropertyInFloodZone?: number;
|
24
|
+
RepairsForCurrentTaxYear?: number;
|
25
|
+
AllDamageRepaired?: number;
|
26
|
+
HomeInsuranceCoverage?: number;
|
27
|
+
PleaseDescribe?: string;
|
24
28
|
HowManyTimes?: number;
|
25
29
|
LastFloodingDate?: string;
|
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
30
|
AnyAtypicalCharacteristics?: string;
|
38
|
-
AdditionalComments?: string;
|
39
|
-
PropertyDetailsId?: number;
|
40
31
|
SidingAndExteriorComments?: string;
|
32
|
+
SidingAndExteriorPhotos?: boolean;
|
41
33
|
FoundationComments?: string;
|
34
|
+
FoundationPhotos?: boolean;
|
42
35
|
RoofComments?: string;
|
36
|
+
RoofPhotos?: boolean;
|
43
37
|
SheetrockComments?: string;
|
38
|
+
SheetrockPhotos?: boolean;
|
44
39
|
WindowsAndDoorsComments?: string;
|
40
|
+
WindowsAndDoorsPhotos?: boolean;
|
45
41
|
BathroomConditionComments?: string;
|
46
|
-
|
42
|
+
BathroomConditionPhotos?: boolean;
|
47
43
|
KitchenConditionComments?: string;
|
44
|
+
KitchenConditionPhotos?: boolean;
|
48
45
|
FlooringComments?: string;
|
46
|
+
FlooringPhotos?: boolean;
|
47
|
+
PlumbingSystemComments?: string;
|
48
|
+
PlumbingSystemPhotos?: boolean;
|
49
49
|
HVACSystemComments?: string;
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
50
|
+
HVACSystemPhotos?: boolean;
|
51
|
+
HOMvalueOpinion?: string;
|
52
|
+
HomeSoldLast24months?: string;
|
53
|
+
SoldListingPrice?: string;
|
54
|
+
HasStructureFloodedBefore?: string;
|
55
|
+
StillConditionIssues?: string;
|
56
|
+
Remarks?: string;
|
57
|
+
ActionID?: number;
|
58
|
+
ActionType?: string;
|
59
|
+
AdditionalComments?: string;
|
60
|
+
PropertyDetailsId?: number;
|
61
61
|
}
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -273,6 +273,7 @@ export interface AppConfigHub {
|
|
273
273
|
CCCPckLetterGenTempUrl: string;
|
274
274
|
CCCPckLetterGenUrl: string;
|
275
275
|
CCCPckEmailLetterUrl: string;
|
276
|
+
CompanyAddressTwoHundred: string;
|
276
277
|
}
|
277
278
|
|
278
279
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -550,7 +551,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
550
551
|
CPckLetterGenUrl: "",
|
551
552
|
CCCPckLetterGenTempUrl: "",
|
552
553
|
CCCPckLetterGenUrl: "",
|
553
|
-
CCCPckEmailLetterUrl: ""
|
554
|
+
CCCPckEmailLetterUrl: "",
|
555
|
+
CompanyAddressTwoHundred: ""
|
554
556
|
}
|
555
557
|
}
|
556
558
|
|