spartaxx.businessmodels 1.0.252 → 1.0.253
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/AccountInfo.js +49 -37
- package/CCC/AccountInfo.ts +62 -38
- package/CCC/CCCModel.ts +3 -1
- package/CCC/ClientInfo.js +1 -0
- package/CCC/ClientInfo.ts +2 -0
- package/CCC/ValidateClientSignWithDocuFirstAPIParam.js +2 -0
- package/CCC/ValidateClientSignWithDocuFirstAPIParam.ts +15 -0
- package/Common/AppConfigHub.js +523 -103
- package/Common/AppConfigHub.ts +675 -271
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -16,50 +16,62 @@ function createDefaultAccountInfo() {
|
|
16
16
|
ClientId: 0,
|
17
17
|
AccountId: 0,
|
18
18
|
AccountNumber: 0,
|
19
|
-
PropertyType:
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
PropertyType: "",
|
20
|
+
CountyName: "",
|
21
|
+
CountyCode: "",
|
22
|
+
CountyId: 0,
|
23
|
+
CountyState: "",
|
24
|
+
AccountStatus: "",
|
24
25
|
AccountStatusId: 0,
|
25
|
-
PropertyAddress:
|
26
|
-
|
26
|
+
PropertyAddress: "",
|
27
|
+
PropertyCityName: "",
|
28
|
+
PropertystateName: "",
|
29
|
+
PropertyZipcode: "",
|
30
|
+
CadLegalName: "",
|
27
31
|
PriorYear2: 0,
|
28
|
-
PriorYear2NoticedValue:
|
29
|
-
PriorYear2FinalValue:
|
32
|
+
PriorYear2NoticedValue: "",
|
33
|
+
PriorYear2FinalValue: "",
|
30
34
|
PriorYear1: 0,
|
31
|
-
PriorYear1NoticedValue:
|
32
|
-
PriorYear1FinalValue:
|
33
|
-
TaxYear:
|
34
|
-
NoticedValue:
|
35
|
-
FinalValue:
|
36
|
-
StandardContingency:
|
37
|
-
LitigationContingency:
|
35
|
+
PriorYear1NoticedValue: "",
|
36
|
+
PriorYear1FinalValue: "",
|
37
|
+
TaxYear: 0,
|
38
|
+
NoticedValue: "",
|
39
|
+
FinalValue: "",
|
40
|
+
StandardContingency: "",
|
41
|
+
LitigationContingency: "",
|
38
42
|
IsNeedAofA: 0,
|
39
43
|
IsNeedBAAofA: 0,
|
44
|
+
OCALUCType: "",
|
40
45
|
LUCDescription: "",
|
41
46
|
LegalDescription: "",
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
47
|
+
CountyAppraisalDistrictName: "",
|
48
|
+
CountyAddress: "",
|
49
|
+
CountyPhone: "",
|
50
|
+
CountyAOFACode: "",
|
51
|
+
ARBAssignedAgentName: "",
|
52
|
+
ARBAssignedAgentRegistrationNumber: "",
|
53
|
+
ARBAssignedAgentPhoneNumber: "",
|
54
|
+
OwnerName: "",
|
55
|
+
OwnerEmail: "",
|
56
|
+
OwnerPhone: "",
|
57
|
+
OwnerAddress: "",
|
58
|
+
BuildingSQFT: "",
|
59
|
+
BuildingValue: "",
|
60
|
+
Grade: "",
|
61
|
+
YearBuilt: "",
|
62
|
+
LandSQFT: "",
|
63
|
+
LandValue: "",
|
64
|
+
ConditionDesire: "",
|
65
|
+
RemodelYear: "",
|
66
|
+
AppraisalDistrictName: "",
|
67
|
+
AgentName: "",
|
68
|
+
CompleteAgentAddress: "",
|
69
|
+
AgentCode: "",
|
70
|
+
AgentPhone: "",
|
71
|
+
OwnerCity: "",
|
72
|
+
OwnerTown: "",
|
73
|
+
OwnerState: "",
|
74
|
+
OwnerZipCode: "",
|
63
75
|
IsProtested: false,
|
64
76
|
IsDontProtested: false,
|
65
77
|
IsInactivate: false,
|
package/CCC/AccountInfo.ts
CHANGED
@@ -3,12 +3,16 @@ export interface AccountInfo {
|
|
3
3
|
AccountId?: number;
|
4
4
|
AccountNumber?: number;
|
5
5
|
PropertyType?: string;
|
6
|
-
OCALUCType?: string;
|
7
6
|
CountyName?: string;
|
7
|
+
CountyCode?: string;
|
8
|
+
CountyId?: number;
|
8
9
|
CountyState?: string;
|
9
10
|
AccountStatus?: string;
|
10
11
|
AccountStatusId?: number;
|
11
12
|
PropertyAddress?: string;
|
13
|
+
PropertyCityName?: string;
|
14
|
+
PropertystateName?: string;
|
15
|
+
PropertyZipcode?: string;
|
12
16
|
CadLegalName?: string;
|
13
17
|
PriorYear2?: number;
|
14
18
|
PriorYear2NoticedValue?: string;
|
@@ -23,8 +27,16 @@ export interface AccountInfo {
|
|
23
27
|
LitigationContingency?: string;
|
24
28
|
IsNeedAofA?: number;
|
25
29
|
IsNeedBAAofA?: number;
|
30
|
+
OCALUCType?: string;
|
26
31
|
LUCDescription?: string;
|
27
32
|
LegalDescription?: string;
|
33
|
+
CountyAppraisalDistrictName?: string;
|
34
|
+
CountyAddress?: string;
|
35
|
+
CountyPhone?: string;
|
36
|
+
CountyAOFACode?: string;
|
37
|
+
ARBAssignedAgentName?: string;
|
38
|
+
ARBAssignedAgentRegistrationNumber?: string;
|
39
|
+
ARBAssignedAgentPhoneNumber?: string;
|
28
40
|
|
29
41
|
OwnerName?: string;
|
30
42
|
OwnerEmail?: string;
|
@@ -60,51 +72,63 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
60
72
|
ClientId: 0,
|
61
73
|
AccountId: 0,
|
62
74
|
AccountNumber: 0,
|
63
|
-
PropertyType:
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
75
|
+
PropertyType: "",
|
76
|
+
CountyName: "",
|
77
|
+
CountyCode: "",
|
78
|
+
CountyId: 0,
|
79
|
+
CountyState: "",
|
80
|
+
AccountStatus: "",
|
68
81
|
AccountStatusId: 0,
|
69
|
-
PropertyAddress:
|
70
|
-
|
82
|
+
PropertyAddress: "",
|
83
|
+
PropertyCityName: "",
|
84
|
+
PropertystateName: "",
|
85
|
+
PropertyZipcode: "",
|
86
|
+
CadLegalName: "",
|
71
87
|
PriorYear2: 0,
|
72
|
-
PriorYear2NoticedValue:
|
73
|
-
PriorYear2FinalValue:
|
88
|
+
PriorYear2NoticedValue: "",
|
89
|
+
PriorYear2FinalValue: "",
|
74
90
|
PriorYear1: 0,
|
75
|
-
PriorYear1NoticedValue:
|
76
|
-
PriorYear1FinalValue:
|
77
|
-
TaxYear:
|
78
|
-
NoticedValue:
|
79
|
-
FinalValue:
|
80
|
-
StandardContingency:
|
81
|
-
LitigationContingency:
|
91
|
+
PriorYear1NoticedValue: "",
|
92
|
+
PriorYear1FinalValue: "",
|
93
|
+
TaxYear: 0,
|
94
|
+
NoticedValue: "",
|
95
|
+
FinalValue: "",
|
96
|
+
StandardContingency: "",
|
97
|
+
LitigationContingency: "",
|
82
98
|
IsNeedAofA: 0,
|
83
99
|
IsNeedBAAofA: 0,
|
100
|
+
OCALUCType: "",
|
84
101
|
LUCDescription: "",
|
85
102
|
LegalDescription: "",
|
103
|
+
CountyAppraisalDistrictName: "",
|
104
|
+
CountyAddress: "",
|
105
|
+
CountyPhone: "",
|
106
|
+
CountyAOFACode: "",
|
107
|
+
ARBAssignedAgentName: "",
|
108
|
+
ARBAssignedAgentRegistrationNumber: "",
|
109
|
+
ARBAssignedAgentPhoneNumber: "",
|
86
110
|
|
87
|
-
OwnerName:
|
88
|
-
OwnerEmail:
|
89
|
-
OwnerPhone:
|
90
|
-
OwnerAddress:
|
91
|
-
BuildingSQFT:
|
92
|
-
BuildingValue:
|
93
|
-
Grade:
|
94
|
-
YearBuilt:
|
95
|
-
LandSQFT:
|
96
|
-
LandValue:
|
97
|
-
ConditionDesire:
|
98
|
-
RemodelYear:
|
99
|
-
AppraisalDistrictName:
|
100
|
-
AgentName:
|
101
|
-
CompleteAgentAddress:
|
102
|
-
AgentCode:
|
103
|
-
AgentPhone:
|
104
|
-
OwnerCity:
|
105
|
-
OwnerTown:
|
106
|
-
OwnerState:
|
107
|
-
OwnerZipCode:
|
111
|
+
OwnerName: "",
|
112
|
+
OwnerEmail: "",
|
113
|
+
OwnerPhone: "",
|
114
|
+
OwnerAddress: "",
|
115
|
+
BuildingSQFT: "",
|
116
|
+
BuildingValue: "",
|
117
|
+
Grade: "",
|
118
|
+
YearBuilt: "",
|
119
|
+
LandSQFT: "",
|
120
|
+
LandValue: "",
|
121
|
+
ConditionDesire: "",
|
122
|
+
RemodelYear: "",
|
123
|
+
AppraisalDistrictName: "",
|
124
|
+
AgentName: "",
|
125
|
+
CompleteAgentAddress: "",
|
126
|
+
AgentCode: "",
|
127
|
+
AgentPhone: "",
|
128
|
+
OwnerCity: "",
|
129
|
+
OwnerTown: "",
|
130
|
+
OwnerState: "",
|
131
|
+
OwnerZipCode: "",
|
108
132
|
|
109
133
|
IsProtested: false,
|
110
134
|
IsDontProtested: false,
|
package/CCC/CCCModel.ts
CHANGED
@@ -25,6 +25,7 @@ import { CCCClientContactFormInfo } from "./CCCClientContactFormInfo";
|
|
25
25
|
import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
|
26
26
|
import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
|
27
27
|
import { GAPOAClientInputForm } from "./GAPOAClientInputForm";
|
28
|
+
import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
|
28
29
|
|
29
30
|
export {
|
30
31
|
ScoreCardDetails,
|
@@ -57,5 +58,6 @@ export {
|
|
57
58
|
NoticeOfProtestClientInfo,
|
58
59
|
ClientPhoneInfo,
|
59
60
|
createDefaultClientPhoneInfo,
|
60
|
-
GAPOAClientInputForm
|
61
|
+
GAPOAClientInputForm,
|
62
|
+
ValidateClientSignWithDocuFirstAPIParam
|
61
63
|
}
|
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -53,6 +53,7 @@ export interface ClientInfo {
|
|
53
53
|
Terms?: string;
|
54
54
|
Title?: string;
|
55
55
|
ClientSignature?: string;
|
56
|
+
SigneeName?: string;
|
56
57
|
AccountInfo?: AccountInfo[];
|
57
58
|
}
|
58
59
|
|
@@ -110,6 +111,7 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
110
111
|
Terms: "",
|
111
112
|
Title: "",
|
112
113
|
ClientSignature: "",
|
114
|
+
SigneeName: "",
|
113
115
|
AccountInfo: []
|
114
116
|
}
|
115
117
|
};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface ValidateClientSignWithDocuFirstAPIParam {
|
2
|
+
docFPath: string;
|
3
|
+
saveDocWithSignFPath: string;
|
4
|
+
rect: {
|
5
|
+
x: number;
|
6
|
+
y: number;
|
7
|
+
width: number;
|
8
|
+
height: number;
|
9
|
+
};
|
10
|
+
signeeName: string;
|
11
|
+
signeeEmail: string;
|
12
|
+
signeeLocationIP: string;
|
13
|
+
imageSigPath: string;
|
14
|
+
sFieldName: string;
|
15
|
+
}
|