spartaxx.businessmodels 1.0.43 → 1.0.44

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,8 @@
1
+ import { ExportExcelConfig } from "./ExportExcelConfig";
2
+
1
3
  export interface ExcelExport {
2
- data: any[];
3
- columnsList: any[];
4
- filePath: string;
5
- sheetName?: string;
6
- }
4
+ data: any[];
5
+ columnsList: any[];
6
+ exportExcelConfig: ExportExcelConfig;
7
+ sheetName?: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ export interface ExportExcelConfig {
2
+ AppBaseURL: string,
3
+ AppDirName: string,
4
+ ExportDirName: string,
5
+ FileName: string
6
+ }
@@ -1,4 +1,4 @@
1
- export interface PTBexarExcel {
1
+ export interface PTBexarExcelDocument {
2
2
  TaxYear: number;
3
3
  ProtestFilingDate: string;
4
4
  AccountNumber: string;
@@ -1,4 +1,4 @@
1
- export interface ProtestHB201RequestLetter {
1
+ export interface ProtestHB201RequestDocument {
2
2
  DocDate: string;
3
3
  TaxYear: number;
4
4
  AccountListingTable: AccountListingTable[];
@@ -2,8 +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
+ import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
6
+ import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
7
+ import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
8
8
 
9
- export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayette, ProtestHB201RequestLetter, PTBexarExcel };
9
+ export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,4 @@
1
- export interface ProtestPTFayette {
1
+ export interface ProtestPTFayetteDcoument {
2
2
  DocDate: string;
3
3
  NoOfAccounts:number,
4
4
  TaxYear:number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {