spartaxx.businessmodels 1.0.140 → 1.0.141
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +2 -0
- package/CCC/AccountInfo.ts +6 -0
- package/CCC/CCCModel.ts +9 -1
- package/CCC/CCCTemplateData.js +2 -0
- package/CCC/CCCTemplateData.ts +7 -0
- package/CCC/Client.js +2 -0
- package/CCC/Client.ts +11 -0
- package/CCC/ClientInfo.js +2 -0
- package/CCC/ClientInfo.ts +105 -0
- package/CCC/QualifiedClientInfo.ts +1 -2
- package/Common/CommonModel.ts +2 -1
- package/Common/TemplateContents.js +2 -0
- package/Common/TemplateContents.ts +6 -0
- package/package.json +1 -1
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
|
}
|
package/CCC/Client.js
ADDED
package/CCC/Client.ts
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
export interface ClientInfo {
|
2
|
+
AgentAddress?: string;
|
3
|
+
AgentCity?: string;
|
4
|
+
AgentMail?: string;
|
5
|
+
AgentName?: string;
|
6
|
+
AgentPhone?: string;
|
7
|
+
AgentState?: string;
|
8
|
+
AgentTown?: string;
|
9
|
+
AgentZipCode?: string;
|
10
|
+
AppraisalAddress?: string;
|
11
|
+
AppraisalDate?: string;
|
12
|
+
AppraisalDistrictName?: string;
|
13
|
+
AppraisalDistrictPhone?: string;
|
14
|
+
BppPhone?: string;
|
15
|
+
BuildingSQFT?: string;
|
16
|
+
BuildingValue?: string;
|
17
|
+
CccBatchNumber?: string;
|
18
|
+
ClientName?: string;
|
19
|
+
ClientNumber?: string;
|
20
|
+
CommercialLink?: string;
|
21
|
+
CompanyAddress?: string;
|
22
|
+
CompanyCity?: string;
|
23
|
+
CompanyEmail?: string;
|
24
|
+
CompanyFax?: string;
|
25
|
+
CompanyName?: string;
|
26
|
+
CompanyPhone?: string;
|
27
|
+
CompanyPincode?: string;
|
28
|
+
CompanyState?: string;
|
29
|
+
CompanyTollFree?: string;
|
30
|
+
CompanyWebsite?: string;
|
31
|
+
CompanyZip?: string;
|
32
|
+
ComplaintsWebsite?: string;
|
33
|
+
ConditionDesire?: string;
|
34
|
+
ContentoftheEmail?: string;
|
35
|
+
CountyAccountStatus?: string;
|
36
|
+
CountyAddress?: string;
|
37
|
+
CountyAlternateEmail?: string;
|
38
|
+
CountyCity?: string;
|
39
|
+
CountyCountry?: string;
|
40
|
+
CountyEmail?: string;
|
41
|
+
CountyFax?: string;
|
42
|
+
CountyName?: string;
|
43
|
+
CountyOffice?: string;
|
44
|
+
CountyPhone?: string;
|
45
|
+
CountyPincode?: string;
|
46
|
+
CountySignature?: string;
|
47
|
+
CountyState?: string;
|
48
|
+
Date?: string;
|
49
|
+
DateSigned?: string;
|
50
|
+
Grade?: string;
|
51
|
+
LandSQFT?: string;
|
52
|
+
LandValue?: string;
|
53
|
+
LegalDescription?: string;
|
54
|
+
LetterDate?: string;
|
55
|
+
LitigationContingency?: string;
|
56
|
+
Name?: string;
|
57
|
+
NameofThePerson?: string;
|
58
|
+
NewCountyAddress?: string;
|
59
|
+
NewCountyEmail?: string;
|
60
|
+
NewCountyName?: string;
|
61
|
+
NewCountyOffice?: string;
|
62
|
+
NewCountyPhone?: string;
|
63
|
+
NextYear?: string;
|
64
|
+
NumberOfAccounts?: string;
|
65
|
+
OfficePhone?: string;
|
66
|
+
OwnerAddress?: string;
|
67
|
+
OwnerCity?: string;
|
68
|
+
OwnerEmail?: string;
|
69
|
+
OwnerMail?: string;
|
70
|
+
OwnerName?: string;
|
71
|
+
OwnerPhone?: string;
|
72
|
+
OwnerSignature?: string;
|
73
|
+
OwnerState?: string;
|
74
|
+
Ownertown?: string;
|
75
|
+
OwnerZipCode?: string;
|
76
|
+
PageNumber?: string;
|
77
|
+
Password?: string;
|
78
|
+
PersonCity?: string;
|
79
|
+
PersonMail?: string;
|
80
|
+
PersonPhone?: string;
|
81
|
+
PersonState?: string;
|
82
|
+
PersonTown?: string;
|
83
|
+
PersonZipCode?: string;
|
84
|
+
PoconnorLink?: string;
|
85
|
+
PreviousYear1FinalValue?: string;
|
86
|
+
PreviousYear1NoticedValue?: string;
|
87
|
+
PreviousYear2FinalValue?: string;
|
88
|
+
PreviousYear2NoticedValue?: string;
|
89
|
+
PropertyAddress?: string;
|
90
|
+
PropType?: string;
|
91
|
+
ProtestBatchNumber?: string;
|
92
|
+
ProtestDate?: string;
|
93
|
+
RegistrationNumber?: string;
|
94
|
+
RemodelYear?: string;
|
95
|
+
ResidentialLink?: string;
|
96
|
+
Signature?: string;
|
97
|
+
StandardContingency?: string;
|
98
|
+
TaxYear?: string;
|
99
|
+
TaxYearFinalValue?: string;
|
100
|
+
TaxYearNoticedValue?: string;
|
101
|
+
Title?: string;
|
102
|
+
Totalaccounts?: string;
|
103
|
+
TotalPage?: string;
|
104
|
+
YearBuilt?: string;
|
105
|
+
}
|
package/Common/CommonModel.ts
CHANGED
@@ -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
|
};
|