spartaxx.businessmodels 1.0.153 → 1.0.154

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,90 +1,19 @@
1
1
  export interface AccountInfo {
2
- Id?: number;
3
- ClientId?: number;
4
- AccountId?: number;
5
- ItIsCommercialClient?: boolean;
6
- Mode?: string;
7
- DeliveryAddress?: string;
8
- IsNeedAgreement?: boolean;
9
- IsHomeStead?: boolean;
10
- IsNeedAofAExpirtationForm?: boolean;
11
- IsNeedConsentForm?: boolean;
12
- IsNeedAofA?: boolean;
13
- IsNeedBAAofA?: boolean;
14
- IsNeedPropertySurveyForm?: boolean;
15
- BlastStatusId?: number;
16
- IsHasResidentialAccount?: boolean;
17
-
18
- LetterDate?: string;
19
- TaxYear?: number;
20
- ClientportalUrl?: string;
21
- CompanyFax?: string;
22
- CompanyPhone?: string;
23
- QRImage?: string;
24
- CompanyEmail?: string;
25
- ContactName?: string;
26
- ContactPhoneNumber?: string;
27
- ContactOfficeNumber?: string;
28
- ContactHomeNumber?: string;
29
- ContactEmail?: string;
30
- ContactAlternativeEmail?: string;
31
- ContactAddress?: string;
32
- ContactCity?: string;
33
- ContactState?: string;
34
- ContactPincode?: string;
35
- ContactCountry?: string;
36
- NewContactName?: string;
37
- NewContactHomeNumber?: string;
38
- NewContactOfficeNumber?: string;
39
- NewContactPhoneNumber?: string;
40
- NewContactEmail?: string;
41
- NewCotactAlternativeEmail?: string;
42
- NewContactAddress?: string;
43
- NewContactCity?: string;
44
- NewContactState?: string;
45
- NewContactPincode?: string;
46
- NewContactCountry?: string;
47
- ClientNumber?: string;
48
- ContactSalutation?: string;
49
- ContactFirstName?: string;
50
- ContactLastName?: string;
51
- AccountNumber?: string;
52
- AccountStatus?: string;
53
- PropertyAddress?: string;
54
- PropertyType?: string;
55
- CadLegalName?: string;
56
- PriorYear2?: number;
57
- PriorYear1?: number;
58
- PriorYear2NoticeValue?: string;
59
- PriorYear1NoticeValue?: string;
60
- NoticeValue?: string;
61
- FinalValue?: string;
62
- PriorYear2FinalValue?: string;
63
- PriorYear1FinalValue?: string;
64
- FormInput?: string;
65
- RevDate?: string;
66
- ContactFax?: string;
67
- CountyName?: string;
68
- StandardContigency?: string;
69
- LitigationContigency?: string;
70
- CountyCode?: string;
71
- CountyState?: string;
72
- CountyStateCode?: string;
73
- ContactStateCode?: string;
74
- CompanyStateCode?: string;
75
- CompanyAddress?: string;
76
- CompanyState?: string;
77
- CompanyCity?: string;
78
- CompanyPincode?: string;
79
- ClientName?: string;
80
- ClassificationType?: string;
81
- CompanyWebsite?: string;
82
- BppPhone?: string;
83
-
84
- FromEmail?: string;
85
- EmailSubject?: string;
86
- DispositionNotificationTo?: string;
87
- ReturnReceiptTo?:string;
88
- CommercialLink?: string;
89
- ResidentialLink?: string;
2
+ Taxyear?: number
3
+ AccountNumber?: number
4
+ PropertyType?: string
5
+ CountyName?: string
6
+ AccountStatus?: string
7
+ PropertyAddress?: string
8
+ CadLegalName?: string
9
+ PriorYear2?: number
10
+ PriorYear2NoticedValue?: string
11
+ PriorYear2FinalValue?: string
12
+ PriorYear1?: number
13
+ PriorYear1NoticedValue?: string
14
+ PriorYear1FinalValue?: string
15
+ NoticedValue?: string
16
+ FinalValue?: string
17
+ StandardContingency?: string
18
+ LitigationContingency?: string
90
19
  }
@@ -4,6 +4,10 @@ import { QualifiedClientInfo } from "./QualifiedClientInfo";
4
4
  export interface CCCTemplateData {
5
5
  ClientId?: number;
6
6
  ClientNumber?: string;
7
+ FromEmail?: string;
8
+ BCC?: string;
9
+ CC?: string;
10
+ EamilSubject?: string;
7
11
  LetterGenerationTempPath?: string;
8
12
  LetterGenerationPath?: string;
9
13
  FilenamePrefixResicentialCoverLetter?: string;
@@ -21,6 +25,7 @@ export interface CCCTemplateData {
21
25
  FilenamePrefixReason?: string;
22
26
  USMailLetterFileName?:string;
23
27
  GenrationPathForAll?: string[];
28
+ QualifiedClientInfo?: QualifiedClientInfo;
29
+
24
30
  ClientInfo?: ClientInfo;
25
- QualifiedClientInfo?: QualifiedClientInfo
26
31
  }
package/CCC/ClientInfo.ts CHANGED
@@ -1,40 +1,29 @@
1
1
  import { AccountInfo } from "./AccountInfo";
2
2
 
3
3
  export interface ClientInfo {
4
- Id?: number;
5
- ClientId?: number;
6
- AccountId?: number;
7
- ItIsCommercialClient?: boolean;
8
- Mode?: string;
9
- DeliveryAddress?: string;
10
- IsNeedAgreement?: boolean;
11
- IsHomeStead?: boolean;
12
- IsNeedAofAExpirtationForm?: boolean;
13
- IsNeedConsentForm?: boolean;
14
- IsNeedAofA?: boolean;
15
- IsNeedBAAofA?: boolean;
16
- IsNeedPropertySurveyForm?: boolean;
17
- BlastStatusId?: number;
18
- IsHasResidentialAccount?: boolean;
19
-
20
4
  LetterDate?: string;
21
- TaxYear?: number;
5
+ TaxYear?: string;
6
+ FormInput?: string;
7
+ RevDate?: Date;
22
8
  ClientportalUrl?: string;
23
- CompanyFax?: string;
24
- CompanyPhone?: string;
25
9
  QRImage?: string;
26
- CompanyEmail?: string;
10
+ ClientNumber?: string;
11
+ BarCodeImage?: string;
12
+ ContactSalutation?: string;
27
13
  ContactName?: string;
14
+ ContactAddress?: string;
15
+ ContactState?: string;
16
+ ContactCity?: string;
17
+ ContactPincode?: string;
18
+ ContactCountry?: string;
28
19
  ContactPhoneNumber?: string;
29
20
  ContactOfficeNumber?: string;
30
21
  ContactHomeNumber?: string;
31
22
  ContactEmail?: string;
32
23
  ContactAlternativeEmail?: string;
33
- ContactAddress?: string;
34
- ContactCity?: string;
35
- ContactState?: string;
36
- ContactPincode?: string;
37
- ContactCountry?: string;
24
+ ContactFax?: string;
25
+ ContactTown?: string;
26
+ CompleteContactAddress?: string;
38
27
  NewContactName?: string;
39
28
  NewContactHomeNumber?: string;
40
29
  NewContactOfficeNumber?: string;
@@ -46,47 +35,52 @@ export interface ClientInfo {
46
35
  NewContactState?: string;
47
36
  NewContactPincode?: string;
48
37
  NewContactCountry?: string;
49
- ClientNumber?: string;
50
- ContactSalutation?: string;
51
- ContactFirstName?: string;
52
- ContactLastName?: string;
53
- AccountNumber?: string;
54
- AccountStatus?: string;
55
- PropertyAddress?: string;
56
- PropertyType?: string;
57
- CadLegalName?: string;
58
- PriorYear2?: number;
59
- PriorYear1?: number;
60
- PriorYear2NoticeValue?: string;
61
- PriorYear1NoticeValue?: string;
62
- NoticeValue?: string;
63
- FinalValue?: string;
64
- PriorYear2FinalValue?: string;
65
- PriorYear1FinalValue?: string;
66
- FormInput?: string;
67
- RevDate?: string;
68
- ContactFax?: string;
69
- CountyName?: string;
70
- StandardContigency?: string;
71
- LitigationContigency?: string;
72
- CountyCode?: string;
73
- CountyState?: string;
74
- CountyStateCode?: string;
75
- ContactStateCode?: string;
76
- CompanyStateCode?: string;
77
38
  CompanyAddress?: string;
78
- CompanyState?: string;
79
39
  CompanyCity?: string;
80
- CompanyPincode?: string;
81
- ClientName?: string;
82
- ClassificationType?: string;
40
+ CompanyState?: string;
41
+ CompanyEmail?: string;
42
+ CompanyPhone?: string;
43
+ CompanyZip?: string;
44
+ CompanyFax ?: string;
83
45
  CompanyWebsite?: string;
84
- BppPhone?: string;
85
-
86
- FromEmail?: string;
87
- EmailSubject?: string;
88
- DispositionNotificationTo?: string;
89
- ReturnReceiptTo?: string;
46
+ AppraisalDistrictName?: string;
47
+ AppraisalDistrictPhone?: string;
48
+ AppraisalAddress?: string;
49
+ PropertyAddress?: string ;
50
+ AgentName?: string;
51
+ AgentCode?: string;
52
+ AgentPhone?: string;
53
+ AgentCity?: string;
54
+ AgentState?: string;
55
+ AgentZipCode?: string;
56
+ CompleteAgentAddress?: string;
57
+ NameOfThePerson?: string;
58
+ PersonMail?: string;
59
+ PersonCity?: string;
60
+ PersonTown?: string;
61
+ PersonState?: string;
62
+ PersonZipCode?: string;
63
+ PersonPhone?: string;
64
+ LegalDescription?: string;
65
+ CADLegalName?: string;
66
+ CADLegalPhone?: string;
67
+ CADLegalEmail?: string;
68
+ BAAgentName?: string;
69
+ BAAgentPhoneNumber?: string;
70
+ BAAgentEmail?: string;
71
+ RegistrationNumber?: string;
72
+ BAAlternativeAgentName?: string;
73
+ BAAlternativeAgentPhoneNumber?: string;
74
+ BAAlternativeAgentEmail?: string;
75
+ CountyName?: string;
76
+ BuildingSQFT?: string;
77
+ BuildingValue?: string;
78
+ Grade?: string;
79
+ YearBuilt?: string;
80
+ LandSQFT?: string;
81
+ LandValue?: string;
82
+ ConditionDesire?: string;
83
+ RemodelYear?: string;
90
84
  CommercialLink?: string;
91
85
  ResidentialLink?: string;
92
86
 
@@ -1,6 +1,10 @@
1
1
  import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
2
2
 
3
3
  export interface QualifiedClientParam {
4
+ ClientNumber?: string;
5
+ ClientEmail?: string;
6
+ Mode?: string;
7
+ ClassificationType?: string;
4
8
  OffsetValue?: number;
5
9
  FetchRecordsCounts?: number;
6
10
  DatasetSortingOperation?: DatasetSortingOperation;
@@ -6,6 +6,10 @@ import { ApiMasterDatasetColumns } from "Masters/ApiMasterDatasetColumns";
6
6
 
7
7
  export interface QualifiedClientResults {
8
8
  TotalRecords?: number;
9
+ EmailCounts?: number;
10
+ USMailCounts?: number;
11
+ EmailPerDayBlastCounts?: number;
12
+ USMailPerDayBlastCounts?: number;
9
13
  QualifiedClientInfo?: QualifiedClientInfo[];
10
14
  DatasetSelectOperation?: DatasetSelectOperation[];
11
15
  DatasetFilterOperation?: DatasetFilterOperation[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.153",
3
+ "version": "1.0.154",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {