spartaxx.businessmodels 1.0.71 → 1.0.73

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ export interface TemplateCategory {
2
+ ID: number,
3
+ Name: string
4
+ }
@@ -0,0 +1,9 @@
1
+ export interface TemplateName {
2
+ ID: number,
3
+ Name: string,
4
+ TemplateName: string,
5
+ CreatedBy:number,
6
+ ModifiedBy:number,
7
+ TemplateMethodId: number ,
8
+ CategoryId: number
9
+ }
@@ -11,12 +11,10 @@ import { ProtestHistory } from "./ProtestHistory";
11
11
  import { ProtestHistoryParam } from "./ProtestHistoryParam";
12
12
  import { InitiateProtestParam } from "./InitiateProtestParam";
13
13
  import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
14
- import { AccountListingTableRow } from "./AccountListingTableRow";
15
- import { AccountListingTableHeaders } from "./AccountListingTableHeaders";
16
- import { AccountListingTable } from "./AccountListingTable";
14
+
17
15
  export {
18
16
  ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
19
17
  ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
20
18
  ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
21
- InitiateProtestParam, ProtestModeModifiedInfo, AccountListingTableRow, AccountListingTableHeaders, AccountListingTable
19
+ InitiateProtestParam, ProtestModeModifiedInfo
22
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -14,14 +14,10 @@
14
14
  "dependencies": {
15
15
  "@types/express": "^4.17.21",
16
16
  "@types/typescript": "^0.4.29",
17
- "cookie-parser": "^1.4.6",
18
- "cors": "^2.8.5",
19
17
  "express": "^4.19.2"
20
18
  },
21
19
  "devDependencies": {
22
- "@types/axios": "^0.14.0",
23
20
  "@types/node": "^20.14.11",
24
- "axios": "^1.7.2",
25
21
  "ts-node": "^10.9.2",
26
22
  "typescript": "^5.5.4"
27
23
  }
@@ -1,7 +0,0 @@
1
- import { AccountListingTableHeaders } from "./ProtestHB201RequestDocument";
2
- import { AccountListingTableRow } from "./AccountListingTableRow";
3
-
4
- export interface AccountListingTable {
5
- Headers?: AccountListingTableHeaders[];
6
- Rows?: AccountListingTableRow[];
7
- }
@@ -1,7 +0,0 @@
1
- export interface AccountListingTableHeaders {
2
- [key: string]: string | undefined;
3
- AccountNumber?: string;
4
- Address?: string;
5
- LegalDescription?: string;
6
- CADLegalName?: string;
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +0,0 @@
1
- export interface AccountListingTableRow {
2
- [key: string]: string | undefined;
3
- AccountNumber?: string;
4
- Address?: string;
5
- LegalDescription?: string;
6
- CADLegalName?: string;
7
- }