spartaxx.businessmodels 1.0.44 → 1.0.46
Sign up to get free protection for your applications and to get access to all the features.
- package/ClientSetup/ClientSetupParam.ts +3 -1
- package/Common/ExportPdfConfig.js +2 -0
- package/Common/ExportPdfConfig.ts +6 -0
- package/Common/ImportHtmlConfig.js +2 -0
- package/Common/ImportHtmlConfig.ts +6 -0
- package/Common/PdfExport.js +2 -0
- package/Common/PdfExport.ts +6 -0
- package/Masters/DatasetFilterOperation.js +2 -0
- package/Masters/DatasetFilterOperation.ts +8 -0
- package/Masters/DatasetSelectOperation.js +2 -0
- package/Masters/DatasetSelectOperation.ts +8 -0
- package/Masters/DatasetSortingOperation.js +2 -0
- package/Masters/DatasetSortingOperation.ts +10 -0
- package/Protest/ProtestingAccountInfo.js +2 -0
- package/Protest/ProtestingAccountInfo.ts +10 -0
- package/Protest/ProtestingAccounts.ts +6 -9
- package/package.json +1 -1
@@ -81,7 +81,9 @@ export interface ClientSetupInfo {
|
|
81
81
|
SelectedAllProperty: SelectedAllProperty[];
|
82
82
|
Texas: TermsType[];
|
83
83
|
IL: TermsType[];
|
84
|
-
BPP: TermsType[]
|
84
|
+
BPP: TermsType[];
|
85
|
+
ClientId: number;
|
86
|
+
ClientNumber: string;
|
85
87
|
}
|
86
88
|
|
87
89
|
export interface SelectedPropertyList {
|
@@ -1,11 +1,8 @@
|
|
1
|
+
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
|
+
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
|
+
|
1
4
|
export interface ProtestingAccounts {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
AccountNumber: string;
|
6
|
-
PropertyType: string;
|
7
|
-
TotalAccounts: number;
|
8
|
-
TotalResidentialAccounts: number;
|
9
|
-
TotalCommericalAccounts: number;
|
10
|
-
TotalRecordCount: number;
|
5
|
+
ProtestingAccountInfo: ProtestingAccountInfo[],
|
6
|
+
TotalRecords: number,
|
7
|
+
DatasetSortingOperation: DatasetSortingOperation
|
11
8
|
}
|