spartaxx.businessmodels 1.0.252 → 1.0.254

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.
@@ -16,50 +16,63 @@ function createDefaultAccountInfo() {
16
16
  ClientId: 0,
17
17
  AccountId: 0,
18
18
  AccountNumber: 0,
19
- PropertyType: '',
20
- OCALUCType: '',
21
- CountyName: '',
22
- CountyState: '',
23
- AccountStatus: '',
19
+ PropertyType: "",
20
+ CountyName: "",
21
+ CountyCode: "",
22
+ CountyId: 0,
23
+ CountyState: "",
24
+ AccountStatus: "",
24
25
  AccountStatusId: 0,
25
- PropertyAddress: '',
26
- CadLegalName: '',
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: 2024,
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
- OwnerName: '',
43
- OwnerEmail: '',
44
- OwnerPhone: '',
45
- OwnerAddress: '',
46
- BuildingSQFT: '',
47
- BuildingValue: '',
48
- Grade: '',
49
- YearBuilt: '',
50
- LandSQFT: '',
51
- LandValue: '',
52
- ConditionDesire: '',
53
- RemodelYear: '',
54
- AppraisalDistrictName: '',
55
- AgentName: '',
56
- CompleteAgentAddress: '',
57
- AgentCode: '',
58
- AgentPhone: '',
59
- OwnerCity: '',
60
- OwnerTown: '',
61
- OwnerState: '',
62
- OwnerZipCode: '',
47
+ CountyAppraisalDistrictName: "",
48
+ CountyAddress: "",
49
+ CountyPhone: "",
50
+ CountyAOFACode: "",
51
+ ARBAssignedAgentName: "",
52
+ ARBAssignedAgentRegistrationNumber: "",
53
+ ARBAssignedAgentPhoneNumber: "",
54
+ ARBAssignedAgentEmailAddress: "",
55
+ OwnerName: "",
56
+ OwnerEmail: "",
57
+ OwnerPhone: "",
58
+ OwnerAddress: "",
59
+ BuildingSQFT: "",
60
+ BuildingValue: "",
61
+ Grade: "",
62
+ YearBuilt: "",
63
+ LandSQFT: "",
64
+ LandValue: "",
65
+ ConditionDesire: "",
66
+ RemodelYear: "",
67
+ AppraisalDistrictName: "",
68
+ AgentName: "",
69
+ CompleteAgentAddress: "",
70
+ AgentCode: "",
71
+ AgentPhone: "",
72
+ OwnerCity: "",
73
+ OwnerTown: "",
74
+ OwnerState: "",
75
+ OwnerZipCode: "",
63
76
  IsProtested: false,
64
77
  IsDontProtested: false,
65
78
  IsInactivate: false,
@@ -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,17 @@ 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;
40
+ ARBAssignedAgentEmailAddress?: string;
28
41
 
29
42
  OwnerName?: string;
30
43
  OwnerEmail?: string;
@@ -60,51 +73,64 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
60
73
  ClientId: 0,
61
74
  AccountId: 0,
62
75
  AccountNumber: 0,
63
- PropertyType: '',
64
- OCALUCType: '',
65
- CountyName: '',
66
- CountyState: '',
67
- AccountStatus: '',
76
+ PropertyType: "",
77
+ CountyName: "",
78
+ CountyCode: "",
79
+ CountyId: 0,
80
+ CountyState: "",
81
+ AccountStatus: "",
68
82
  AccountStatusId: 0,
69
- PropertyAddress: '',
70
- CadLegalName: '',
83
+ PropertyAddress: "",
84
+ PropertyCityName: "",
85
+ PropertystateName: "",
86
+ PropertyZipcode: "",
87
+ CadLegalName: "",
71
88
  PriorYear2: 0,
72
- PriorYear2NoticedValue: '',
73
- PriorYear2FinalValue: '',
89
+ PriorYear2NoticedValue: "",
90
+ PriorYear2FinalValue: "",
74
91
  PriorYear1: 0,
75
- PriorYear1NoticedValue: '',
76
- PriorYear1FinalValue: '',
77
- TaxYear: 2024,
78
- NoticedValue: '',
79
- FinalValue: '',
80
- StandardContingency: '',
81
- LitigationContingency: '',
92
+ PriorYear1NoticedValue: "",
93
+ PriorYear1FinalValue: "",
94
+ TaxYear: 0,
95
+ NoticedValue: "",
96
+ FinalValue: "",
97
+ StandardContingency: "",
98
+ LitigationContingency: "",
82
99
  IsNeedAofA: 0,
83
100
  IsNeedBAAofA: 0,
101
+ OCALUCType: "",
84
102
  LUCDescription: "",
85
103
  LegalDescription: "",
104
+ CountyAppraisalDistrictName: "",
105
+ CountyAddress: "",
106
+ CountyPhone: "",
107
+ CountyAOFACode: "",
108
+ ARBAssignedAgentName: "",
109
+ ARBAssignedAgentRegistrationNumber: "",
110
+ ARBAssignedAgentPhoneNumber: "",
111
+ ARBAssignedAgentEmailAddress: "",
86
112
 
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: '',
113
+ OwnerName: "",
114
+ OwnerEmail: "",
115
+ OwnerPhone: "",
116
+ OwnerAddress: "",
117
+ BuildingSQFT: "",
118
+ BuildingValue: "",
119
+ Grade: "",
120
+ YearBuilt: "",
121
+ LandSQFT: "",
122
+ LandValue: "",
123
+ ConditionDesire: "",
124
+ RemodelYear: "",
125
+ AppraisalDistrictName: "",
126
+ AgentName: "",
127
+ CompleteAgentAddress: "",
128
+ AgentCode: "",
129
+ AgentPhone: "",
130
+ OwnerCity: "",
131
+ OwnerTown: "",
132
+ OwnerState: "",
133
+ OwnerZipCode: "",
108
134
 
109
135
  IsProtested: false,
110
136
  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
@@ -65,6 +65,7 @@ function createDefaultClientInfo() {
65
65
  Terms: "",
66
66
  Title: "",
67
67
  ClientSignature: "",
68
+ SigneeName: "",
68
69
  AccountInfo: []
69
70
  };
70
71
  });
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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }