spartaxx.businessmodels 1.0.405 → 1.0.406
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +19 -7
- package/CCC/AccountInfo.ts +20 -7
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -28,15 +28,21 @@ function createDefaultAccountInfo() {
|
|
28
28
|
PropertystateName: "",
|
29
29
|
PropertyZipcode: "",
|
30
30
|
CadLegalName: "",
|
31
|
+
PriorYear2NoticeMarketValue: "",
|
32
|
+
PriorYear2CertifiedMarketValue: "",
|
33
|
+
PriorYear2NoticeTotalValue: "",
|
34
|
+
PriorYear2CertifiedTotalValue: "",
|
31
35
|
PriorYear2: 0,
|
32
|
-
|
33
|
-
|
36
|
+
PriorYear1NoticeMarketValue: "",
|
37
|
+
PriorYear1CertifiedMarketValue: "",
|
38
|
+
PriorYear1NoticeTotalValue: "",
|
39
|
+
PriorYear1CertifiedTotalValue: "",
|
34
40
|
PriorYear1: 0,
|
35
|
-
|
36
|
-
|
41
|
+
NoticeMarketValue: "",
|
42
|
+
CertifiedMarketValue: "",
|
43
|
+
NoticeTotalValue: "",
|
44
|
+
CertifiedTotalValue: "",
|
37
45
|
TaxYear: 0,
|
38
|
-
NoticedValue: "",
|
39
|
-
FinalValue: "",
|
40
46
|
StandardContingency: "",
|
41
47
|
LitigationContingency: "",
|
42
48
|
IsNeedAofA: 0,
|
@@ -52,6 +58,13 @@ function createDefaultAccountInfo() {
|
|
52
58
|
ARBAssignedAgentRegistrationNumber: "",
|
53
59
|
ARBAssignedAgentPhoneNumber: "",
|
54
60
|
ARBAssignedAgentEmailAddress: "",
|
61
|
+
IsHomeStead: 0,
|
62
|
+
PriorYear2NoticedValue: "",
|
63
|
+
PriorYear2FinalValue: "",
|
64
|
+
PriorYear1NoticedValue: "",
|
65
|
+
PriorYear1FinalValue: "",
|
66
|
+
NoticedValue: "",
|
67
|
+
FinalValue: "",
|
55
68
|
OwnerName: "",
|
56
69
|
OwnerEmail: "",
|
57
70
|
OwnerPhone: "",
|
@@ -84,7 +97,6 @@ function createDefaultAccountInfo() {
|
|
84
97
|
AccountStateId: 0,
|
85
98
|
CountyStateName: "",
|
86
99
|
selectedOption: null,
|
87
|
-
IsHomeStead: 0,
|
88
100
|
AppealWithoutAttorneyTX: "",
|
89
101
|
AppealWithoutAttorneyOtherstatesnotlistedbelow: "",
|
90
102
|
AppealWithoutAttorneyOthers: "",
|
package/CCC/AccountInfo.ts
CHANGED
@@ -121,15 +121,21 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
121
121
|
PropertystateName: "",
|
122
122
|
PropertyZipcode: "",
|
123
123
|
CadLegalName: "",
|
124
|
+
PriorYear2NoticeMarketValue: "",
|
125
|
+
PriorYear2CertifiedMarketValue: "",
|
126
|
+
PriorYear2NoticeTotalValue: "",
|
127
|
+
PriorYear2CertifiedTotalValue: "",
|
124
128
|
PriorYear2: 0,
|
125
|
-
|
126
|
-
|
129
|
+
PriorYear1NoticeMarketValue: "",
|
130
|
+
PriorYear1CertifiedMarketValue: "",
|
131
|
+
PriorYear1NoticeTotalValue: "",
|
132
|
+
PriorYear1CertifiedTotalValue: "",
|
127
133
|
PriorYear1: 0,
|
128
|
-
|
129
|
-
|
134
|
+
NoticeMarketValue: "",
|
135
|
+
CertifiedMarketValue: "",
|
136
|
+
NoticeTotalValue: "",
|
137
|
+
CertifiedTotalValue: "",
|
130
138
|
TaxYear: 0,
|
131
|
-
NoticedValue: "",
|
132
|
-
FinalValue: "",
|
133
139
|
StandardContingency: "",
|
134
140
|
LitigationContingency: "",
|
135
141
|
IsNeedAofA: 0,
|
@@ -145,6 +151,14 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
145
151
|
ARBAssignedAgentRegistrationNumber: "",
|
146
152
|
ARBAssignedAgentPhoneNumber: "",
|
147
153
|
ARBAssignedAgentEmailAddress: "",
|
154
|
+
IsHomeStead: 0,
|
155
|
+
|
156
|
+
PriorYear2NoticedValue: "",
|
157
|
+
PriorYear2FinalValue: "",
|
158
|
+
PriorYear1NoticedValue: "",
|
159
|
+
PriorYear1FinalValue: "",
|
160
|
+
NoticedValue: "",
|
161
|
+
FinalValue: "",
|
148
162
|
|
149
163
|
OwnerName: "",
|
150
164
|
OwnerEmail: "",
|
@@ -179,7 +193,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
179
193
|
AccountStateId: 0,
|
180
194
|
CountyStateName: "",
|
181
195
|
selectedOption: null,
|
182
|
-
IsHomeStead: 0,
|
183
196
|
AppealWithoutAttorneyTX: "",
|
184
197
|
AppealWithoutAttorneyOtherstatesnotlistedbelow: "",
|
185
198
|
AppealWithoutAttorneyOthers: "",
|