spartaxx.businessmodels 1.0.140 → 1.0.142

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,107 @@
1
+ export interface AccountInfo {
2
+ AccountNumber?: string;
3
+ CadLegalName?: string;
4
+ LegalDescription?: string;
5
+ PropertyAddress?: string;
6
+ AgentAddress?: string;
7
+ AgentCity?: string;
8
+ AgentMail?: string;
9
+ AgentName?: string;
10
+ AgentPhone?: string;
11
+ AgentState?: string;
12
+ AgentTown?: string;
13
+ AgentZipCode?: string;
14
+ AppraisalAddress?: string;
15
+ AppraisalDate?: string;
16
+ AppraisalDistrictName?: string;
17
+ AppraisalDistrictPhone?: string;
18
+ BppPhone?: string;
19
+ BuildingSQFT?: string;
20
+ BuildingValue?: string;
21
+ CccBatchNumber?: string;
22
+ ClientName?: string;
23
+ ClientNumber?: string;
24
+ CommercialLink?: string;
25
+ CompanyAddress?: string;
26
+ CompanyCity?: string;
27
+ CompanyEmail?: string;
28
+ CompanyFax?: string;
29
+ CompanyName?: string;
30
+ CompanyPhone?: string;
31
+ CompanyPincode?: string;
32
+ CompanyState?: string;
33
+ CompanyTollFree?: string;
34
+ CompanyWebsite?: string;
35
+ CompanyZip?: string;
36
+ ComplaintsWebsite?: string;
37
+ ConditionDesire?: string;
38
+ ContentoftheEmail?: string;
39
+ CountyAccountStatus?: string;
40
+ CountyAddress?: string;
41
+ CountyAlternateEmail?: string;
42
+ CountyCity?: string;
43
+ CountyCountry?: string;
44
+ CountyEmail?: string;
45
+ CountyFax?: string;
46
+ CountyName?: string;
47
+ CountyOffice?: string;
48
+ CountyPhone?: string;
49
+ CountyPincode?: string;
50
+ CountySignature?: string;
51
+ CountyState?: string;
52
+ Date?: string;
53
+ DateSigned?: string;
54
+ Grade?: string;
55
+ LandSQFT?: string;
56
+ LandValue?: string;
57
+ LetterDate?: string;
58
+ LitigationContingency?: string;
59
+ Name?: string;
60
+ NameofThePerson?: string;
61
+ NewCountyAddress?: string;
62
+ NewCountyEmail?: string;
63
+ NewCountyName?: string;
64
+ NewCountyOffice?: string;
65
+ NewCountyPhone?: string;
66
+ NextYear?: string;
67
+ NumberOfAccounts?: string;
68
+ OfficePhone?: string;
69
+ OwnerAddress?: string;
70
+ OwnerCity?: string;
71
+ OwnerEmail?: string;
72
+ OwnerMail?: string;
73
+ OwnerName?: string;
74
+ OwnerPhone?: string;
75
+ OwnerSignature?: string;
76
+ OwnerState?: string;
77
+ Ownertown?: string;
78
+ OwnerZipCode?: string;
79
+ PageNumber?: string;
80
+ Password?: string;
81
+ PersonCity?: string;
82
+ PersonMail?: string;
83
+ PersonPhone?: string;
84
+ PersonState?: string;
85
+ PersonTown?: string;
86
+ PersonZipCode?: string;
87
+ PoconnorLink?: string;
88
+ PreviousYear1FinalValue?: string;
89
+ PreviousYear1NoticedValue?: string;
90
+ PreviousYear2FinalValue?: string;
91
+ PreviousYear2NoticedValue?: string;
92
+ PropType?: string;
93
+ ProtestBatchNumber?: string;
94
+ ProtestDate?: string;
95
+ RegistrationNumber?: string;
96
+ RemodelYear?: string;
97
+ ResidentialLink?: string;
98
+ Signature?: string;
99
+ StandardContingency?: string;
100
+ TaxYear?: string;
101
+ TaxYearFinalValue?: string;
102
+ TaxYearNoticedValue?: string;
103
+ Title?: string;
104
+ Totalaccounts?: string;
105
+ TotalPage?: string;
106
+ YearBuilt?: string;
107
+ }
package/CCC/CCCModel.ts CHANGED
@@ -4,6 +4,10 @@ import { QualifiedClientInfo } from "./QualifiedClientInfo";
4
4
  import { QualifiedClientParam } from "./QualifiedClientParam";
5
5
  import { QualifiedClientResults } from "./QualifiedClientResults";
6
6
  import { QualifiedAccountInfo } from "./QualifiedAccountInfo";
7
+ import { ClientInfo } from "./ClientInfo";
8
+ import { AccountInfo } from "./AccountInfo";
9
+ import { CCCTemplateData } from "./CCCTemplateData";
10
+ import { Client } from "./Client";
7
11
 
8
12
  export {
9
13
  ScoreCardDetails,
@@ -11,5 +15,9 @@ export {
11
15
  QualifiedClientInfo,
12
16
  QualifiedClientParam,
13
17
  QualifiedClientResults,
14
- QualifiedAccountInfo
18
+ QualifiedAccountInfo,
19
+ ClientInfo,
20
+ AccountInfo,
21
+ CCCTemplateData,
22
+ Client
15
23
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { ClientInfo } from "./ClientInfo";
2
+ import { AccountInfo } from "./AccountInfo";
3
+
4
+ export interface CCCTemplateData {
5
+ AccountInfo: AccountInfo[],
6
+ ClientInfo: ClientInfo
7
+ }
package/CCC/Client.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/CCC/Client.ts ADDED
@@ -0,0 +1,11 @@
1
+ export interface Client {
2
+ ClientID?: number;
3
+ GroupID?:number;
4
+ QueueID?:number;
5
+ Type?: string;
6
+ GiftCardAmount?:string;
7
+ HtmlStr?:string;
8
+ AofASignaturePreferenceType?: number;
9
+ LeadId?:number;
10
+ SummaryType?: number;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,107 @@
1
+ export interface ClientInfo {
2
+ AccountNumber?: string;
3
+ CadLegalName?: string;
4
+ LegalDescription?: string;
5
+ PropertyAddress?: string;
6
+ AgentAddress?: string;
7
+ AgentCity?: string;
8
+ AgentMail?: string;
9
+ AgentName?: string;
10
+ AgentPhone?: string;
11
+ AgentState?: string;
12
+ AgentTown?: string;
13
+ AgentZipCode?: string;
14
+ AppraisalAddress?: string;
15
+ AppraisalDate?: string;
16
+ AppraisalDistrictName?: string;
17
+ AppraisalDistrictPhone?: string;
18
+ BppPhone?: string;
19
+ BuildingSQFT?: string;
20
+ BuildingValue?: string;
21
+ CccBatchNumber?: string;
22
+ ClientName?: string;
23
+ ClientNumber?: string;
24
+ CommercialLink?: string;
25
+ CompanyAddress?: string;
26
+ CompanyCity?: string;
27
+ CompanyEmail?: string;
28
+ CompanyFax?: string;
29
+ CompanyName?: string;
30
+ CompanyPhone?: string;
31
+ CompanyPincode?: string;
32
+ CompanyState?: string;
33
+ CompanyTollFree?: string;
34
+ CompanyWebsite?: string;
35
+ CompanyZip?: string;
36
+ ComplaintsWebsite?: string;
37
+ ConditionDesire?: string;
38
+ ContentoftheEmail?: string;
39
+ CountyAccountStatus?: string;
40
+ CountyAddress?: string;
41
+ CountyAlternateEmail?: string;
42
+ CountyCity?: string;
43
+ CountyCountry?: string;
44
+ CountyEmail?: string;
45
+ CountyFax?: string;
46
+ CountyName?: string;
47
+ CountyOffice?: string;
48
+ CountyPhone?: string;
49
+ CountyPincode?: string;
50
+ CountySignature?: string;
51
+ CountyState?: string;
52
+ Date?: string;
53
+ DateSigned?: string;
54
+ Grade?: string;
55
+ LandSQFT?: string;
56
+ LandValue?: string;
57
+ LetterDate?: string;
58
+ LitigationContingency?: string;
59
+ Name?: string;
60
+ NameofThePerson?: string;
61
+ NewCountyAddress?: string;
62
+ NewCountyEmail?: string;
63
+ NewCountyName?: string;
64
+ NewCountyOffice?: string;
65
+ NewCountyPhone?: string;
66
+ NextYear?: string;
67
+ NumberOfAccounts?: string;
68
+ OfficePhone?: string;
69
+ OwnerAddress?: string;
70
+ OwnerCity?: string;
71
+ OwnerEmail?: string;
72
+ OwnerMail?: string;
73
+ OwnerName?: string;
74
+ OwnerPhone?: string;
75
+ OwnerSignature?: string;
76
+ OwnerState?: string;
77
+ Ownertown?: string;
78
+ OwnerZipCode?: string;
79
+ PageNumber?: string;
80
+ Password?: string;
81
+ PersonCity?: string;
82
+ PersonMail?: string;
83
+ PersonPhone?: string;
84
+ PersonState?: string;
85
+ PersonTown?: string;
86
+ PersonZipCode?: string;
87
+ PoconnorLink?: string;
88
+ PreviousYear1FinalValue?: string;
89
+ PreviousYear1NoticedValue?: string;
90
+ PreviousYear2FinalValue?: string;
91
+ PreviousYear2NoticedValue?: string;
92
+ PropType?: string;
93
+ ProtestBatchNumber?: string;
94
+ ProtestDate?: string;
95
+ RegistrationNumber?: string;
96
+ RemodelYear?: string;
97
+ ResidentialLink?: string;
98
+ Signature?: string;
99
+ StandardContingency?: string;
100
+ TaxYear?: string;
101
+ TaxYearFinalValue?: string;
102
+ TaxYearNoticedValue?: string;
103
+ Title?: string;
104
+ Totalaccounts?: string;
105
+ TotalPage?: string;
106
+ YearBuilt?: string;
107
+ }
@@ -3,12 +3,13 @@ export interface QualifiedClientInfo {
3
3
  ClientNumber?: string;
4
4
  ClientClassificationType?: string;
5
5
  ItIsCommercialClient?: boolean;
6
-
7
-
6
+ TaxYear?: Boolean;
7
+
8
8
  TotalAccounts?: number;
9
9
  ResidentialCounts?: number;
10
10
  CommercialCounts?: number;
11
11
  Homestead?: number;
12
12
  Mode?: string;
13
13
  DeliveryAddress?: string;
14
+ BlastStatusId?: number;
14
15
  }
@@ -13,9 +13,10 @@ import { ManageFrequencyConfig } from "./ManageFrequency";
13
13
  import { ManageSchedulers } from "./ManageSchedulers";
14
14
  import { APICommonResponse } from "./APICommonResponse";
15
15
  import { SentEmailServiceParam } from "./SentEmailServiceParam";
16
+ import { TemplateContents } from "./TemplateContents";
16
17
 
17
18
  export {
18
19
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
19
20
  RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
20
- ManageSchedulers, APICommonResponse, SentEmailServiceParam
21
+ ManageSchedulers, APICommonResponse, SentEmailServiceParam, TemplateContents
21
22
  };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface TemplateContents {
2
+ Header: string;
3
+ Body: string;
4
+ Footer: string;
5
+ EmailContent: string;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.140",
3
+ "version": "1.0.142",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {