spartaxx.businessmodels 1.0.404 → 1.0.405
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.ts
CHANGED
@@ -16,15 +16,21 @@ export interface AccountInfo {
|
|
16
16
|
PropertystateName?: string;
|
17
17
|
PropertyZipcode?: string;
|
18
18
|
CadLegalName?: string;
|
19
|
+
PriorYear2NoticeMarketValue?: string;
|
20
|
+
PriorYear2CertifiedMarketValue?: string;
|
21
|
+
PriorYear2NoticeTotalValue?: string;
|
22
|
+
PriorYear2CertifiedTotalValue?: string;
|
19
23
|
PriorYear2?: number;
|
20
|
-
|
21
|
-
|
24
|
+
PriorYear1NoticeMarketValue?: string;
|
25
|
+
PriorYear1CertifiedMarketValue?: string;
|
26
|
+
PriorYear1NoticeTotalValue?: string;
|
27
|
+
PriorYear1CertifiedTotalValue?: string;
|
22
28
|
PriorYear1?: number;
|
23
|
-
|
24
|
-
|
29
|
+
NoticeMarketValue?: string;
|
30
|
+
CertifiedMarketValue?: string;
|
31
|
+
NoticeTotalValue?: string;
|
32
|
+
CertifiedTotalValue?: string;
|
25
33
|
TaxYear?: number;
|
26
|
-
NoticedValue?: string;
|
27
|
-
FinalValue?: string;
|
28
34
|
StandardContingency?: string;
|
29
35
|
LitigationContingency?: string;
|
30
36
|
IsNeedAofA?: number;
|
@@ -42,6 +48,13 @@ export interface AccountInfo {
|
|
42
48
|
ARBAssignedAgentEmailAddress?: string;
|
43
49
|
IsHomeStead?: number;
|
44
50
|
|
51
|
+
PriorYear2NoticedValue?: string;
|
52
|
+
PriorYear2FinalValue?: string;
|
53
|
+
PriorYear1NoticedValue?: string;
|
54
|
+
PriorYear1FinalValue?: string;
|
55
|
+
NoticedValue?: string;
|
56
|
+
FinalValue?: string;
|
57
|
+
|
45
58
|
OwnerName?: string;
|
46
59
|
OwnerEmail?: string;
|
47
60
|
OwnerPhone?: string;
|
package/Common/AppConfigHub.js
CHANGED
@@ -317,9 +317,7 @@ function createDefaultAppConfigHub() {
|
|
317
317
|
cpckOOTGAPOAForm: "",
|
318
318
|
RMQConfigESignLinkService: "",
|
319
319
|
GACompanyPhone: "",
|
320
|
-
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: ""
|
321
|
-
RMQConfigCCCpaperwiseprocess: "",
|
322
|
-
CCCServicePackageId: 0
|
320
|
+
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: ""
|
323
321
|
};
|
324
322
|
});
|
325
323
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -305,8 +305,6 @@ export interface AppConfigHub {
|
|
305
305
|
RMQConfigESignLinkService: string;
|
306
306
|
GACompanyPhone: string;
|
307
307
|
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: string;
|
308
|
-
RMQConfigCCCpaperwiseprocess: string;
|
309
|
-
CCCServicePackageId: number;
|
310
308
|
}
|
311
309
|
|
312
310
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -616,9 +614,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
616
614
|
cpckOOTGAPOAForm: "",
|
617
615
|
RMQConfigESignLinkService: "",
|
618
616
|
GACompanyPhone: "",
|
619
|
-
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: ""
|
620
|
-
RMQConfigCCCpaperwiseprocess: "",
|
621
|
-
CCCServicePackageId: 0
|
617
|
+
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: ""
|
622
618
|
}
|
623
619
|
}
|
624
620
|
|