spartaxx.businessmodels 1.0.141 → 1.0.143

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,118 @@
1
1
  export interface AccountInfo {
2
+ ClientId?: number;
3
+ ClientEmail?: string;
4
+ FromEmail?: string;
5
+ DispositionNotificationTo?: string;
6
+ ReturnReceiptTo?: string;
7
+ EmailSubject?:string;
8
+ Homestead?: boolean;
9
+ NeedAgreement?: number;
10
+ NeedAofA?: number;
11
+ NeedBAAofA?: number;
12
+ StartDate?:string;
2
13
  AccountNumber?: string;
3
14
  CadLegalName?: string;
4
15
  LegalDescription?: string;
5
16
  PropertyAddress?: string;
17
+ AgentAddress?: string;
18
+ AgentCity?: string;
19
+ AgentMail?: string;
20
+ AgentName?: string;
21
+ AgentPhone?: string;
22
+ AgentState?: string;
23
+ AgentTown?: string;
24
+ AgentZipCode?: string;
25
+ AppraisalAddress?: string;
26
+ AppraisalDate?: string;
27
+ AppraisalDistrictName?: string;
28
+ AppraisalDistrictPhone?: string;
29
+ BppPhone?: string;
30
+ BuildingSQFT?: string;
31
+ BuildingValue?: string;
32
+ CccBatchNumber?: string;
33
+ ClientName?: string;
34
+ ClientNumber?: string;
35
+ CommercialLink?: string;
36
+ CompanyAddress?: string;
37
+ CompanyCity?: string;
38
+ CompanyEmail?: string;
39
+ CompanyFax?: string;
40
+ CompanyName?: string;
41
+ CompanyPhone?: string;
42
+ CompanyPincode?: string;
43
+ CompanyState?: string;
44
+ CompanyTollFree?: string;
45
+ CompanyWebsite?: string;
46
+ CompanyZip?: string;
47
+ ComplaintsWebsite?: string;
48
+ ConditionDesire?: string;
49
+ ContentoftheEmail?: string;
50
+ CountyAccountStatus?: string;
51
+ CountyAddress?: string;
52
+ CountyAlternateEmail?: string;
53
+ CountyCity?: string;
54
+ CountyCountry?: string;
55
+ CountyEmail?: string;
56
+ CountyFax?: string;
57
+ CountyName?: string;
58
+ CountyOffice?: string;
59
+ CountyPhone?: string;
60
+ CountyPincode?: string;
61
+ CountySignature?: string;
62
+ CountyState?: string;
63
+ Date?: string;
64
+ DateSigned?: string;
65
+ Grade?: string;
66
+ LandSQFT?: string;
67
+ LandValue?: string;
68
+ LetterDate?: string;
69
+ LitigationContingency?: string;
70
+ Name?: string;
71
+ NameofThePerson?: string;
72
+ NewCountyAddress?: string;
73
+ NewCountyEmail?: string;
74
+ NewCountyName?: string;
75
+ NewCountyOffice?: string;
76
+ NewCountyPhone?: string;
77
+ NextYear?: string;
78
+ NumberOfAccounts?: string;
79
+ OfficePhone?: string;
80
+ OwnerAddress?: string;
81
+ OwnerCity?: string;
82
+ OwnerEmail?: string;
83
+ OwnerMail?: string;
84
+ OwnerName?: string;
85
+ OwnerPhone?: string;
86
+ OwnerSignature?: string;
87
+ OwnerState?: string;
88
+ Ownertown?: string;
89
+ OwnerZipCode?: string;
90
+ PageNumber?: string;
91
+ Password?: string;
92
+ PersonCity?: string;
93
+ PersonMail?: string;
94
+ PersonPhone?: string;
95
+ PersonState?: string;
96
+ PersonTown?: string;
97
+ PersonZipCode?: string;
98
+ PoconnorLink?: string;
99
+ PreviousYear1FinalValue?: string;
100
+ PreviousYear1NoticedValue?: string;
101
+ PreviousYear2FinalValue?: string;
102
+ PreviousYear2NoticedValue?: string;
103
+ PropType?: string;
104
+ ProtestBatchNumber?: string;
105
+ ProtestDate?: string;
106
+ RegistrationNumber?: string;
107
+ RemodelYear?: string;
108
+ ResidentialLink?: string;
109
+ Signature?: string;
110
+ StandardContingency?: string;
111
+ TaxYear?: string;
112
+ TaxYearFinalValue?: string;
113
+ TaxYearNoticedValue?: string;
114
+ Title?: string;
115
+ Totalaccounts?: string;
116
+ TotalPage?: string;
117
+ YearBuilt?: string;
6
118
  }
@@ -3,5 +3,5 @@ import { AccountInfo } from "./AccountInfo";
3
3
 
4
4
  export interface CCCTemplateData {
5
5
  AccountInfo: AccountInfo[],
6
- ClientInfo:ClientInfo
6
+ ClientInfo: ClientInfo
7
7
  }
package/CCC/ClientInfo.ts CHANGED
@@ -1,4 +1,19 @@
1
1
  export interface ClientInfo {
2
+ ClientId?: number;
3
+ ClientEmail?: string;
4
+ FromEmail?: string;
5
+ DispositionNotificationTo?: string;
6
+ ReturnReceiptTo?: string;
7
+ EmailSubject?:string;
8
+ Homestead?: boolean;
9
+ NeedAgreement?: number;
10
+ NeedAofA?: number;
11
+ NeedBAAofA?: number;
12
+ StartDate?:string;
13
+ AccountNumber?: string;
14
+ CadLegalName?: string;
15
+ LegalDescription?: string;
16
+ PropertyAddress?: string;
2
17
  AgentAddress?: string;
3
18
  AgentCity?: string;
4
19
  AgentMail?: string;
@@ -50,7 +65,6 @@ export interface ClientInfo {
50
65
  Grade?: string;
51
66
  LandSQFT?: string;
52
67
  LandValue?: string;
53
- LegalDescription?: string;
54
68
  LetterDate?: string;
55
69
  LitigationContingency?: string;
56
70
  Name?: string;
@@ -86,7 +100,6 @@ export interface ClientInfo {
86
100
  PreviousYear1NoticedValue?: string;
87
101
  PreviousYear2FinalValue?: string;
88
102
  PreviousYear2NoticedValue?: string;
89
- PropertyAddress?: string;
90
103
  PropType?: string;
91
104
  ProtestBatchNumber?: string;
92
105
  ProtestDate?: string;
@@ -3,6 +3,7 @@ export interface QualifiedClientInfo {
3
3
  ClientNumber?: string;
4
4
  ClientClassificationType?: string;
5
5
  ItIsCommercialClient?: boolean;
6
+ TaxYear?: Boolean;
6
7
 
7
8
  TotalAccounts?: number;
8
9
  ResidentialCounts?: number;
@@ -10,4 +11,5 @@ export interface QualifiedClientInfo {
10
11
  Homestead?: number;
11
12
  Mode?: string;
12
13
  DeliveryAddress?: string;
14
+ BlastStatusId?: number;
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.141",
3
+ "version": "1.0.143",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {