spartaxx.businessmodels 1.0.5 → 1.0.6
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.
- package/Masters/APIMaster.js +0 -4
- package/Masters/APIMaster.ts +7 -7
- package/Masters/ApiMasterDatasetColumns.js +0 -4
- package/Masters/ApiMasterDatasetColumns.ts +13 -13
- package/Masters/DataSetMaster.js +0 -4
- package/Masters/DataSetMaster.ts +5 -5
- package/Masters/MasterModels.js +0 -9
- package/Masters/MasterModels.ts +1 -7
- package/Protest/ProtestDocuments.js +0 -4
- package/Protest/ProtestDocuments.ts +6 -6
- package/Protest/ProtestHistoryInfo.js +0 -4
- package/Protest/ProtestHistoryInfo.ts +25 -25
- package/Protest/ProtestModels.js +0 -9
- package/Protest/ProtestModels.ts +1 -7
- package/Protest/ProtestPropertyInfo.js +0 -4
- package/Protest/ProtestPropertyInfo.ts +9 -9
- package/package.json +1 -1
package/Masters/APIMaster.js
CHANGED
package/Masters/APIMaster.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
export
|
2
|
-
ApiId: number
|
3
|
-
ApiName: string
|
4
|
-
DataSetId:number
|
5
|
-
DataSetName:string
|
6
|
-
Query:string
|
7
|
-
IsActive: boolean
|
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,14 +1,14 @@
|
|
1
|
-
export
|
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 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
|
}
|
package/Masters/DataSetMaster.js
CHANGED
package/Masters/DataSetMaster.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
export
|
2
|
-
DataSetId: number
|
3
|
-
DataSetName: string
|
4
|
-
Query: string
|
5
|
-
IsActive: boolean
|
1
|
+
export interface DataSetMaster {
|
2
|
+
DataSetId: number;
|
3
|
+
DataSetName: string;
|
4
|
+
Query: string;
|
5
|
+
IsActive: boolean;
|
6
6
|
}
|
package/Masters/MasterModels.js
CHANGED
@@ -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;
|
package/Masters/MasterModels.ts
CHANGED
@@ -2,10 +2,4 @@ import { APIMaster } from "./APIMaster";
|
|
2
2
|
import { ApiMasterDatasetColumns } from "./ApiMasterDatasetColumns"
|
3
3
|
import { DataSetMaster } from "./DataSetMaster";
|
4
4
|
|
5
|
-
|
6
|
-
APIMaster,
|
7
|
-
ApiMasterDatasetColumns,
|
8
|
-
DataSetMaster
|
9
|
-
};
|
10
|
-
|
11
|
-
export default MasterModels;
|
5
|
+
export { APIMaster, ApiMasterDatasetColumns, DataSetMaster };
|
@@ -1,7 +1,7 @@
|
|
1
|
-
export
|
2
|
-
ProtestLetterPath: string
|
3
|
-
ProtestLetterPWImageId: string
|
4
|
-
ProtestHB201LetterPath: string
|
5
|
-
ProtestHB201LetterPWImageId: string
|
6
|
-
ProtestExcelFilePath: string
|
1
|
+
export interface ProtestDocuments {
|
2
|
+
ProtestLetterPath: string;
|
3
|
+
ProtestLetterPWImageId: string;
|
4
|
+
ProtestHB201LetterPath: string;
|
5
|
+
ProtestHB201LetterPWImageId: string;
|
6
|
+
ProtestExcelFilePath: string;
|
7
7
|
}
|
@@ -1,26 +1,26 @@
|
|
1
|
-
export
|
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 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
|
}
|
package/Protest/ProtestModels.js
CHANGED
@@ -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;
|
package/Protest/ProtestModels.ts
CHANGED
@@ -2,10 +2,4 @@ import { ProtestDocuments } from "./ProtestDocuments";
|
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
4
|
|
5
|
-
|
6
|
-
ProtestDocuments,
|
7
|
-
ProtestHistoryInfo,
|
8
|
-
ProtestPropertyInfo
|
9
|
-
};
|
10
|
-
|
11
|
-
export default ProtestModels;
|
5
|
+
export {ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo};
|
@@ -1,10 +1,10 @@
|
|
1
|
-
export
|
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 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
|
}
|