spartaxx.businessmodels 1.0.212 → 1.0.214

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,8 @@ export interface AccountInfo {
20
20
  FinalValue?: string;
21
21
  StandardContingency?: string;
22
22
  LitigationContingency?: string;
23
+ IsNeedAofA?: number;
24
+ IsNeedBAAofA?: number;
23
25
 
24
26
  OwnerName?: string;
25
27
  OwnerEmail?: string;
package/CCC/ClientInfo.ts CHANGED
@@ -23,24 +23,24 @@ export interface ClientInfo {
23
23
  ContactLastName?: string;
24
24
  ContactFax?: string;
25
25
  ContactStateCode?: string;
26
- ItIsCommercialClient?: boolean;
27
- IsNeedAgreement?: boolean;
26
+ ItIsCommercialClient?: number;
27
+ IsNeedAgreement?: number;
28
28
  TotalPropertyCount?: number;
29
29
  TotalResPropertyCount?: number;
30
30
  TotalComPropertyCount?: number;
31
- IsNeedAofA?: boolean;
32
- IsNeedAofAExpirtationForm?: boolean;
33
- IsHomeStead?: boolean;
34
- IsNeedConsentForm?: boolean;
31
+ IsNeedAofA?: number;
32
+ IsNeedAofAExpirtationForm?: number;
33
+ IsHomeStead?: number;
34
+ IsNeedConsentForm?: number;
35
35
  TotalAofAPropertyCount?: number;
36
36
  TotalAofAResPropertyCount?: number;
37
37
  TotalAofAComPropertyCount?: number;
38
- IsNeedBAAofA?: boolean;
38
+ IsNeedBAAofA?: number;
39
39
  TotalBAAofAPropertyCount?: number;
40
40
  TotalBAAofAResPropertyCount?: number;
41
41
  TotalBAAofAComPropertyCount?: number;
42
- IsHasResidentialAccount?: boolean;
43
- IsNeedPropertySurveyForm?: boolean;
42
+ IsHasResidentialAccount?: number;
43
+ IsNeedPropertySurveyForm?: number;
44
44
  ESignLink?: string;
45
45
  ClientEmail?: string;
46
46
  ClientAddress?: string;
@@ -1,14 +1,17 @@
1
- import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
1
+ import { DatasetSortingOperation, DatasetFilterOperation } from "Masters/MasterModels";
2
2
 
3
3
  export interface ProtestAccountParam {
4
+ IsSelectedAll?:boolean;
5
+ OffsetValue?: number;
6
+ FetchRecordsCounts?: number;
7
+ DatasetSortingOperation?: DatasetSortingOperation;
8
+ DatasetFilterOperation?: DatasetFilterOperation[];
9
+ ItIsFilterSearch?: boolean;
10
+
4
11
  CountyId?: number;
5
12
  TaxYear?: number;
6
13
  ModeId?: number;
7
14
  PropertyType?: string;
8
- OffsetValue?: number;
9
- FetchRecordsCounts?: number;
10
- DatasetSortingOperation?: DatasetSortingOperation;
11
- IsSelectedAll?:boolean;
12
15
  SelectedCounties?: number[];
13
16
  LUC?:string;
14
17
  NoticeValueMin?:number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.212",
3
+ "version": "1.0.214",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {