spartaxx.businessmodels 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
- export interface APIMaster {
2
- ApiId: number;
3
- ApiName: string;
4
- DataSetId:number;
5
- DataSetName:string;
6
- Query:string;
7
- IsActive: boolean;
1
+ export class APIMaster {
2
+ ApiId: number | undefined;
3
+ ApiName: string | undefined;
4
+ DataSetId:number | undefined;
5
+ DataSetName:string | undefined;
6
+ Query:string | undefined;
7
+ IsActive: boolean | undefined;
8
8
  }
@@ -1,14 +1,14 @@
1
- export interface ApiMasterDetailsColumns {
2
- DataSetId: number;
3
- DataSetName: string;
4
- ColumnId: number;
5
- ColumnName: string;
6
- DisplayName: string;
7
- Order: number;
8
- ReportInExcel: boolean;
9
- ItIsGridColumn: boolean;
10
- ItIsFilterColumn: boolean;
11
- FilterColumnNameInDB: string;
12
- FilterColumnSequence: number;
13
- IsActive: boolean;
1
+ export class ApiMasterDetailsColumns {
2
+ DataSetId: number | undefined;
3
+ DataSetName: string | undefined;
4
+ ColumnId: number | undefined;
5
+ ColumnName: string | undefined;
6
+ DisplayName: string | undefined;
7
+ Order: number | undefined;
8
+ ReportInExcel: boolean | undefined;
9
+ ItIsGridColumn: boolean | undefined;
10
+ ItIsFilterColumn: boolean | undefined;
11
+ FilterColumnNameInDB: string | undefined;
12
+ FilterColumnSequence: number | undefined;
13
+ IsActive: boolean | undefined;
14
14
  }
@@ -1,6 +1,6 @@
1
- export interface DataSetMaster {
2
- DataSetId: number;
3
- DataSetName: string;
4
- Query: string;
5
- IsActive: boolean;
1
+ export class DataSetMaster {
2
+ DataSetId: number | undefined;
3
+ DataSetName: string | undefined;
4
+ Query: string | undefined;
5
+ IsActive: boolean | undefined;
6
6
  }
@@ -0,0 +1,11 @@
1
+ import { APIMaster } from "./APIMaster";
2
+ import { ApiMasterDetailsColumns } from "./ApiMasterDatasetColumns"
3
+ import { DataSetMaster } from "./DataSetMaster";
4
+
5
+ const MasterModels = {
6
+ APIMaster,
7
+ ApiMasterDetailsColumns,
8
+ DataSetMaster
9
+ };
10
+
11
+ export default MasterModels;
@@ -1,8 +1,7 @@
1
- export interface ProtestDocuments
2
- {
3
- ProtestLetterPath: string;
4
- ProtestLetterPWImageId: string;
5
- ProtestHB201LetterPath: string;
6
- ProtestHB201LetterPWImageId: string;
7
- ProtestExcelFilePath: string;
1
+ export class ProtestDocuments {
2
+ ProtestLetterPath: string | undefined;
3
+ ProtestLetterPWImageId: string | undefined;
4
+ ProtestHB201LetterPath: string | undefined;
5
+ ProtestHB201LetterPWImageId: string | undefined;
6
+ ProtestExcelFilePath: string | undefined;
8
7
  }
@@ -1,26 +1,26 @@
1
- export interface ProtestHistoryInfo {
2
- ProtestFilingId: number,
3
- CountyName: string,
4
- TaxYear: number,
5
- FilingDate: string,
6
- ProtestedBy: string,
7
- AccountProtested: number,
8
- DeliveryMethodId: number,
9
- ProtestStatus: string,
10
- AuditStatus: string,
11
- HB201Status: string,
12
- ProtestLetterPath: string,
13
- ProtestLetterPWImageId: number,
14
- ProtestHB201LetterPath: string,
15
- ProtestHB201LetterPWImageId: number,
16
- ProtestExcelFilePath: string,
17
- HB201RequestDate: string,
18
- BatchNumber: string,
19
- HB201USPSNumber: string
20
- ProtestLetterUSPSNumber: string,
21
- CountyId: number,
22
- ModeId: number,
23
- ProtestStatusId: number,
24
- MinIndexValue: number,
25
- MaxIndexValue: number
1
+ export class ProtestHistoryInfo {
2
+ ProtestFilingId: number | undefined;
3
+ CountyName: string | undefined;
4
+ TaxYear: number | undefined;
5
+ FilingDate: string | undefined;
6
+ ProtestedBy: string | undefined;
7
+ AccountProtested: number | undefined;
8
+ DeliveryMethodId: number | undefined;
9
+ ProtestStatus: string | undefined;
10
+ AuditStatus: string | undefined;
11
+ HB201Status: string | undefined;
12
+ ProtestLetterPath: string | undefined;
13
+ ProtestLetterPWImageId: number | undefined;
14
+ ProtestHB201LetterPath: string | undefined;
15
+ ProtestHB201LetterPWImageId: number | undefined;
16
+ ProtestExcelFilePath: string | undefined;
17
+ HB201RequestDate: string | undefined;
18
+ BatchNumber: string | undefined;
19
+ HB201USPSNumber: string | undefined;
20
+ ProtestLetterUSPSNumber: string | undefined
21
+ CountyId: number | undefined;
22
+ ModeId: number | undefined;
23
+ ProtestStatusId: number | undefined;
24
+ MinIndexValue: number | undefined;
25
+ MaxIndexValue: number | undefined
26
26
  }
@@ -0,0 +1,11 @@
1
+ import { ProtestDocuments } from "./ProtestDocuments";
2
+ import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
3
+ import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
4
+
5
+ const ProtestModels = {
6
+ ProtestDocuments,
7
+ ProtestHistoryInfo,
8
+ ProtestPropertyInfo
9
+ };
10
+
11
+ export default ProtestModels;
@@ -1,10 +1,10 @@
1
- export interface ProtestPropertyInfo {
2
- AccountId: number,
3
- AccountNumber: string,
4
- CountyName: string,
5
- ProtestStatus: string,
6
- TaxYear: number,
7
- PropertyType: string,
8
- NoticeTotalValue: string,
9
- NoticedDate: string
1
+ export class ProtestPropertyInfo {
2
+ AccountId: number | undefined;
3
+ AccountNumber: string | undefined;
4
+ CountyName: string | undefined;
5
+ ProtestStatus: string | undefined;
6
+ TaxYear: number | undefined;
7
+ PropertyType: string | undefined;
8
+ NoticeTotalValue: string | undefined;
9
+ NoticedDate: string | undefined;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });