spartaxx.businessmodels 1.0.26 → 1.0.28
Sign up to get free protection for your applications and to get access to all the features.
- package/ClientSetup/ClientSetupParam.ts +97 -0
- package/ClientSetup/PropertyAddress.ts +61 -0
- package/ClientSetup/PropertySearchParameters.js +2 -0
- package/ClientSetup/PropertySearchParameters.ts +12 -0
- package/Protest/ProtestHistoryInfo.ts +1 -0
- package/Protest/ProtestModels.ts +2 -1
- package/package.json +1 -1
- package/ClientSetup/ClientSetupParameters.ts +0 -80
- package/ClientSetup/SelectedPropertyList.ts +0 -6
- /package/ClientSetup/{ClientSetupParameters.js → ClientSetupParam.js} +0 -0
- /package/ClientSetup/{SelectedPropertyList.js → PropertyAddress.js} +0 -0
@@ -0,0 +1,97 @@
|
|
1
|
+
import { TermsType } from "./TermsType"
|
2
|
+
|
3
|
+
export interface ClientSetupParam {
|
4
|
+
ClientSetupInfo: ClientSetupInfo;
|
5
|
+
QueueId: string
|
6
|
+
}
|
7
|
+
|
8
|
+
export interface ClientSetupInfo {
|
9
|
+
ClientName: string;
|
10
|
+
Email: string;
|
11
|
+
PasswordEncrypted: string;
|
12
|
+
PasswordOrg: string;
|
13
|
+
ClientSourceId: number;
|
14
|
+
TaxYear: number;
|
15
|
+
UserId: number;
|
16
|
+
IPAddress: string;
|
17
|
+
OwnerCityId: number;
|
18
|
+
OwnerCityName: string;
|
19
|
+
OwnerStateId: number;
|
20
|
+
OwnerStateName: string;
|
21
|
+
FirstName: string;
|
22
|
+
LastName: string;
|
23
|
+
HomePhone: string;
|
24
|
+
OwnerAddress: string;
|
25
|
+
OwnerZipcode: string;
|
26
|
+
CountyId: number;
|
27
|
+
CountyName: string;
|
28
|
+
CountyCode: string;
|
29
|
+
PropStateName: string;
|
30
|
+
PropStateId: number;
|
31
|
+
PropertyType: string;
|
32
|
+
AccountNumber: string;
|
33
|
+
Township: string;
|
34
|
+
PropCityId: number;
|
35
|
+
PropCityName: string;
|
36
|
+
PropAddress: string;
|
37
|
+
PropZipcode: string;
|
38
|
+
IsPropertyNotFound: boolean;
|
39
|
+
Enrollmentyear: number;
|
40
|
+
IsVerified: boolean;
|
41
|
+
IsSelectedPropertyList: SelectedPropertyList[];
|
42
|
+
Signup2025: boolean;
|
43
|
+
AgentTypeId: number;
|
44
|
+
AgentId: number;
|
45
|
+
HotelTeamSalesAgentId: number;
|
46
|
+
ReferralEmployeeId: number;
|
47
|
+
EntryId: string;
|
48
|
+
IsSpanishFlag: boolean;
|
49
|
+
ClientSetupId: number;
|
50
|
+
ClientStatusId: number;
|
51
|
+
PhoneTypeId: number;
|
52
|
+
AltPhoneNumber: string;
|
53
|
+
AltPhoneTypeId: number;
|
54
|
+
AltIsVerified: boolean;
|
55
|
+
OwnerAddress2: string;
|
56
|
+
OwnerAddress3: string;
|
57
|
+
CompanyName: string;
|
58
|
+
TxrollCadId: number;
|
59
|
+
TxrollLegalDescription: string;
|
60
|
+
TxrollParcelId: string;
|
61
|
+
TxrollLandSize: number;
|
62
|
+
TxrollGba: number;
|
63
|
+
TxrollYearBuilt: number;
|
64
|
+
TxrollOwnerName: string;
|
65
|
+
TxrollClassCode: string;
|
66
|
+
TxrollNeighborhoodCode: string;
|
67
|
+
TxrollNra: number;
|
68
|
+
TxrollGrade: string;
|
69
|
+
TxrollEconomicArea: number;
|
70
|
+
TxrollSubDivi: string;
|
71
|
+
TxrollLandUseCode: string;
|
72
|
+
Stories: string;
|
73
|
+
CDU: string;
|
74
|
+
TxrollNoticedLandValue: number;
|
75
|
+
TxrollNoticedImprovedValue: number;
|
76
|
+
TxrollNoticedMarketValue: number;
|
77
|
+
TxrollNoticedTotalValue: number;
|
78
|
+
TxrollExemptionCode: string;
|
79
|
+
TxrollJurisdictionCode: string;
|
80
|
+
ParishId: number;
|
81
|
+
SelectedAllProperty: SelectedAllProperty[];
|
82
|
+
Texas: TermsType[];
|
83
|
+
IL: TermsType[];
|
84
|
+
BPP: TermsType[]
|
85
|
+
}
|
86
|
+
|
87
|
+
export interface SelectedPropertyList {
|
88
|
+
County: string;
|
89
|
+
AccountNumber: string;
|
90
|
+
PropertyType: string;
|
91
|
+
State: string;
|
92
|
+
}
|
93
|
+
|
94
|
+
export interface SelectedAllProperty {
|
95
|
+
County: string;
|
96
|
+
AccountNumber: string;
|
97
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
export interface PropertyAddress {
|
2
|
+
CountyId: number;
|
3
|
+
County: string;
|
4
|
+
CountyCode: string;
|
5
|
+
ClientId: number;
|
6
|
+
ClientNumber: string;
|
7
|
+
AccountNumber: string;
|
8
|
+
Exemption: string;
|
9
|
+
LegalDescription: string;
|
10
|
+
CadLegalName: string;
|
11
|
+
RequestedBy: number;
|
12
|
+
PropertyType: string;
|
13
|
+
OwnerName: string;
|
14
|
+
MailingAddress: string,
|
15
|
+
OwnerCity: string,
|
16
|
+
OwnerState: string,
|
17
|
+
OwnerZip: string,
|
18
|
+
PropertyAddress: string,
|
19
|
+
IsAddedFromManualSetup: boolean,
|
20
|
+
TaxYear: number,
|
21
|
+
AccountNoXML: string,
|
22
|
+
UpdatedBy: number,
|
23
|
+
IsCAFRequest: boolean,
|
24
|
+
AccountId: number,
|
25
|
+
Website: string,
|
26
|
+
CreatedBy: number,
|
27
|
+
CreatedDateTime: string,
|
28
|
+
UpdatedDateTime: string,
|
29
|
+
City: string;
|
30
|
+
Township: string;
|
31
|
+
SelectedTownship: string;
|
32
|
+
Parish: number,
|
33
|
+
State: string;
|
34
|
+
ZipCode: string;
|
35
|
+
CountryName: string;
|
36
|
+
IsUdi: string;
|
37
|
+
PropertyFullAddress: string;
|
38
|
+
FormatProperyAddress: string;
|
39
|
+
FormatMailingAddress: string;
|
40
|
+
IsSelected: false,
|
41
|
+
ParcelId: string;
|
42
|
+
LandSize: string;
|
43
|
+
GBA: string;
|
44
|
+
YearBuilt: string;
|
45
|
+
Stories: string;
|
46
|
+
ClassCode: string;
|
47
|
+
NeighborhoodCode: string;
|
48
|
+
Grade: string;
|
49
|
+
EconomicArea: string;
|
50
|
+
SubDivision: string;
|
51
|
+
NoticedLandValue: number;
|
52
|
+
NoticedImprovedValue: number;
|
53
|
+
NoticedMarketValue: number;
|
54
|
+
NoticedTotalValue: number;
|
55
|
+
CDU: string;
|
56
|
+
NRA: number;
|
57
|
+
LandUseCode: string;
|
58
|
+
OwnerAddress2: string;
|
59
|
+
OwnerAddress3: string;
|
60
|
+
JurisdictionsCode: string;
|
61
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import { ProtestDocuments } from "./ProtestDocuments";
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
|
+
import { ProtestAccountsCountywise } from "./ProtestAccountsCountywise";
|
4
5
|
|
5
|
-
export {ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo};
|
6
|
+
export {ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestAccountsCountywise};
|
package/package.json
CHANGED
@@ -1,80 +0,0 @@
|
|
1
|
-
import { SelectedPropertyList } from "./SelectedPropertyList"
|
2
|
-
import { TermsType } from "./TermsType"
|
3
|
-
|
4
|
-
export interface ClientSetupParameters {
|
5
|
-
ClientName: string,
|
6
|
-
Email: string,
|
7
|
-
PasswordEncrypted: string,
|
8
|
-
PasswordOrg: string,
|
9
|
-
ClientSourceId: number,
|
10
|
-
TaxYear: number,
|
11
|
-
UserId: number,
|
12
|
-
IPAddress: string,
|
13
|
-
OwnerCityId: number,
|
14
|
-
OwnerCityName: string,
|
15
|
-
OwnerStateId: number,
|
16
|
-
OwnerStateName: string,
|
17
|
-
FirstName: string,
|
18
|
-
LastName: string,
|
19
|
-
HomePhone: string,
|
20
|
-
OwnerAddress: string,
|
21
|
-
OwnerZipcode: string,
|
22
|
-
CountyId: number,
|
23
|
-
CountyName: string,
|
24
|
-
CountyCode: string,
|
25
|
-
PropStateName: string,
|
26
|
-
PropStateId: number,
|
27
|
-
PropertyType: string,
|
28
|
-
AccountNumber: string,
|
29
|
-
Township: string,
|
30
|
-
PropCityId: number,
|
31
|
-
PropCityName: string,
|
32
|
-
PropAddress: string,
|
33
|
-
PropZipcode: string,
|
34
|
-
IsPropertyNotFound: boolean,
|
35
|
-
Enrollmentyear: number,
|
36
|
-
IsVerified: boolean,
|
37
|
-
SelectedPropertyList: SelectedPropertyList[],
|
38
|
-
Signup2025: boolean,
|
39
|
-
AgentTypeId: number,
|
40
|
-
AgentId: number,
|
41
|
-
HotelTeamSalesAgentId: number,
|
42
|
-
ReferralEmployeeId: number,
|
43
|
-
EntryId: string,
|
44
|
-
IsSpanishFlag: boolean,
|
45
|
-
ClientSetupId: number,
|
46
|
-
ClientStatusId: number,
|
47
|
-
PhoneTypeId: number,
|
48
|
-
AltPhoneNumber: string,
|
49
|
-
AltPhoneTypeId: number,
|
50
|
-
AltIsVerified: boolean,
|
51
|
-
OwnerAddress2: string,
|
52
|
-
OwnerAddress3: string,
|
53
|
-
CompanyName: string,
|
54
|
-
TxrollCadId: number,
|
55
|
-
TxrollLegalDescription: string,
|
56
|
-
TxrollParcelId: string,
|
57
|
-
TxrollLandSize: number,
|
58
|
-
TxrollGba: number,
|
59
|
-
TxrollYearBuilt: number,
|
60
|
-
TxrollOwnerName: string,
|
61
|
-
TxrollClassCode: string,
|
62
|
-
TxrollNeighborhoodCode: string,
|
63
|
-
TxrollNra: number,
|
64
|
-
TxrollGrade: string,
|
65
|
-
TxrollEconomicArea: number,
|
66
|
-
TxrollSubDivi: string,
|
67
|
-
TxrollLandUseCode: string,
|
68
|
-
Stories: string,
|
69
|
-
CDU: string,
|
70
|
-
TxrollNoticedLandValue: number,
|
71
|
-
TxrollNoticedImprovedValue: number,
|
72
|
-
TxrollNoticedMarketValue: number,
|
73
|
-
TxrollNoticedTotalValue: number,
|
74
|
-
TxrollExemptionCode: string,
|
75
|
-
TxrollJurisdictionCode: string,
|
76
|
-
ParishId: number,
|
77
|
-
Texas: TermsType[],
|
78
|
-
IL: TermsType[],
|
79
|
-
BPP: TermsType[]
|
80
|
-
}
|
File without changes
|
File without changes
|