spartaxx.businessmodels 1.0.57 → 1.0.58
Sign up to get free protection for your applications and to get access to all the features.
- package/Masters/LookupMaster.js +2 -0
- package/Masters/LookupMaster.ts +4 -0
- package/Masters/MasterModels.ts +6 -1
- package/Protest/InitiateProtestParam.js +2 -0
- package/Protest/InitiateProtestParam.ts +14 -0
- package/Protest/ProtestModeModifiedInfo.js +2 -0
- package/Protest/ProtestModeModifiedInfo.ts +4 -0
- package/Protest/ProtestModels.ts +4 -1
- package/package.json +1 -1
package/Masters/MasterModels.ts
CHANGED
@@ -4,5 +4,10 @@ import { DataSetMaster } from "./DataSetMaster";
|
|
4
4
|
import { DatasetSelectOperation } from "./DatasetSelectOperation";
|
5
5
|
import { DatasetFilterOperation } from "./DatasetFilterOperation";
|
6
6
|
import { DatasetSortingOperation } from "./DatasetSortingOperation";
|
7
|
+
import { LookupMaster } from "./LookupMaster";
|
7
8
|
|
8
|
-
export {
|
9
|
+
export {
|
10
|
+
APIMaster, ApiMasterDatasetColumns, DataSetMaster,
|
11
|
+
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
12
|
+
LookupMaster
|
13
|
+
};
|
@@ -0,0 +1,14 @@
|
|
1
|
+
|
2
|
+
import { ProtestAccountParam } from "./ProtestAccountParam";
|
3
|
+
import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
|
4
|
+
|
5
|
+
export interface InitiateProtestParam {
|
6
|
+
ProtestTypeId?: number;
|
7
|
+
ProtestDate?: string;
|
8
|
+
IsRequestedHB201?: boolean;
|
9
|
+
CountyExcludedList?: number[];
|
10
|
+
AccountExcludedList?: number[];
|
11
|
+
ModeModifiedListForCounty?: ProtestModeModifiedInfo[];
|
12
|
+
ModeModifiedListForAccount?: ProtestModeModifiedInfo[];
|
13
|
+
ProtestAccountParam?: ProtestAccountParam;
|
14
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -9,9 +9,12 @@ import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
|
9
9
|
import { ProtestAccountParam } from "./ProtestAccountParam";
|
10
10
|
import { ProtestHistory } from "./ProtestHistory";
|
11
11
|
import { ProtestHistoryParam } from "./ProtestHistoryParam";
|
12
|
+
import { InitiateProtestParam } from "./InitiateProtestParam";
|
13
|
+
import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
|
12
14
|
|
13
15
|
export {
|
14
16
|
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
15
17
|
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
16
|
-
ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam
|
18
|
+
ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
|
19
|
+
InitiateProtestParam, ProtestModeModifiedInfo
|
17
20
|
};
|