spartaxx.businessmodels 1.0.41 → 1.0.43

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,6 @@
1
- import { ExportExcelConfig } from "./ExportExcelConfig";
2
-
3
1
  export interface ExcelExport {
4
- data: any[];
5
- columnsList: any[];
6
- filePath: ExportExcelConfig;
7
- sheetName?: string;
8
- }
2
+ data: any[];
3
+ columnsList: any[];
4
+ filePath: string;
5
+ sheetName?: string;
6
+ }
@@ -0,0 +1,12 @@
1
+ export interface PTBexarExcel {
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 ProtestHB201RequestLetter {
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 { ProtestPTFayette } from "./ProtestPTFayette";
6
+ import { ProtestHB201RequestLetter } from "./ProtestHB201RequestLetter";
7
+ import { PTBexarExcel } from "./PTBexarExcel";
5
8
 
6
- export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts };
9
+ export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayette, ProtestHB201RequestLetter, PTBexarExcel };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export interface ProtestPTFayette {
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.41",
3
+ "version": "1.0.43",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,6 +0,0 @@
1
- export interface ExportExcelConfig {
2
- AppBaseURL: string,
3
- AppDirName: string,
4
- ExportDirName: string,
5
- FileName: string
6
- }