spartaxx.businessmodels 1.0.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.APIMaster = void 0;
4
- class APIMaster {
5
- }
6
- exports.APIMaster = APIMaster;
@@ -1,8 +1,8 @@
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;
1
+ export interface APIMaster {
2
+ ApiId: number;
3
+ ApiName: string;
4
+ DataSetId:number;
5
+ DataSetName:string;
6
+ Query:string;
7
+ IsActive: boolean;
8
8
  }
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApiMasterDatasetColumns = void 0;
4
- class ApiMasterDatasetColumns {
5
- }
6
- exports.ApiMasterDatasetColumns = ApiMasterDatasetColumns;
@@ -1,14 +1,14 @@
1
- export class ApiMasterDatasetColumns {
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;
1
+ export interface ApiMasterDatasetColumns {
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;
14
14
  }
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DataSetMaster = void 0;
4
- class DataSetMaster {
5
- }
6
- exports.DataSetMaster = DataSetMaster;
@@ -1,6 +1,6 @@
1
- export class DataSetMaster {
2
- DataSetId: number | undefined;
3
- DataSetName: string | undefined;
4
- Query: string | undefined;
5
- IsActive: boolean | undefined;
1
+ export interface DataSetMaster {
2
+ DataSetId: number;
3
+ DataSetName: string;
4
+ Query: string;
5
+ IsActive: boolean;
6
6
  }
@@ -1,11 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const APIMaster_1 = require("./APIMaster");
4
- const ApiMasterDatasetColumns_1 = require("./ApiMasterDatasetColumns");
5
- const DataSetMaster_1 = require("./DataSetMaster");
6
- const MasterModels = {
7
- APIMaster: APIMaster_1.APIMaster,
8
- ApiMasterDatasetColumns: ApiMasterDatasetColumns_1.ApiMasterDatasetColumns,
9
- DataSetMaster: DataSetMaster_1.DataSetMaster
10
- };
11
- exports.default = MasterModels;
@@ -2,10 +2,4 @@ import { APIMaster } from "./APIMaster";
2
2
  import { ApiMasterDatasetColumns } from "./ApiMasterDatasetColumns"
3
3
  import { DataSetMaster } from "./DataSetMaster";
4
4
 
5
- const MasterModels = {
6
- APIMaster,
7
- ApiMasterDatasetColumns,
8
- DataSetMaster
9
- };
10
-
11
- export default MasterModels;
5
+ export { APIMaster, ApiMasterDatasetColumns, DataSetMaster };
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProtestDocuments = void 0;
4
- class ProtestDocuments {
5
- }
6
- exports.ProtestDocuments = ProtestDocuments;
@@ -1,7 +1,7 @@
1
- export class ProtestDocuments {
2
- ProtestLetterPath: string | undefined;
3
- ProtestLetterPWImageId: string | undefined;
4
- ProtestHB201LetterPath: string | undefined;
5
- ProtestHB201LetterPWImageId: string | undefined;
6
- ProtestExcelFilePath: string | undefined;
1
+ export interface ProtestDocuments {
2
+ ProtestLetterPath: string;
3
+ ProtestLetterPWImageId: string;
4
+ ProtestHB201LetterPath: string;
5
+ ProtestHB201LetterPWImageId: string;
6
+ ProtestExcelFilePath: string;
7
7
  }
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProtestHistoryInfo = void 0;
4
- class ProtestHistoryInfo {
5
- }
6
- exports.ProtestHistoryInfo = ProtestHistoryInfo;
@@ -1,26 +1,26 @@
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
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;
26
26
  }
@@ -1,11 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const ProtestDocuments_1 = require("./ProtestDocuments");
4
- const ProtestHistoryInfo_1 = require("./ProtestHistoryInfo");
5
- const ProtestPropertyInfo_1 = require("./ProtestPropertyInfo");
6
- const ProtestModels = {
7
- ProtestDocuments: ProtestDocuments_1.ProtestDocuments,
8
- ProtestHistoryInfo: ProtestHistoryInfo_1.ProtestHistoryInfo,
9
- ProtestPropertyInfo: ProtestPropertyInfo_1.ProtestPropertyInfo
10
- };
11
- exports.default = ProtestModels;
@@ -2,10 +2,4 @@ import { ProtestDocuments } from "./ProtestDocuments";
2
2
  import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
3
3
  import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
4
4
 
5
- const ProtestModels = {
6
- ProtestDocuments,
7
- ProtestHistoryInfo,
8
- ProtestPropertyInfo
9
- };
10
-
11
- export default ProtestModels;
5
+ export {ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo};
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProtestPropertyInfo = void 0;
4
- class ProtestPropertyInfo {
5
- }
6
- exports.ProtestPropertyInfo = ProtestPropertyInfo;
@@ -1,10 +1,10 @@
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;
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;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {