spartaxx.businessmodels 1.0.42 → 1.0.44

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
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;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export interface ProtestHB201RequestDocument {
2
+ DocDate: string;
3
+ TaxYear: number;
4
+ AccountListingTable: AccountListingTable[];
5
+ }
6
+
7
+ export interface AccountListingTableHeaders {
8
+ AccountNumber: string;
9
+ Address: string;
10
+ }
11
+
12
+ export interface AccountListingTable {
13
+ Headers: AccountListingTableHeaders[];
14
+ Rows: string[];
15
+ }
@@ -2,5 +2,8 @@ import { ProtestDocuments } from "./ProtestDocuments";
2
2
  import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
3
3
  import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
4
4
  import { ProtestingAccounts } from "./ProtestingAccounts";
5
+ import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
6
+ import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
7
+ import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
5
8
 
6
- export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts };
9
+ export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export interface ProtestPTFayetteDcoument {
2
+ DocDate: string;
3
+ NoOfAccounts:number,
4
+ TaxYear:number;
5
+ AccountListingTable: AccountListingTable[];
6
+ }
7
+
8
+ export interface AccountListingTableHeaders {
9
+ AccountNumber: string;
10
+ Address: string;
11
+ LegalDescription: string;
12
+ CADLegalName: string;
13
+ }
14
+
15
+ export interface AccountListingTable {
16
+ Headers: AccountListingTableHeaders[];
17
+ Rows: string[];
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.42",
3
+ "version": "1.0.44",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {