spartaxx.businessmodels 1.0.69 → 1.0.71

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,7 @@
1
+ import { AccountListingTableHeaders } from "./ProtestHB201RequestDocument";
2
+ import { AccountListingTableRow } from "./AccountListingTableRow";
3
+
4
+ export interface AccountListingTable {
5
+ Headers?: AccountListingTableHeaders[];
6
+ Rows?: AccountListingTableRow[];
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export interface AccountListingTableHeaders {
2
+ [key: string]: string | undefined;
3
+ AccountNumber?: string;
4
+ Address?: string;
5
+ LegalDescription?: string;
6
+ CADLegalName?: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export interface AccountListingTableRow {
2
+ [key: string]: string | undefined;
3
+ AccountNumber?: string;
4
+ Address?: string;
5
+ LegalDescription?: string;
6
+ CADLegalName?: string;
7
+ }
@@ -11,10 +11,12 @@ import { ProtestHistory } from "./ProtestHistory";
11
11
  import { ProtestHistoryParam } from "./ProtestHistoryParam";
12
12
  import { InitiateProtestParam } from "./InitiateProtestParam";
13
13
  import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
14
-
14
+ import { AccountListingTableRow } from "./AccountListingTableRow";
15
+ import { AccountListingTableHeaders } from "./AccountListingTableHeaders";
16
+ import { AccountListingTable } from "./AccountListingTable";
15
17
  export {
16
18
  ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
17
19
  ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
18
20
  ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
19
- InitiateProtestParam, ProtestModeModifiedInfo
21
+ InitiateProtestParam, ProtestModeModifiedInfo, AccountListingTableRow, AccountListingTableHeaders, AccountListingTable
20
22
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {