spartaxx.businessmodels 1.0.48 → 1.0.50

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@ import { ExportPdfConfig } from "./ExportPdfConfig";
2
2
  import { ImportHtmlConfig } from "./ImportHtmlConfig"
3
3
 
4
4
  export interface PdfExport {
5
- exportPdfConfig: ExportPdfConfig;
5
+ exportPdfConfig: ExportPdfConfig;
6
6
  }
@@ -1,8 +1,8 @@
1
1
  export interface DatasetFilterOperation {
2
2
  Id: number;
3
3
  ModelPropertyName: string;
4
- Query:string;
5
- Order:number;
6
- DataSetId:number;
4
+ Query: string;
5
+ Order: number;
6
+ DataSetId: number;
7
7
  IsInActive: boolean;
8
8
  }
@@ -1,8 +1,8 @@
1
1
  export interface DatasetSelectOperation {
2
2
  Id: number;
3
3
  ModelPropertyName: string;
4
- DisplayName:string;
5
- Order:number;
6
- DataSetId:number;
4
+ DisplayName: string;
5
+ Order: number;
6
+ DataSetId: number;
7
7
  IsInActive: boolean;
8
8
  }
@@ -1,9 +1,9 @@
1
1
  export interface DatasetSortingOperation {
2
2
  Id: number;
3
3
  ModelPropertyName: string;
4
- Query:string;
5
- Order:number;
6
- DataSetId:number;
4
+ Query: string;
5
+ Order: number;
6
+ DataSetId: number;
7
7
  IsInActive: boolean;
8
8
  IsSelected: boolean;
9
9
  SortingType: String;
@@ -1,5 +1,8 @@
1
1
  import { APIMaster } from "./APIMaster";
2
2
  import { ApiMasterDatasetColumns } from "./ApiMasterDatasetColumns"
3
3
  import { DataSetMaster } from "./DataSetMaster";
4
+ import { DatasetSelectOperation } from "./DatasetSelectOperation";
5
+ import { DatasetFilterOperation } from "./DatasetFilterOperation";
6
+ import { DatasetSortingOperation } from "./DatasetSortingOperation";
4
7
 
5
- export { APIMaster, ApiMasterDatasetColumns, DataSetMaster };
8
+ export { APIMaster, ApiMasterDatasetColumns, DataSetMaster, DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation };
@@ -2,9 +2,9 @@ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
2
2
  import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
3
3
 
4
4
  export interface ProtestingAccounts {
5
- ProtestingAccountInputParam:ProtestingAccountInfo;
5
+ ProtestingAccountInputParam: ProtestingAccountInfo;
6
6
  OffsetValue: number;
7
- FetchRecordsCounts: number;
7
+ FetchRecordsCounts: number;
8
8
  ProtestingAccountInfo: ProtestingAccountInfo[];
9
9
  TotalRecords: number;
10
10
  DatasetSortingOperation: DatasetSortingOperation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {