spartaxx.businessmodels 1.0.53 → 1.0.55
Sign up to get free protection for your applications and to get access to all the features.
- package/Protest/PTBexarExcelDocument.ts +10 -10
- package/Protest/ProtestAccountParam.ts +7 -7
- package/Protest/ProtestDocuments.ts +5 -5
- package/Protest/ProtestHB201RequestDocument.ts +7 -7
- package/Protest/ProtestHistory.js +2 -0
- package/Protest/ProtestHistory.ts +12 -0
- package/Protest/ProtestHistoryInfo.ts +5 -5
- package/Protest/ProtestHistoryParam.js +2 -0
- package/Protest/ProtestHistoryParam.ts +16 -0
- package/Protest/ProtestModels.ts +3 -1
- package/Protest/ProtestPTFayetteDocument.ts +10 -10
- package/Protest/ProtestPropertyInfo.ts +8 -8
- package/Protest/ProtestingAccountInfo.ts +8 -8
- package/Protest/ProtestingAccounts.ts +5 -5
- package/package.json +1 -1
@@ -1,12 +1,12 @@
|
|
1
1
|
export interface PTBexarExcelDocument {
|
2
|
-
TaxYear
|
3
|
-
ProtestFilingDate
|
4
|
-
AccountNumber
|
5
|
-
PropertyAddress
|
6
|
-
LegalDescription
|
7
|
-
CADLegalName
|
8
|
-
LUC
|
9
|
-
AgentCode
|
10
|
-
HB201
|
11
|
-
MarketEquityOther
|
2
|
+
TaxYear?: number;
|
3
|
+
ProtestFilingDate?: string;
|
4
|
+
AccountNumber?: string;
|
5
|
+
PropertyAddress?: string;
|
6
|
+
LegalDescription?: string;
|
7
|
+
CADLegalName?: string;
|
8
|
+
LUC?: string;
|
9
|
+
AgentCode?: string;
|
10
|
+
HB201?: string;
|
11
|
+
MarketEquityOther?: string;
|
12
12
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
2
|
|
3
3
|
export interface ProtestAccountParam {
|
4
|
-
CountyId
|
5
|
-
TaxYear
|
6
|
-
ModeId
|
7
|
-
PropertyType
|
8
|
-
OffsetValue
|
9
|
-
FetchRecordsCounts
|
10
|
-
DatasetSortingOperation
|
4
|
+
CountyId?: number;
|
5
|
+
TaxYear?: number;
|
6
|
+
ModeId?: number;
|
7
|
+
PropertyType?: string;
|
8
|
+
OffsetValue?: number;
|
9
|
+
FetchRecordsCounts?: number;
|
10
|
+
DatasetSortingOperation?: DatasetSortingOperation;
|
11
11
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
export interface ProtestDocuments {
|
2
|
-
ProtestLetterPath
|
3
|
-
ProtestLetterPWImageId
|
4
|
-
ProtestHB201LetterPath
|
5
|
-
ProtestHB201LetterPWImageId
|
6
|
-
ProtestExcelFilePath
|
2
|
+
ProtestLetterPath?: string;
|
3
|
+
ProtestLetterPWImageId?: string;
|
4
|
+
ProtestHB201LetterPath?: string;
|
5
|
+
ProtestHB201LetterPWImageId?: string;
|
6
|
+
ProtestExcelFilePath?: string;
|
7
7
|
}
|
@@ -1,15 +1,15 @@
|
|
1
1
|
export interface ProtestHB201RequestDocument {
|
2
|
-
DocDate
|
3
|
-
TaxYear
|
4
|
-
AccountListingTable
|
2
|
+
DocDate?: string;
|
3
|
+
TaxYear?: number;
|
4
|
+
AccountListingTable?: AccountListingTable[];
|
5
5
|
}
|
6
6
|
|
7
7
|
export interface AccountListingTableHeaders {
|
8
|
-
AccountNumber
|
9
|
-
Address
|
8
|
+
AccountNumber?: string;
|
9
|
+
Address?: string;
|
10
10
|
}
|
11
11
|
|
12
12
|
export interface AccountListingTable {
|
13
|
-
Headers
|
14
|
-
Rows
|
13
|
+
Headers?: AccountListingTableHeaders[];
|
14
|
+
Rows?: string[];
|
15
15
|
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
2
|
+
import { DatasetFilterOperation } from "Masters/DatasetFilterOperation";
|
3
|
+
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
4
|
+
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
5
|
+
|
6
|
+
export interface ProtestHistory {
|
7
|
+
TotalRecords?: number;
|
8
|
+
ProtestHistoryInfo?: ProtestHistoryInfo[];
|
9
|
+
DatasetSelectOperation?: DatasetSelectOperation[];
|
10
|
+
DatasetFilterOperation?: DatasetFilterOperation[];
|
11
|
+
DatasetSortingOperation?: DatasetSortingOperation[];
|
12
|
+
}
|
@@ -3,13 +3,11 @@ export interface ProtestHistoryInfo {
|
|
3
3
|
CountyName?: string;
|
4
4
|
TaxYear?: number;
|
5
5
|
FilingDate?: string;
|
6
|
-
FilingDateTo?: string;
|
7
6
|
ProtestedBy?: string;
|
8
7
|
AccountProtested?: number;
|
9
8
|
DeliveryMethodId?: number;
|
10
9
|
ProtestStatus?: string;
|
11
10
|
AuditStatus?: string;
|
12
|
-
IsAudit?: boolean;
|
13
11
|
HB201Status?: string;
|
14
12
|
ProtestLetterPath?: string;
|
15
13
|
ProtestLetterPWImageId?: number;
|
@@ -17,10 +15,14 @@ export interface ProtestHistoryInfo {
|
|
17
15
|
ProtestHB201LetterPWImageId?: number;
|
18
16
|
ProtestExcelFilePath?: string;
|
19
17
|
HB201RequestDate?: string;
|
20
|
-
HB201RequestDateTo?: string;
|
21
18
|
BatchNumber?: string;
|
22
19
|
HB201USPSNumber?: string;
|
23
20
|
ProtestLetterUSPSNumber?: string
|
21
|
+
AuditedBy?: string;
|
22
|
+
AuditedAt?: string;
|
23
|
+
// Not required
|
24
|
+
FilingDateTo?: string;
|
25
|
+
IsAudit?: boolean;
|
24
26
|
CountyId?: number;
|
25
27
|
ModeId?: number;
|
26
28
|
ProtestStatusId?: number;
|
@@ -28,7 +30,5 @@ export interface ProtestHistoryInfo {
|
|
28
30
|
MaxIndexValue?: number;
|
29
31
|
TotalRecordCount?: number;
|
30
32
|
CalendarDuration?: string;
|
31
|
-
AuditedBy?: string;
|
32
|
-
AuditedAt?: string;
|
33
33
|
AuditedUserId?: number;
|
34
34
|
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
|
+
|
3
|
+
export interface ProtestHistoryParam {
|
4
|
+
CountyId?: number;
|
5
|
+
TaxYear?: number;
|
6
|
+
FilingDateFrom?: string;
|
7
|
+
FilingDateTo?: string;
|
8
|
+
ModeId?: number;
|
9
|
+
ProtestStatusId?: number;
|
10
|
+
HB201Status?: string;
|
11
|
+
HB201RequestDateFrom?: string;
|
12
|
+
HB201RequestDateTo?: string;
|
13
|
+
OffsetValue?: number;
|
14
|
+
FetchRecordsCounts?: number;
|
15
|
+
DatasetSortingOperation?: DatasetSortingOperation;
|
16
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -7,9 +7,11 @@ import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
|
7
7
|
import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
|
8
8
|
import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
9
9
|
import { ProtestAccountParam } from "./ProtestAccountParam";
|
10
|
+
import { ProtestHistory } from "./ProtestHistory";
|
11
|
+
import { ProtestHistoryParam } from "./ProtestHistoryParam";
|
10
12
|
|
11
13
|
export {
|
12
14
|
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
13
15
|
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
14
|
-
ProtestingAccountInfo, ProtestAccountParam
|
16
|
+
ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam
|
15
17
|
};
|
@@ -1,18 +1,18 @@
|
|
1
1
|
export interface ProtestPTFayetteDcoument {
|
2
|
-
DocDate
|
3
|
-
NoOfAccounts
|
4
|
-
TaxYear
|
5
|
-
AccountListingTable
|
2
|
+
DocDate?: string;
|
3
|
+
NoOfAccounts?:number,
|
4
|
+
TaxYear?:number;
|
5
|
+
AccountListingTable?: AccountListingTable[];
|
6
6
|
}
|
7
7
|
|
8
8
|
export interface AccountListingTableHeaders {
|
9
|
-
AccountNumber
|
10
|
-
Address
|
11
|
-
LegalDescription
|
12
|
-
CADLegalName
|
9
|
+
AccountNumber?: string;
|
10
|
+
Address?: string;
|
11
|
+
LegalDescription?: string;
|
12
|
+
CADLegalName?: string;
|
13
13
|
}
|
14
14
|
|
15
15
|
export interface AccountListingTable {
|
16
|
-
Headers
|
17
|
-
Rows
|
16
|
+
Headers?: AccountListingTableHeaders[];
|
17
|
+
Rows?: string[];
|
18
18
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
export interface ProtestPropertyInfo {
|
2
|
-
AccountId
|
3
|
-
AccountNumber
|
4
|
-
CountyName
|
5
|
-
ProtestStatus
|
6
|
-
TaxYear
|
7
|
-
PropertyType
|
8
|
-
NoticeTotalValue
|
9
|
-
NoticedDate
|
2
|
+
AccountId?: number;
|
3
|
+
AccountNumber?: string;
|
4
|
+
CountyName?: string;
|
5
|
+
ProtestStatus?: string;
|
6
|
+
TaxYear?: number;
|
7
|
+
PropertyType?: string;
|
8
|
+
NoticeTotalValue?: string;
|
9
|
+
NoticedDate?: string;
|
10
10
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
export interface ProtestingAccountInfo {
|
2
|
-
CountyId
|
3
|
-
CountyName
|
4
|
-
AccountId
|
5
|
-
AccountNumber
|
6
|
-
PropertyType
|
7
|
-
TotalAccounts
|
8
|
-
TotalResidentialAccounts
|
9
|
-
TotalCommericalAccounts
|
2
|
+
CountyId?: number;
|
3
|
+
CountyName?: string;
|
4
|
+
AccountId?: number;
|
5
|
+
AccountNumber?: string;
|
6
|
+
PropertyType?: string;
|
7
|
+
TotalAccounts?: number;
|
8
|
+
TotalResidentialAccounts?: number;
|
9
|
+
TotalCommericalAccounts?: number;
|
10
10
|
}
|
@@ -4,9 +4,9 @@ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
|
4
4
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
5
5
|
|
6
6
|
export interface ProtestingAccounts {
|
7
|
-
TotalRecords
|
8
|
-
ProtestingAccountInfo
|
9
|
-
DatasetSelectOperation
|
10
|
-
DatasetFilterOperation
|
11
|
-
DatasetSortingOperation
|
7
|
+
TotalRecords?: number;
|
8
|
+
ProtestingAccountInfo?: ProtestingAccountInfo[];
|
9
|
+
DatasetSelectOperation?: DatasetSelectOperation[];
|
10
|
+
DatasetFilterOperation?: DatasetFilterOperation[];
|
11
|
+
DatasetSortingOperation?: DatasetSortingOperation[];
|
12
12
|
}
|