spartaxx.businessmodels 1.0.45 → 1.0.46

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.
@@ -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,6 +1,6 @@
1
1
  export interface ExportPdfConfig {
2
- AppBaseURL: string,
3
- AppDirName: string,
4
- ExportDirName: string,
5
- FileName: string
2
+ AppBaseURL: string;
3
+ AppDirName: string;
4
+ ExportDirName: string;
5
+ FileName: string;
6
6
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface ImportHtmlConfig {
2
+ AppBaseURL: string;
3
+ AppDirName: string;
4
+ ExportDirName: string;
5
+ FileName: string;
6
+ }
@@ -1,8 +1,6 @@
1
1
  import { ExportPdfConfig } from "./ExportPdfConfig";
2
+ import { ImportHtmlConfig } from "./ImportHtmlConfig"
2
3
 
3
4
  export interface PdfExport {
4
- data: any[];
5
- columnsList: any[];
6
- exportPdfConfig: ExportPdfConfig;
7
- sheetName?: string;
5
+ exportPdfConfig: ExportPdfConfig;
8
6
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export interface DatasetFilterOperation {
2
+ Id: number;
3
+ ModelPropertyName: string;
4
+ Query:string;
5
+ Order:number;
6
+ DataSetId:number;
7
+ IsInActive: boolean;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export interface DatasetSelectOperation {
2
+ Id: number;
3
+ ModelPropertyName: string;
4
+ DisplayName:string;
5
+ Order:number;
6
+ DataSetId:number;
7
+ IsInActive: boolean;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ export interface DatasetSortingOperation {
2
+ Id: number;
3
+ ModelPropertyName: string;
4
+ Query:string;
5
+ Order:number;
6
+ DataSetId:number;
7
+ IsInActive: boolean;
8
+ IsSelected: boolean;
9
+ SortingType: String;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ export interface ProtestingAccountInfo {
2
+ CountyId: number;
3
+ CountyName: string;
4
+ AccountId: number;
5
+ AccountNumber: string;
6
+ PropertyType: string;
7
+ TotalAccounts: number;
8
+ TotalResidentialAccounts: number;
9
+ TotalCommericalAccounts: number;
10
+ }
@@ -1,11 +1,8 @@
1
+ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
2
+ import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
3
+
1
4
  export interface ProtestingAccounts {
2
- CountyId: number;
3
- CountyName: string;
4
- AccountId: number;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {