@leavittsoftware/lg-core-typescript 2.60.1 → 2.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +46 -1
- package/lg.net.leavittlink.js +226 -0
- package/lg.net.leavittlink.js.map +1 -1
- package/lg.net.leavittlink.ts +446 -0
- package/package.json +1 -1
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAqtCA,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
|
-
import { LifeQuoteRequestStatusString,GenderTypeString,ProductTypeString,TobaccoTypeString,HealthRatingTypeString } from './lg.net.leavittlink'
|
|
7
|
+
import { LastPageVisitedString,LifeQuoteRequestStatusString,GenderTypeString,ProductTypeString,TobaccoTypeString,HealthRatingTypeString } from './lg.net.leavittlink'
|
|
8
8
|
import { ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership,CLGamePoint,CLGameSegment,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
9
9
|
|
|
10
10
|
export interface FruitHolderDto {
|
|
@@ -117,6 +117,10 @@ export interface SurgeReportsTopPlayerDto {
|
|
|
117
117
|
TotalSold: Partial<number>;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
export interface PLGameDivisionReorderDto {
|
|
121
|
+
Divisions: Array<Partial<SequenceDto>> | null;
|
|
122
|
+
}
|
|
123
|
+
|
|
120
124
|
export interface PLGameBreakdownDto {
|
|
121
125
|
Divisions: Array<Partial<PLGameDivisionBreakdownDto>> | null;
|
|
122
126
|
}
|
|
@@ -379,6 +383,30 @@ export interface WorkersCompQuoteDto {
|
|
|
379
383
|
Zip: string | null;
|
|
380
384
|
}
|
|
381
385
|
|
|
386
|
+
export interface PersonalPropertyGettingStartedStepOneDto {
|
|
387
|
+
DateOfBirth: string;
|
|
388
|
+
FirstName: string | null;
|
|
389
|
+
IsHome: boolean;
|
|
390
|
+
IsTest: boolean;
|
|
391
|
+
LastName: string | null;
|
|
392
|
+
PersonalPropertyQuoteRequestId: number | null;
|
|
393
|
+
RaterUniqueId: string | null;
|
|
394
|
+
RecaptchaUserResponse: string | null;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
export interface PersonalPropertyGettingStartedStepTwoDto {
|
|
398
|
+
City: string | null;
|
|
399
|
+
EmailAddress: string | null;
|
|
400
|
+
PhoneNumber: string | null;
|
|
401
|
+
State: string | null;
|
|
402
|
+
Street1: string | null;
|
|
403
|
+
Zip: string | null;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export interface PersonalPropertyLastPageVisitedDto {
|
|
407
|
+
LastPageVisited: LastPageVisitedString;
|
|
408
|
+
}
|
|
409
|
+
|
|
382
410
|
export interface LifeGettingStartedStepOneDto {
|
|
383
411
|
DateOfBirth: string;
|
|
384
412
|
FirstName: string | null;
|
|
@@ -483,6 +511,23 @@ export interface CampaignSummaryDto {
|
|
|
483
511
|
Name: string | null;
|
|
484
512
|
}
|
|
485
513
|
|
|
514
|
+
export interface HartfordRaterUpsertDto {
|
|
515
|
+
AdobeAnalyticUrl: string | null;
|
|
516
|
+
AppAccentColor: string | null;
|
|
517
|
+
AppPrimaryColor: string | null;
|
|
518
|
+
AppSecondaryColor: string | null;
|
|
519
|
+
Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>> | null;
|
|
520
|
+
CompanyId: number;
|
|
521
|
+
Disclaimer: string | null;
|
|
522
|
+
FooterEmailAddress: string | null;
|
|
523
|
+
Id: number | null;
|
|
524
|
+
IsActive: boolean;
|
|
525
|
+
Name: string | null;
|
|
526
|
+
Phone: string | null;
|
|
527
|
+
RicochetCampaignId: number | null;
|
|
528
|
+
ToolbarTitle: string | null;
|
|
529
|
+
}
|
|
530
|
+
|
|
486
531
|
export interface SmallBusinessSummaryDto {
|
|
487
532
|
BopQuotes: number;
|
|
488
533
|
BopQuotesWithError: number;
|
package/lg.net.leavittlink.js
CHANGED
|
@@ -1,9 +1,235 @@
|
|
|
1
|
+
export var AutoAccidentType;
|
|
2
|
+
(function (AutoAccidentType) {
|
|
3
|
+
AutoAccidentType[AutoAccidentType["Speeding"] = 0] = "Speeding";
|
|
4
|
+
AutoAccidentType[AutoAccidentType["DWI"] = 1] = "DWI";
|
|
5
|
+
AutoAccidentType[AutoAccidentType["StopSign"] = 2] = "StopSign";
|
|
6
|
+
AutoAccidentType[AutoAccidentType["NotAtFaultAccident"] = 3] = "NotAtFaultAccident";
|
|
7
|
+
AutoAccidentType[AutoAccidentType["OtherMinorViolation"] = 4] = "OtherMinorViolation";
|
|
8
|
+
AutoAccidentType[AutoAccidentType["OtherMajorViolation"] = 5] = "OtherMajorViolation";
|
|
9
|
+
})(AutoAccidentType || (AutoAccidentType = {}));
|
|
10
|
+
export var LicenseStatusType;
|
|
11
|
+
(function (LicenseStatusType) {
|
|
12
|
+
LicenseStatusType[LicenseStatusType["Active"] = 0] = "Active";
|
|
13
|
+
LicenseStatusType[LicenseStatusType["Canceled"] = 1] = "Canceled";
|
|
14
|
+
LicenseStatusType[LicenseStatusType["Revoked"] = 2] = "Revoked";
|
|
15
|
+
LicenseStatusType[LicenseStatusType["Suspended"] = 3] = "Suspended";
|
|
16
|
+
LicenseStatusType[LicenseStatusType["None"] = 4] = "None";
|
|
17
|
+
})(LicenseStatusType || (LicenseStatusType = {}));
|
|
18
|
+
export var MaritalStatusType;
|
|
19
|
+
(function (MaritalStatusType) {
|
|
20
|
+
MaritalStatusType[MaritalStatusType["Single"] = 0] = "Single";
|
|
21
|
+
MaritalStatusType[MaritalStatusType["Married"] = 1] = "Married";
|
|
22
|
+
MaritalStatusType[MaritalStatusType["Separated"] = 2] = "Separated";
|
|
23
|
+
MaritalStatusType[MaritalStatusType["Divorced"] = 3] = "Divorced";
|
|
24
|
+
MaritalStatusType[MaritalStatusType["Widowed"] = 4] = "Widowed";
|
|
25
|
+
MaritalStatusType[MaritalStatusType["DomesticPartner"] = 5] = "DomesticPartner";
|
|
26
|
+
})(MaritalStatusType || (MaritalStatusType = {}));
|
|
27
|
+
export var RelationshipToInsuredType;
|
|
28
|
+
(function (RelationshipToInsuredType) {
|
|
29
|
+
RelationshipToInsuredType[RelationshipToInsuredType["Self"] = 0] = "Self";
|
|
30
|
+
RelationshipToInsuredType[RelationshipToInsuredType["Spouse"] = 1] = "Spouse";
|
|
31
|
+
RelationshipToInsuredType[RelationshipToInsuredType["Parent"] = 2] = "Parent";
|
|
32
|
+
RelationshipToInsuredType[RelationshipToInsuredType["Child"] = 3] = "Child";
|
|
33
|
+
RelationshipToInsuredType[RelationshipToInsuredType["Other"] = 4] = "Other";
|
|
34
|
+
})(RelationshipToInsuredType || (RelationshipToInsuredType = {}));
|
|
35
|
+
export var VehicleUsageType;
|
|
36
|
+
(function (VehicleUsageType) {
|
|
37
|
+
VehicleUsageType[VehicleUsageType["Business"] = 0] = "Business";
|
|
38
|
+
VehicleUsageType[VehicleUsageType["Personal"] = 1] = "Personal";
|
|
39
|
+
})(VehicleUsageType || (VehicleUsageType = {}));
|
|
40
|
+
export var CoApplicantRelationshipToInsured;
|
|
41
|
+
(function (CoApplicantRelationshipToInsured) {
|
|
42
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["SPOUSE"] = 0] = "SPOUSE";
|
|
43
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["PARTNER"] = 1] = "PARTNER";
|
|
44
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["CHILD"] = 2] = "CHILD";
|
|
45
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["OTHER_RELATIVE"] = 3] = "OTHER_RELATIVE";
|
|
46
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["OTHER_NON_RELATIVE"] = 4] = "OTHER_NON_RELATIVE";
|
|
47
|
+
CoApplicantRelationshipToInsured[CoApplicantRelationshipToInsured["PARENT"] = 5] = "PARENT";
|
|
48
|
+
})(CoApplicantRelationshipToInsured || (CoApplicantRelationshipToInsured = {}));
|
|
49
|
+
export var ConstructionType;
|
|
50
|
+
(function (ConstructionType) {
|
|
51
|
+
ConstructionType[ConstructionType["FRAME"] = 0] = "FRAME";
|
|
52
|
+
ConstructionType[ConstructionType["JOISTED_MASONRY"] = 1] = "JOISTED_MASONRY";
|
|
53
|
+
ConstructionType[ConstructionType["MASONRY"] = 2] = "MASONRY";
|
|
54
|
+
ConstructionType[ConstructionType["MASONRY_VENEER"] = 3] = "MASONRY_VENEER";
|
|
55
|
+
ConstructionType[ConstructionType["MODIFIED_FIRE_RESISTIVE"] = 4] = "MODIFIED_FIRE_RESISTIVE";
|
|
56
|
+
ConstructionType[ConstructionType["FIRE_RESISTIVE_SUPERIOR"] = 5] = "FIRE_RESISTIVE_SUPERIOR";
|
|
57
|
+
ConstructionType[ConstructionType["SUPERIOR_NON_COMBUSTIBLE"] = 6] = "SUPERIOR_NON_COMBUSTIBLE";
|
|
58
|
+
ConstructionType[ConstructionType["STUCCO"] = 7] = "STUCCO";
|
|
59
|
+
ConstructionType[ConstructionType["METAL_ALUMINUM_SIDING"] = 8] = "METAL_ALUMINUM_SIDING";
|
|
60
|
+
ConstructionType[ConstructionType["CONCRETE"] = 9] = "CONCRETE";
|
|
61
|
+
ConstructionType[ConstructionType["STEEL"] = 10] = "STEEL";
|
|
62
|
+
ConstructionType[ConstructionType["MOBILE_HOME"] = 11] = "MOBILE_HOME";
|
|
63
|
+
ConstructionType[ConstructionType["LOG_HOME"] = 12] = "LOG_HOME";
|
|
64
|
+
})(ConstructionType || (ConstructionType = {}));
|
|
65
|
+
export var EducationType;
|
|
66
|
+
(function (EducationType) {
|
|
67
|
+
EducationType[EducationType["SOME_HIGH_SCHOOL"] = 0] = "SOME_HIGH_SCHOOL";
|
|
68
|
+
EducationType[EducationType["HIGH_SCHOOL"] = 1] = "HIGH_SCHOOL";
|
|
69
|
+
EducationType[EducationType["SOME_COLLEGE"] = 2] = "SOME_COLLEGE";
|
|
70
|
+
EducationType[EducationType["ASSOCIATES_DEGREE"] = 3] = "ASSOCIATES_DEGREE";
|
|
71
|
+
EducationType[EducationType["BACHELORS_DEGREE"] = 4] = "BACHELORS_DEGREE";
|
|
72
|
+
EducationType[EducationType["MASTERS_DEGREE"] = 5] = "MASTERS_DEGREE";
|
|
73
|
+
EducationType[EducationType["DOCTORATE_DEGREE"] = 6] = "DOCTORATE_DEGREE";
|
|
74
|
+
EducationType[EducationType["GED"] = 7] = "GED";
|
|
75
|
+
EducationType[EducationType["VOCATIONAL_TECHNICAL"] = 8] = "VOCATIONAL_TECHNICAL";
|
|
76
|
+
})(EducationType || (EducationType = {}));
|
|
77
|
+
export var FoundationType;
|
|
78
|
+
(function (FoundationType) {
|
|
79
|
+
FoundationType[FoundationType["SLAB"] = 0] = "SLAB";
|
|
80
|
+
FoundationType[FoundationType["CRAWL_SPACE"] = 1] = "CRAWL_SPACE";
|
|
81
|
+
FoundationType[FoundationType["BASEMENT"] = 2] = "BASEMENT";
|
|
82
|
+
FoundationType[FoundationType["PIER"] = 3] = "PIER";
|
|
83
|
+
FoundationType[FoundationType["HILLSIDE"] = 4] = "HILLSIDE";
|
|
84
|
+
FoundationType[FoundationType["OTHER"] = 5] = "OTHER";
|
|
85
|
+
})(FoundationType || (FoundationType = {}));
|
|
86
|
+
export var HeatType;
|
|
87
|
+
(function (HeatType) {
|
|
88
|
+
HeatType[HeatType["Electric"] = 0] = "Electric";
|
|
89
|
+
HeatType[HeatType["Gas"] = 1] = "Gas";
|
|
90
|
+
HeatType[HeatType["Wood"] = 2] = "Wood";
|
|
91
|
+
HeatType[HeatType["Oil"] = 3] = "Oil";
|
|
92
|
+
HeatType[HeatType["Other"] = 4] = "Other";
|
|
93
|
+
})(HeatType || (HeatType = {}));
|
|
94
|
+
export var HomeStyle;
|
|
95
|
+
(function (HomeStyle) {
|
|
96
|
+
HomeStyle[HomeStyle["Unknown"] = 0] = "Unknown";
|
|
97
|
+
HomeStyle[HomeStyle["Ranch"] = 1] = "Ranch";
|
|
98
|
+
HomeStyle[HomeStyle["CapeCod"] = 2] = "CapeCod";
|
|
99
|
+
HomeStyle[HomeStyle["Colonial"] = 3] = "Colonial";
|
|
100
|
+
HomeStyle[HomeStyle["BiLevel"] = 4] = "BiLevel";
|
|
101
|
+
HomeStyle[HomeStyle["SplitLevel"] = 5] = "SplitLevel";
|
|
102
|
+
HomeStyle[HomeStyle["BackSplit"] = 6] = "BackSplit";
|
|
103
|
+
HomeStyle[HomeStyle["Bungalow"] = 7] = "Bungalow";
|
|
104
|
+
HomeStyle[HomeStyle["CondoCoOp"] = 8] = "CondoCoOp";
|
|
105
|
+
HomeStyle[HomeStyle["Contemporary"] = 9] = "Contemporary";
|
|
106
|
+
HomeStyle[HomeStyle["Cottage"] = 10] = "Cottage";
|
|
107
|
+
HomeStyle[HomeStyle["FederalColonial"] = 11] = "FederalColonial";
|
|
108
|
+
HomeStyle[HomeStyle["Mediterranean"] = 12] = "Mediterranean";
|
|
109
|
+
HomeStyle[HomeStyle["OrnateVictorian"] = 13] = "OrnateVictorian";
|
|
110
|
+
HomeStyle[HomeStyle["QueenAnne"] = 14] = "QueenAnne";
|
|
111
|
+
HomeStyle[HomeStyle["RaisedRanch"] = 15] = "RaisedRanch";
|
|
112
|
+
HomeStyle[HomeStyle["Rambler"] = 16] = "Rambler";
|
|
113
|
+
HomeStyle[HomeStyle["SouthwestAdobe"] = 17] = "SouthwestAdobe";
|
|
114
|
+
HomeStyle[HomeStyle["SplitFoyer"] = 18] = "SplitFoyer";
|
|
115
|
+
HomeStyle[HomeStyle["RowHouseCenter"] = 19] = "RowHouseCenter";
|
|
116
|
+
HomeStyle[HomeStyle["RowHouseEnd"] = 20] = "RowHouseEnd";
|
|
117
|
+
HomeStyle[HomeStyle["TriLevel"] = 21] = "TriLevel";
|
|
118
|
+
HomeStyle[HomeStyle["Victorian"] = 22] = "Victorian";
|
|
119
|
+
HomeStyle[HomeStyle["BiLevelRowEnd"] = 23] = "BiLevelRowEnd";
|
|
120
|
+
HomeStyle[HomeStyle["BiLevelRowCenter"] = 24] = "BiLevelRowCenter";
|
|
121
|
+
HomeStyle[HomeStyle["TriLevelRowEnd"] = 25] = "TriLevelRowEnd";
|
|
122
|
+
HomeStyle[HomeStyle["TriLevelRowCenter"] = 26] = "TriLevelRowCenter";
|
|
123
|
+
})(HomeStyle || (HomeStyle = {}));
|
|
124
|
+
export var LastPageVisited;
|
|
125
|
+
(function (LastPageVisited) {
|
|
126
|
+
LastPageVisited[LastPageVisited["GettingStarted2"] = 0] = "GettingStarted2";
|
|
127
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep1"] = 1] = "HomeOwnersStep1";
|
|
128
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep2"] = 2] = "HomeOwnersStep2";
|
|
129
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep3"] = 3] = "HomeOwnersStep3";
|
|
130
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep4"] = 4] = "HomeOwnersStep4";
|
|
131
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep5"] = 5] = "HomeOwnersStep5";
|
|
132
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep6"] = 6] = "HomeOwnersStep6";
|
|
133
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep7"] = 7] = "HomeOwnersStep7";
|
|
134
|
+
LastPageVisited[LastPageVisited["HomeOwnersRenovations"] = 8] = "HomeOwnersRenovations";
|
|
135
|
+
LastPageVisited[LastPageVisited["HomeOwnersStep10"] = 9] = "HomeOwnersStep10";
|
|
136
|
+
LastPageVisited[LastPageVisited["AutoPreviousPolicy"] = 10] = "AutoPreviousPolicy";
|
|
137
|
+
LastPageVisited[LastPageVisited["AutoNewPolicy"] = 11] = "AutoNewPolicy";
|
|
138
|
+
LastPageVisited[LastPageVisited["AutoVehicles"] = 12] = "AutoVehicles";
|
|
139
|
+
LastPageVisited[LastPageVisited["AutoDrivers"] = 13] = "AutoDrivers";
|
|
140
|
+
LastPageVisited[LastPageVisited["DiscountsOne"] = 14] = "DiscountsOne";
|
|
141
|
+
LastPageVisited[LastPageVisited["DiscountsTwo"] = 15] = "DiscountsTwo";
|
|
142
|
+
LastPageVisited[LastPageVisited["ChooseBundle"] = 16] = "ChooseBundle";
|
|
143
|
+
LastPageVisited[LastPageVisited["Quotes"] = 17] = "Quotes";
|
|
144
|
+
LastPageVisited[LastPageVisited["SelectedQuote"] = 18] = "SelectedQuote";
|
|
145
|
+
})(LastPageVisited || (LastPageVisited = {}));
|
|
146
|
+
export var LineOfBusiness;
|
|
147
|
+
(function (LineOfBusiness) {
|
|
148
|
+
LineOfBusiness[LineOfBusiness["HOMEOWNERS"] = 1] = "HOMEOWNERS";
|
|
149
|
+
LineOfBusiness[LineOfBusiness["PERSONAL_PACKAGE"] = 2] = "PERSONAL_PACKAGE";
|
|
150
|
+
LineOfBusiness[LineOfBusiness["PERSONAL_AUTO"] = 3] = "PERSONAL_AUTO";
|
|
151
|
+
})(LineOfBusiness || (LineOfBusiness = {}));
|
|
152
|
+
export var NumberOfStories;
|
|
153
|
+
(function (NumberOfStories) {
|
|
154
|
+
NumberOfStories[NumberOfStories["One"] = 0] = "One";
|
|
155
|
+
NumberOfStories[NumberOfStories["OnePointFive"] = 1] = "OnePointFive";
|
|
156
|
+
NumberOfStories[NumberOfStories["Two"] = 2] = "Two";
|
|
157
|
+
NumberOfStories[NumberOfStories["TwoPointFive"] = 3] = "TwoPointFive";
|
|
158
|
+
NumberOfStories[NumberOfStories["Three"] = 4] = "Three";
|
|
159
|
+
NumberOfStories[NumberOfStories["ThreePointFive"] = 5] = "ThreePointFive";
|
|
160
|
+
NumberOfStories[NumberOfStories["Four"] = 6] = "Four";
|
|
161
|
+
})(NumberOfStories || (NumberOfStories = {}));
|
|
162
|
+
export var OccupantType;
|
|
163
|
+
(function (OccupantType) {
|
|
164
|
+
OccupantType[OccupantType["OWNER"] = 0] = "OWNER";
|
|
165
|
+
OccupantType[OccupantType["TENANT"] = 1] = "TENANT";
|
|
166
|
+
})(OccupantType || (OccupantType = {}));
|
|
167
|
+
export var OverallQuality;
|
|
168
|
+
(function (OverallQuality) {
|
|
169
|
+
OverallQuality[OverallQuality["Standard"] = 0] = "Standard";
|
|
170
|
+
OverallQuality[OverallQuality["High"] = 1] = "High";
|
|
171
|
+
OverallQuality[OverallQuality["Premium"] = 2] = "Premium";
|
|
172
|
+
})(OverallQuality || (OverallQuality = {}));
|
|
1
173
|
export var PersonalPropertyLineOfBusiness;
|
|
2
174
|
(function (PersonalPropertyLineOfBusiness) {
|
|
3
175
|
PersonalPropertyLineOfBusiness[PersonalPropertyLineOfBusiness["HOMEOWNERS"] = 1] = "HOMEOWNERS";
|
|
4
176
|
PersonalPropertyLineOfBusiness[PersonalPropertyLineOfBusiness["PERSONAL_PACKAGE"] = 2] = "PERSONAL_PACKAGE";
|
|
5
177
|
PersonalPropertyLineOfBusiness[PersonalPropertyLineOfBusiness["PERSONAL_AUTO"] = 3] = "PERSONAL_AUTO";
|
|
6
178
|
})(PersonalPropertyLineOfBusiness || (PersonalPropertyLineOfBusiness = {}));
|
|
179
|
+
export var ResidenceType;
|
|
180
|
+
(function (ResidenceType) {
|
|
181
|
+
ResidenceType[ResidenceType["SingleFamilyDwelling"] = 0] = "SingleFamilyDwelling";
|
|
182
|
+
ResidenceType[ResidenceType["Condo"] = 1] = "Condo";
|
|
183
|
+
ResidenceType[ResidenceType["Apartment"] = 2] = "Apartment";
|
|
184
|
+
ResidenceType[ResidenceType["MobileHome"] = 3] = "MobileHome";
|
|
185
|
+
ResidenceType[ResidenceType["CoOp"] = 4] = "CoOp";
|
|
186
|
+
ResidenceType[ResidenceType["Townhouse"] = 5] = "Townhouse";
|
|
187
|
+
ResidenceType[ResidenceType["Rowhouse"] = 6] = "Rowhouse";
|
|
188
|
+
ResidenceType[ResidenceType["Other"] = 7] = "Other";
|
|
189
|
+
})(ResidenceType || (ResidenceType = {}));
|
|
190
|
+
export var RoofType;
|
|
191
|
+
(function (RoofType) {
|
|
192
|
+
RoofType[RoofType["ALUMINUM_SHINGLES"] = 0] = "ALUMINUM_SHINGLES";
|
|
193
|
+
RoofType[RoofType["ARCHITECTURAL_SHINGLES"] = 1] = "ARCHITECTURAL_SHINGLES";
|
|
194
|
+
RoofType[RoofType["ASBESTOS"] = 2] = "ASBESTOS";
|
|
195
|
+
RoofType[RoofType["ASPHALT_SHINGLE"] = 3] = "ASPHALT_SHINGLE";
|
|
196
|
+
RoofType[RoofType["CEDAR_SHAKES"] = 4] = "CEDAR_SHAKES";
|
|
197
|
+
RoofType[RoofType["CEDAR_SHINGLES"] = 5] = "CEDAR_SHINGLES";
|
|
198
|
+
RoofType[RoofType["CLAY_TILE_OR_SLATE"] = 6] = "CLAY_TILE_OR_SLATE";
|
|
199
|
+
RoofType[RoofType["COMPOSITION_FIBERGLASS_ASPHALT_ETC"] = 7] = "COMPOSITION_FIBERGLASS_ASPHALT_ETC";
|
|
200
|
+
RoofType[RoofType["CONCRETE_TILE"] = 8] = "CONCRETE_TILE";
|
|
201
|
+
RoofType[RoofType["CONCRETE_NOT_TILE"] = 9] = "CONCRETE_NOT_TILE";
|
|
202
|
+
RoofType[RoofType["COPPER"] = 10] = "COPPER";
|
|
203
|
+
RoofType[RoofType["FIBERGLASS"] = 11] = "FIBERGLASS";
|
|
204
|
+
RoofType[RoofType["FOAM"] = 12] = "FOAM";
|
|
205
|
+
RoofType[RoofType["GRAVEL"] = 13] = "GRAVEL";
|
|
206
|
+
RoofType[RoofType["METAL"] = 14] = "METAL";
|
|
207
|
+
RoofType[RoofType["MINERAL_FIBER"] = 15] = "MINERAL_FIBER";
|
|
208
|
+
RoofType[RoofType["MISSION_TILE"] = 16] = "MISSION_TILE";
|
|
209
|
+
RoofType[RoofType["OTHER"] = 17] = "OTHER";
|
|
210
|
+
RoofType[RoofType["PLASTIC"] = 18] = "PLASTIC";
|
|
211
|
+
RoofType[RoofType["POURED"] = 19] = "POURED";
|
|
212
|
+
RoofType[RoofType["RECYCLED_ROOFING_PRODUCTS"] = 20] = "RECYCLED_ROOFING_PRODUCTS";
|
|
213
|
+
RoofType[RoofType["ROCK"] = 21] = "ROCK";
|
|
214
|
+
RoofType[RoofType["ROLLED_ROOFING"] = 22] = "ROLLED_ROOFING";
|
|
215
|
+
RoofType[RoofType["RUBBER_ROOF"] = 23] = "RUBBER_ROOF";
|
|
216
|
+
RoofType[RoofType["SLATE"] = 24] = "SLATE";
|
|
217
|
+
RoofType[RoofType["SPANISH_TILE"] = 25] = "SPANISH_TILE";
|
|
218
|
+
RoofType[RoofType["CORRUGATED_STEEL"] = 26] = "CORRUGATED_STEEL";
|
|
219
|
+
RoofType[RoofType["STEEL_PORCELAIN_SHINGLES"] = 27] = "STEEL_PORCELAIN_SHINGLES";
|
|
220
|
+
RoofType[RoofType["TAR_AND_GRAVEL"] = 28] = "TAR_AND_GRAVEL";
|
|
221
|
+
RoofType[RoofType["TILE"] = 29] = "TILE";
|
|
222
|
+
RoofType[RoofType["TIN"] = 30] = "TIN";
|
|
223
|
+
RoofType[RoofType["WOOD_FIBER_SHINGLES"] = 31] = "WOOD_FIBER_SHINGLES";
|
|
224
|
+
RoofType[RoofType["WOOD_SHAKES"] = 32] = "WOOD_SHAKES";
|
|
225
|
+
RoofType[RoofType["WOOD_SHINGLES"] = 33] = "WOOD_SHINGLES";
|
|
226
|
+
RoofType[RoofType["WOOD_SHAKE_SHINGLE"] = 34] = "WOOD_SHAKE_SHINGLE";
|
|
227
|
+
})(RoofType || (RoofType = {}));
|
|
228
|
+
export var StartingLobType;
|
|
229
|
+
(function (StartingLobType) {
|
|
230
|
+
StartingLobType[StartingLobType["Homeowners"] = 0] = "Homeowners";
|
|
231
|
+
StartingLobType[StartingLobType["Auto"] = 1] = "Auto";
|
|
232
|
+
})(StartingLobType || (StartingLobType = {}));
|
|
7
233
|
export var PersonalPropertySiteSeed;
|
|
8
234
|
(function (PersonalPropertySiteSeed) {
|
|
9
235
|
PersonalPropertySiteSeed[PersonalPropertySiteSeed["Home"] = 0] = "Home";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lg.net.leavittlink.js","sourceRoot":"","sources":["lg.net.leavittlink.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"lg.net.leavittlink.js","sourceRoot":"","sources":["lg.net.leavittlink.ts"],"names":[],"mappings":"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"}
|
package/lg.net.leavittlink.ts
CHANGED
|
@@ -5,6 +5,58 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
7
|
|
|
8
|
+
export interface AutoAccident {
|
|
9
|
+
AutoDriver: Partial<AutoDriver> | null;
|
|
10
|
+
AutoDriverId: number;
|
|
11
|
+
Date: string;
|
|
12
|
+
Id: number;
|
|
13
|
+
Type: AutoAccidentTypeString | null;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface AutoDriver {
|
|
17
|
+
AutoAccidents: Array<Partial<AutoAccident>> | null;
|
|
18
|
+
AutoDriverToAutoVehicles: Array<Partial<AutoDriverToAutoVehicle>> | null;
|
|
19
|
+
DateOfBirth: string;
|
|
20
|
+
FirstLicensedDate: string | null;
|
|
21
|
+
FirstName: string | null;
|
|
22
|
+
Gender: string | null;
|
|
23
|
+
Id: number;
|
|
24
|
+
LastName: string | null;
|
|
25
|
+
LicenseState: string | null;
|
|
26
|
+
LicenseStatus: LicenseStatusTypeString;
|
|
27
|
+
MaritalStatus: MaritalStatusTypeString;
|
|
28
|
+
PersonalPropertyQuoteRequest: Partial<PersonalPropertyQuoteRequest> | null;
|
|
29
|
+
PersonalPropertyQuoteRequestId: number;
|
|
30
|
+
RelationshipToInsured: RelationshipToInsuredTypeString;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface AutoDriverToAutoVehicle {
|
|
34
|
+
AutoDriver: Partial<AutoDriver> | null;
|
|
35
|
+
AutoDriverId: number;
|
|
36
|
+
AutoVehicle: Partial<AutoVehicle> | null;
|
|
37
|
+
AutoVehicleId: number;
|
|
38
|
+
Id: number;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface AutoVehicle {
|
|
42
|
+
AcquisitionDate: string;
|
|
43
|
+
AnnualMilesDriven: number;
|
|
44
|
+
AutoDriverToAutoVehicles: Array<Partial<AutoDriverToAutoVehicle>> | null;
|
|
45
|
+
CollisionDeductible: number | null;
|
|
46
|
+
ComprehensiveDeductible: number | null;
|
|
47
|
+
Id: number;
|
|
48
|
+
Make: string | null;
|
|
49
|
+
Model: string | null;
|
|
50
|
+
ModelYear: number;
|
|
51
|
+
PersonalPropertyQuoteRequest: Partial<PersonalPropertyQuoteRequest> | null;
|
|
52
|
+
PersonalPropertyQuoteRequestId: number;
|
|
53
|
+
PrimaryDriverId: number | null;
|
|
54
|
+
TowingCoverageLimit: number | null;
|
|
55
|
+
TransportationExpense: string | null;
|
|
56
|
+
VehicleUsage: VehicleUsageTypeString;
|
|
57
|
+
VIN: string | null;
|
|
58
|
+
}
|
|
59
|
+
|
|
8
60
|
export interface CarrierLogin {
|
|
9
61
|
AgencyCode: string | null;
|
|
10
62
|
Carrier: Partial<PersonalPropertyCarrier> | null;
|
|
@@ -14,9 +66,55 @@ export interface CarrierLogin {
|
|
|
14
66
|
Username: string | null;
|
|
15
67
|
}
|
|
16
68
|
|
|
69
|
+
export interface HomeOwnersCoverage {
|
|
70
|
+
Description: string | null;
|
|
71
|
+
HomeOwnersQuote: Partial<HomeOwnersQuote> | null;
|
|
72
|
+
HomeOwnersQuoteId: number;
|
|
73
|
+
Id: number;
|
|
74
|
+
Limit1: Partial<number> | null;
|
|
75
|
+
Limit2: Partial<number> | null;
|
|
76
|
+
Premium: Partial<number> | null;
|
|
77
|
+
Type: string | null;
|
|
78
|
+
Waived: boolean;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface HomeOwnersQuote extends PersonalPropertyQuote {
|
|
82
|
+
Coverages: Array<Partial<HomeOwnersCoverage>> | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface PersonalAutoCoverage {
|
|
86
|
+
Description: string | null;
|
|
87
|
+
Id: number;
|
|
88
|
+
Limit1: Partial<number> | null;
|
|
89
|
+
Limit2: Partial<number> | null;
|
|
90
|
+
PersonalAutoQuote: Partial<PersonalAutoQuote> | null;
|
|
91
|
+
PersonalAutoQuoteId: number;
|
|
92
|
+
Premium: Partial<number> | null;
|
|
93
|
+
Type: string | null;
|
|
94
|
+
Waived: boolean;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export interface PersonalAutoQuote extends PersonalPropertyQuote {
|
|
98
|
+
Coverages: Array<Partial<PersonalAutoCoverage>> | null;
|
|
99
|
+
}
|
|
100
|
+
|
|
17
101
|
export interface PersonalPropertyCarrier extends Carrier {
|
|
102
|
+
CarrierErrors: Array<Partial<PersonalPropertyCarrierError>> | null;
|
|
18
103
|
Logins: Array<Partial<CarrierLogin>> | null;
|
|
19
104
|
PersonalPropertyCarrierLogo: Partial<PersonalPropertyCarrierLogo> | null;
|
|
105
|
+
Quotes: Array<Partial<PersonalPropertyQuote>> | null;
|
|
106
|
+
SelectedQuoteRequests: Array<Partial<PersonalPropertyQuoteRequest>> | null;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface PersonalPropertyCarrierError {
|
|
110
|
+
Carrier: Partial<PersonalPropertyCarrier> | null;
|
|
111
|
+
CarrierId: number;
|
|
112
|
+
CarrierName: string | null;
|
|
113
|
+
Id: number;
|
|
114
|
+
LineOfBusiness: LineOfBusinessString;
|
|
115
|
+
Message: string | null;
|
|
116
|
+
PersonalPropertyQuoteRequest: Partial<PersonalPropertyQuoteRequest> | null;
|
|
117
|
+
PersonalPropertyQuoteRequestId: number;
|
|
20
118
|
}
|
|
21
119
|
|
|
22
120
|
export interface PersonalPropertyCarrierLogo extends IDatabaseAttachment {
|
|
@@ -24,6 +122,90 @@ export interface PersonalPropertyCarrierLogo extends IDatabaseAttachment {
|
|
|
24
122
|
CarrierId: number;
|
|
25
123
|
}
|
|
26
124
|
|
|
125
|
+
export interface PersonalPropertyQuote {
|
|
126
|
+
Carrier: Partial<PersonalPropertyCarrier> | null;
|
|
127
|
+
CarrierId: number;
|
|
128
|
+
CompanyUnitId: number;
|
|
129
|
+
CreatedDate: string;
|
|
130
|
+
EffectiveDate: string | null;
|
|
131
|
+
ExpirationDate: string | null;
|
|
132
|
+
Id: number;
|
|
133
|
+
PersonalPropertyQuoteRequest: Partial<PersonalPropertyQuoteRequest> | null;
|
|
134
|
+
PersonalPropertyQuoteRequestId: number;
|
|
135
|
+
PolicyKey: string | null;
|
|
136
|
+
Premium: Partial<number> | null;
|
|
137
|
+
RatedTermMonths: number;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export interface PersonalPropertyQuoteRequest extends QuoteRequest {
|
|
141
|
+
AcquisitionDate: string | null;
|
|
142
|
+
AutoDrivers: Array<Partial<AutoDriver>> | null;
|
|
143
|
+
AutoEffectiveDate: string | null;
|
|
144
|
+
AutoExpirationDate: string | null;
|
|
145
|
+
AutoInjuryCoverageLimit: number | null;
|
|
146
|
+
AutoLiabilityCoverageLimit: number | null;
|
|
147
|
+
AutoMonthsInsured: number | null;
|
|
148
|
+
AutoVehicles: Array<Partial<AutoVehicle>> | null;
|
|
149
|
+
Baths: Partial<number> | null;
|
|
150
|
+
CarrierErrors: Array<Partial<PersonalPropertyCarrierError>> | null;
|
|
151
|
+
ClaimsLast5Years: number | null;
|
|
152
|
+
CoApplicantDateOfBirth: string | null;
|
|
153
|
+
CoApplicantFirstName: string | null;
|
|
154
|
+
CoApplicantLastName: string | null;
|
|
155
|
+
CoApplicantRelationshipToInsured: CoApplicantRelationshipToInsuredString | null;
|
|
156
|
+
ConstructionType: ConstructionTypeString | null;
|
|
157
|
+
CorrelationId: string | null;
|
|
158
|
+
DateOfBirth: string;
|
|
159
|
+
EducationLevel: EducationTypeString | null;
|
|
160
|
+
EffectiveDate: string | null;
|
|
161
|
+
ElectricalRenovationYear: number | null;
|
|
162
|
+
EloquaContactId: number | null;
|
|
163
|
+
EmailAddress: string | null;
|
|
164
|
+
FirstName: string | null;
|
|
165
|
+
FoundationType: FoundationTypeString | null;
|
|
166
|
+
FulfillErrorMessage: string | null;
|
|
167
|
+
HasAutomaticSprinklers: boolean | null;
|
|
168
|
+
HasBeenFulfilled: boolean;
|
|
169
|
+
HasBurglarAlarm: boolean | null;
|
|
170
|
+
HasCats: boolean | null;
|
|
171
|
+
HasDeadBolts: boolean | null;
|
|
172
|
+
HasDogs: boolean | null;
|
|
173
|
+
HasFireAlarm: boolean | null;
|
|
174
|
+
HasFireExtinguisher: boolean | null;
|
|
175
|
+
HasFulfillBeenRequested: boolean;
|
|
176
|
+
HasSmokeDetector: boolean | null;
|
|
177
|
+
HasSwimmingPool: boolean | null;
|
|
178
|
+
HasTrampoline: boolean | null;
|
|
179
|
+
HeatingRenovationYear: number | null;
|
|
180
|
+
HomeEstimatedValue: number | null;
|
|
181
|
+
HomeStyle: HomeStyleString | null;
|
|
182
|
+
HouseholdDoesNotConsumeAlcohol: boolean | null;
|
|
183
|
+
IsBundled: boolean;
|
|
184
|
+
IsEnrolledInDrivingProgram: boolean | null;
|
|
185
|
+
IsPaperLess: boolean | null;
|
|
186
|
+
LastName: string | null;
|
|
187
|
+
LastPageVisited: LastPageVisitedString;
|
|
188
|
+
NumberOfBedrooms: number | null;
|
|
189
|
+
NumberOfStories: NumberOfStoriesString | null;
|
|
190
|
+
OccupantType: OccupantTypeString | null;
|
|
191
|
+
OverallQuality: OverallQualityString | null;
|
|
192
|
+
PleaseAdviseMe: boolean | null;
|
|
193
|
+
PlRaterLaunchUrl: string | null;
|
|
194
|
+
PlumbingRenovationYear: number | null;
|
|
195
|
+
PrimaryHeatType: HeatTypeString | null;
|
|
196
|
+
Quotes: Array<Partial<PersonalPropertyQuote>> | null;
|
|
197
|
+
ResidenceType: ResidenceTypeString | null;
|
|
198
|
+
RoofRenovationYear: number | null;
|
|
199
|
+
RoofType: RoofTypeString | null;
|
|
200
|
+
SelectedCarrier: Partial<PersonalPropertyCarrier> | null;
|
|
201
|
+
SelectedCarrierId: number | null;
|
|
202
|
+
SelectedQuoteId: number | null;
|
|
203
|
+
SquareFootage: number | null;
|
|
204
|
+
StartingLob: StartingLobTypeString;
|
|
205
|
+
UserGuid: string | null;
|
|
206
|
+
YearBuilt: number | null;
|
|
207
|
+
}
|
|
208
|
+
|
|
27
209
|
export interface PersonalPropertyRater extends Rater {
|
|
28
210
|
AppAccentColor: string | null;
|
|
29
211
|
AppPrimaryColor: string | null;
|
|
@@ -267,6 +449,210 @@ export interface RaterCompanyMarkAttachment extends IDatabaseAttachment {
|
|
|
267
449
|
Company: Partial<RaterCompany> | null;
|
|
268
450
|
}
|
|
269
451
|
|
|
452
|
+
export enum AutoAccidentType {
|
|
453
|
+
Speeding = 0,
|
|
454
|
+
DWI = 1,
|
|
455
|
+
StopSign = 2,
|
|
456
|
+
NotAtFaultAccident = 3,
|
|
457
|
+
OtherMinorViolation = 4,
|
|
458
|
+
OtherMajorViolation = 5
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
export type AutoAccidentTypeString = keyof typeof AutoAccidentType;
|
|
462
|
+
|
|
463
|
+
export enum LicenseStatusType {
|
|
464
|
+
Active = 0,
|
|
465
|
+
Canceled = 1,
|
|
466
|
+
Revoked = 2,
|
|
467
|
+
Suspended = 3,
|
|
468
|
+
None = 4
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
export type LicenseStatusTypeString = keyof typeof LicenseStatusType;
|
|
472
|
+
|
|
473
|
+
export enum MaritalStatusType {
|
|
474
|
+
Single = 0,
|
|
475
|
+
Married = 1,
|
|
476
|
+
Separated = 2,
|
|
477
|
+
Divorced = 3,
|
|
478
|
+
Widowed = 4,
|
|
479
|
+
DomesticPartner = 5
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export type MaritalStatusTypeString = keyof typeof MaritalStatusType;
|
|
483
|
+
|
|
484
|
+
export enum RelationshipToInsuredType {
|
|
485
|
+
Self = 0,
|
|
486
|
+
Spouse = 1,
|
|
487
|
+
Parent = 2,
|
|
488
|
+
Child = 3,
|
|
489
|
+
Other = 4
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
export type RelationshipToInsuredTypeString = keyof typeof RelationshipToInsuredType;
|
|
493
|
+
|
|
494
|
+
export enum VehicleUsageType {
|
|
495
|
+
Business = 0,
|
|
496
|
+
Personal = 1
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
export type VehicleUsageTypeString = keyof typeof VehicleUsageType;
|
|
500
|
+
|
|
501
|
+
export enum CoApplicantRelationshipToInsured {
|
|
502
|
+
SPOUSE = 0,
|
|
503
|
+
PARTNER = 1,
|
|
504
|
+
CHILD = 2,
|
|
505
|
+
OTHER_RELATIVE = 3,
|
|
506
|
+
OTHER_NON_RELATIVE = 4,
|
|
507
|
+
PARENT = 5
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
export type CoApplicantRelationshipToInsuredString = keyof typeof CoApplicantRelationshipToInsured;
|
|
511
|
+
|
|
512
|
+
export enum ConstructionType {
|
|
513
|
+
FRAME = 0,
|
|
514
|
+
JOISTED_MASONRY = 1,
|
|
515
|
+
MASONRY = 2,
|
|
516
|
+
MASONRY_VENEER = 3,
|
|
517
|
+
MODIFIED_FIRE_RESISTIVE = 4,
|
|
518
|
+
FIRE_RESISTIVE_SUPERIOR = 5,
|
|
519
|
+
SUPERIOR_NON_COMBUSTIBLE = 6,
|
|
520
|
+
STUCCO = 7,
|
|
521
|
+
METAL_ALUMINUM_SIDING = 8,
|
|
522
|
+
CONCRETE = 9,
|
|
523
|
+
STEEL = 10,
|
|
524
|
+
MOBILE_HOME = 11,
|
|
525
|
+
LOG_HOME = 12
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
export type ConstructionTypeString = keyof typeof ConstructionType;
|
|
529
|
+
|
|
530
|
+
export enum EducationType {
|
|
531
|
+
SOME_HIGH_SCHOOL = 0,
|
|
532
|
+
HIGH_SCHOOL = 1,
|
|
533
|
+
SOME_COLLEGE = 2,
|
|
534
|
+
ASSOCIATES_DEGREE = 3,
|
|
535
|
+
BACHELORS_DEGREE = 4,
|
|
536
|
+
MASTERS_DEGREE = 5,
|
|
537
|
+
DOCTORATE_DEGREE = 6,
|
|
538
|
+
GED = 7,
|
|
539
|
+
VOCATIONAL_TECHNICAL = 8
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
export type EducationTypeString = keyof typeof EducationType;
|
|
543
|
+
|
|
544
|
+
export enum FoundationType {
|
|
545
|
+
SLAB = 0,
|
|
546
|
+
CRAWL_SPACE = 1,
|
|
547
|
+
BASEMENT = 2,
|
|
548
|
+
PIER = 3,
|
|
549
|
+
HILLSIDE = 4,
|
|
550
|
+
OTHER = 5
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export type FoundationTypeString = keyof typeof FoundationType;
|
|
554
|
+
|
|
555
|
+
export enum HeatType {
|
|
556
|
+
Electric = 0,
|
|
557
|
+
Gas = 1,
|
|
558
|
+
Wood = 2,
|
|
559
|
+
Oil = 3,
|
|
560
|
+
Other = 4
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
export type HeatTypeString = keyof typeof HeatType;
|
|
564
|
+
|
|
565
|
+
export enum HomeStyle {
|
|
566
|
+
Unknown = 0,
|
|
567
|
+
Ranch = 1,
|
|
568
|
+
CapeCod = 2,
|
|
569
|
+
Colonial = 3,
|
|
570
|
+
BiLevel = 4,
|
|
571
|
+
SplitLevel = 5,
|
|
572
|
+
BackSplit = 6,
|
|
573
|
+
Bungalow = 7,
|
|
574
|
+
CondoCoOp = 8,
|
|
575
|
+
Contemporary = 9,
|
|
576
|
+
Cottage = 10,
|
|
577
|
+
FederalColonial = 11,
|
|
578
|
+
Mediterranean = 12,
|
|
579
|
+
OrnateVictorian = 13,
|
|
580
|
+
QueenAnne = 14,
|
|
581
|
+
RaisedRanch = 15,
|
|
582
|
+
Rambler = 16,
|
|
583
|
+
SouthwestAdobe = 17,
|
|
584
|
+
SplitFoyer = 18,
|
|
585
|
+
RowHouseCenter = 19,
|
|
586
|
+
RowHouseEnd = 20,
|
|
587
|
+
TriLevel = 21,
|
|
588
|
+
Victorian = 22,
|
|
589
|
+
BiLevelRowEnd = 23,
|
|
590
|
+
BiLevelRowCenter = 24,
|
|
591
|
+
TriLevelRowEnd = 25,
|
|
592
|
+
TriLevelRowCenter = 26
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
export type HomeStyleString = keyof typeof HomeStyle;
|
|
596
|
+
|
|
597
|
+
export enum LastPageVisited {
|
|
598
|
+
GettingStarted2 = 0,
|
|
599
|
+
HomeOwnersStep1 = 1,
|
|
600
|
+
HomeOwnersStep2 = 2,
|
|
601
|
+
HomeOwnersStep3 = 3,
|
|
602
|
+
HomeOwnersStep4 = 4,
|
|
603
|
+
HomeOwnersStep5 = 5,
|
|
604
|
+
HomeOwnersStep6 = 6,
|
|
605
|
+
HomeOwnersStep7 = 7,
|
|
606
|
+
HomeOwnersRenovations = 8,
|
|
607
|
+
HomeOwnersStep10 = 9,
|
|
608
|
+
AutoPreviousPolicy = 10,
|
|
609
|
+
AutoNewPolicy = 11,
|
|
610
|
+
AutoVehicles = 12,
|
|
611
|
+
AutoDrivers = 13,
|
|
612
|
+
DiscountsOne = 14,
|
|
613
|
+
DiscountsTwo = 15,
|
|
614
|
+
ChooseBundle = 16,
|
|
615
|
+
Quotes = 17,
|
|
616
|
+
SelectedQuote = 18
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
export type LastPageVisitedString = keyof typeof LastPageVisited;
|
|
620
|
+
|
|
621
|
+
export enum LineOfBusiness {
|
|
622
|
+
HOMEOWNERS = 1,
|
|
623
|
+
PERSONAL_PACKAGE = 2,
|
|
624
|
+
PERSONAL_AUTO = 3
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
export type LineOfBusinessString = keyof typeof LineOfBusiness;
|
|
628
|
+
|
|
629
|
+
export enum NumberOfStories {
|
|
630
|
+
One = 0,
|
|
631
|
+
OnePointFive = 1,
|
|
632
|
+
Two = 2,
|
|
633
|
+
TwoPointFive = 3,
|
|
634
|
+
Three = 4,
|
|
635
|
+
ThreePointFive = 5,
|
|
636
|
+
Four = 6
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
export type NumberOfStoriesString = keyof typeof NumberOfStories;
|
|
640
|
+
|
|
641
|
+
export enum OccupantType {
|
|
642
|
+
OWNER = 0,
|
|
643
|
+
TENANT = 1
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
export type OccupantTypeString = keyof typeof OccupantType;
|
|
647
|
+
|
|
648
|
+
export enum OverallQuality {
|
|
649
|
+
Standard = 0,
|
|
650
|
+
High = 1,
|
|
651
|
+
Premium = 2
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
export type OverallQualityString = keyof typeof OverallQuality;
|
|
655
|
+
|
|
270
656
|
export enum PersonalPropertyLineOfBusiness {
|
|
271
657
|
HOMEOWNERS = 1,
|
|
272
658
|
PERSONAL_PACKAGE = 2,
|
|
@@ -275,6 +661,66 @@ export enum PersonalPropertyLineOfBusiness {
|
|
|
275
661
|
|
|
276
662
|
export type PersonalPropertyLineOfBusinessString = keyof typeof PersonalPropertyLineOfBusiness;
|
|
277
663
|
|
|
664
|
+
export enum ResidenceType {
|
|
665
|
+
SingleFamilyDwelling = 0,
|
|
666
|
+
Condo = 1,
|
|
667
|
+
Apartment = 2,
|
|
668
|
+
MobileHome = 3,
|
|
669
|
+
CoOp = 4,
|
|
670
|
+
Townhouse = 5,
|
|
671
|
+
Rowhouse = 6,
|
|
672
|
+
Other = 7
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
export type ResidenceTypeString = keyof typeof ResidenceType;
|
|
676
|
+
|
|
677
|
+
export enum RoofType {
|
|
678
|
+
ALUMINUM_SHINGLES = 0,
|
|
679
|
+
ARCHITECTURAL_SHINGLES = 1,
|
|
680
|
+
ASBESTOS = 2,
|
|
681
|
+
ASPHALT_SHINGLE = 3,
|
|
682
|
+
CEDAR_SHAKES = 4,
|
|
683
|
+
CEDAR_SHINGLES = 5,
|
|
684
|
+
CLAY_TILE_OR_SLATE = 6,
|
|
685
|
+
COMPOSITION_FIBERGLASS_ASPHALT_ETC = 7,
|
|
686
|
+
CONCRETE_TILE = 8,
|
|
687
|
+
CONCRETE_NOT_TILE = 9,
|
|
688
|
+
COPPER = 10,
|
|
689
|
+
FIBERGLASS = 11,
|
|
690
|
+
FOAM = 12,
|
|
691
|
+
GRAVEL = 13,
|
|
692
|
+
METAL = 14,
|
|
693
|
+
MINERAL_FIBER = 15,
|
|
694
|
+
MISSION_TILE = 16,
|
|
695
|
+
OTHER = 17,
|
|
696
|
+
PLASTIC = 18,
|
|
697
|
+
POURED = 19,
|
|
698
|
+
RECYCLED_ROOFING_PRODUCTS = 20,
|
|
699
|
+
ROCK = 21,
|
|
700
|
+
ROLLED_ROOFING = 22,
|
|
701
|
+
RUBBER_ROOF = 23,
|
|
702
|
+
SLATE = 24,
|
|
703
|
+
SPANISH_TILE = 25,
|
|
704
|
+
CORRUGATED_STEEL = 26,
|
|
705
|
+
STEEL_PORCELAIN_SHINGLES = 27,
|
|
706
|
+
TAR_AND_GRAVEL = 28,
|
|
707
|
+
TILE = 29,
|
|
708
|
+
TIN = 30,
|
|
709
|
+
WOOD_FIBER_SHINGLES = 31,
|
|
710
|
+
WOOD_SHAKES = 32,
|
|
711
|
+
WOOD_SHINGLES = 33,
|
|
712
|
+
WOOD_SHAKE_SHINGLE = 34
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
export type RoofTypeString = keyof typeof RoofType;
|
|
716
|
+
|
|
717
|
+
export enum StartingLobType {
|
|
718
|
+
Homeowners = 0,
|
|
719
|
+
Auto = 1
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
export type StartingLobTypeString = keyof typeof StartingLobType;
|
|
723
|
+
|
|
278
724
|
export enum PersonalPropertySiteSeed {
|
|
279
725
|
Home = 0,
|
|
280
726
|
Auto = 1
|