spartaxx.businessmodels 1.0.53 → 1.0.54

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,12 +1,12 @@
1
1
  export interface PTBexarExcelDocument {
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;
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: number;
5
- TaxYear: number;
6
- ModeId: number;
7
- PropertyType: string;
8
- OffsetValue: number;
9
- FetchRecordsCounts: number;
10
- DatasetSortingOperation: 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: string;
3
- ProtestLetterPWImageId: string;
4
- ProtestHB201LetterPath: string;
5
- ProtestHB201LetterPWImageId: string;
6
- ProtestExcelFilePath: string;
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: string;
3
- TaxYear: number;
4
- AccountListingTable: AccountListingTable[];
2
+ DocDate?: string;
3
+ TaxYear?: number;
4
+ AccountListingTable?: AccountListingTable[];
5
5
  }
6
6
 
7
7
  export interface AccountListingTableHeaders {
8
- AccountNumber: string;
9
- Address: string;
8
+ AccountNumber?: string;
9
+ Address?: string;
10
10
  }
11
11
 
12
12
  export interface AccountListingTable {
13
- Headers: AccountListingTableHeaders[];
14
- Rows: string[];
13
+ Headers?: AccountListingTableHeaders[];
14
+ Rows?: string[];
15
15
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
2
+
3
+ export interface ProtestHistoryInfo {
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
+ }
@@ -1,18 +1,18 @@
1
1
  export interface ProtestPTFayetteDcoument {
2
- DocDate: string;
3
- NoOfAccounts:number,
4
- TaxYear:number;
5
- AccountListingTable: AccountListingTable[];
2
+ DocDate?: string;
3
+ NoOfAccounts?:number,
4
+ TaxYear?:number;
5
+ AccountListingTable?: AccountListingTable[];
6
6
  }
7
7
 
8
8
  export interface AccountListingTableHeaders {
9
- AccountNumber: string;
10
- Address: string;
11
- LegalDescription: string;
12
- CADLegalName: string;
9
+ AccountNumber?: string;
10
+ Address?: string;
11
+ LegalDescription?: string;
12
+ CADLegalName?: string;
13
13
  }
14
14
 
15
15
  export interface AccountListingTable {
16
- Headers: AccountListingTableHeaders[];
17
- Rows: string[];
16
+ Headers?: AccountListingTableHeaders[];
17
+ Rows?: string[];
18
18
  }
@@ -1,10 +1,10 @@
1
1
  export interface ProtestPropertyInfo {
2
- AccountId: number;
3
- AccountNumber: string;
4
- CountyName: string;
5
- ProtestStatus: string;
6
- TaxYear: number;
7
- PropertyType: string;
8
- NoticeTotalValue: string;
9
- NoticedDate: string;
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: number;
3
- CountyName: string;
4
- AccountId: number;
5
- AccountNumber: string;
6
- PropertyType: string;
7
- TotalAccounts: number;
8
- TotalResidentialAccounts: number;
9
- TotalCommericalAccounts: number;
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: number;
8
- ProtestingAccountInfo: ProtestingAccountInfo[];
9
- DatasetSelectOperation: DatasetSelectOperation[];
10
- DatasetFilterOperation: DatasetFilterOperation[];
11
- DatasetSortingOperation: DatasetSortingOperation[];
7
+ TotalRecords?: number;
8
+ ProtestingAccountInfo?: ProtestingAccountInfo[];
9
+ DatasetSelectOperation?: DatasetSelectOperation[];
10
+ DatasetFilterOperation?: DatasetFilterOperation[];
11
+ DatasetSortingOperation?: DatasetSortingOperation[];
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.53",
3
+ "version": "1.0.54",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {