@leavittsoftware/lg-core-typescript 2.47.0 → 2.50.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 +49 -1
- package/lg.net.leavittlink.js.map +1 -1
- package/lg.net.leavittlink.ts +14 -9
- 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":"AAkjCA,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,6 +4,7 @@
|
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
|
+
import { LifeQuoteRequestStatusString,ProductTypeString,GenderTypeString,HealthRatingTypeString,TobaccoTypeString } from './lg.net.leavittlink'
|
|
7
8
|
import { ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
8
9
|
|
|
9
10
|
export interface FruitHolderDto {
|
|
@@ -334,6 +335,14 @@ export interface HartfordEmailQuoteDto {
|
|
|
334
335
|
RecaptchaUserResponse: string | null;
|
|
335
336
|
}
|
|
336
337
|
|
|
338
|
+
export interface IxnLifeCarrierDto {
|
|
339
|
+
Id: number;
|
|
340
|
+
Large: string | null;
|
|
341
|
+
Medium: string | null;
|
|
342
|
+
Name: string | null;
|
|
343
|
+
Small: string | null;
|
|
344
|
+
}
|
|
345
|
+
|
|
337
346
|
export interface SpectrumDto {
|
|
338
347
|
AnswerSet: Array<Partial<AnswerSetDto>> | null;
|
|
339
348
|
ClassName: string | null;
|
|
@@ -371,7 +380,6 @@ export interface LifeGettingStartedStepOneDto {
|
|
|
371
380
|
LifeQuoteRequestId: number | null;
|
|
372
381
|
RaterUniqueId: string | null;
|
|
373
382
|
RecaptchaUserResponse: string | null;
|
|
374
|
-
ReferringUrl: string | null;
|
|
375
383
|
}
|
|
376
384
|
|
|
377
385
|
export interface LifeGettingStartedStepTwoDto {
|
|
@@ -383,6 +391,46 @@ export interface LifeGettingStartedStepTwoDto {
|
|
|
383
391
|
ZipCode: string | null;
|
|
384
392
|
}
|
|
385
393
|
|
|
394
|
+
export interface LifeLastPageVisitedDto {
|
|
395
|
+
LastPageVisited: LifeQuoteRequestStatusString;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export interface LifePreferredInsuranceDto {
|
|
399
|
+
CoverageAmount: Partial<number>;
|
|
400
|
+
ProductType: ProductTypeString;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export interface LifeSelectQuoteDto {
|
|
404
|
+
QuoteId: number;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export interface LifeWidgetFulfillDto {
|
|
408
|
+
City: string | null;
|
|
409
|
+
CoverageAmount: Partial<number>;
|
|
410
|
+
DateOfBirth: string;
|
|
411
|
+
EmailAddress: string | null;
|
|
412
|
+
FirstName: string | null;
|
|
413
|
+
Gender: GenderTypeString | null;
|
|
414
|
+
HealthRating: HealthRatingTypeString;
|
|
415
|
+
LastName: string | null;
|
|
416
|
+
LifeQuoteRequestId: number | null;
|
|
417
|
+
MacuWealthManager: string | null;
|
|
418
|
+
MacuWealthManagerEmail: string | null;
|
|
419
|
+
PhoneNumber: string | null;
|
|
420
|
+
ProductType: ProductTypeString;
|
|
421
|
+
RaterUniqueId: string | null;
|
|
422
|
+
State: string | null;
|
|
423
|
+
Street1: string | null;
|
|
424
|
+
Tobacco: TobaccoTypeString;
|
|
425
|
+
ZipCode: string | null;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export interface LifeYourHealthDto {
|
|
429
|
+
Gender: GenderTypeString;
|
|
430
|
+
HealthRating: HealthRatingTypeString;
|
|
431
|
+
Tobacco: TobaccoTypeString;
|
|
432
|
+
}
|
|
433
|
+
|
|
386
434
|
export interface CampaignSummaryDto {
|
|
387
435
|
Attempted: number;
|
|
388
436
|
Completed: number;
|
|
@@ -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":"AAmRA,MAAM,CAAN,IAAY,8BAIX;AAJD,WAAY,8BAA8B;IACtC,+FAAc,CAAA;IACd,2GAAoB,CAAA;IACpB,qGAAiB,CAAA;AACrB,CAAC,EAJW,8BAA8B,KAA9B,8BAA8B,QAIzC;AAID,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,uEAAQ,CAAA;IACR,uEAAQ,CAAA;AACZ,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC;AAID,MAAM,CAAN,IAAY,UAIX;AAJD,WAAY,UAAU;IAClB,iDAAW,CAAA;IACX,2CAAQ,CAAA;IACR,+CAAU,CAAA;AACd,CAAC,EAJW,UAAU,KAAV,UAAU,QAIrB;AAID,MAAM,CAAN,IAAY,gBAMX;AAND,WAAY,gBAAgB;IACxB,6DAAW,CAAA;IACX,yEAAiB,CAAA;IACjB,iEAAa,CAAA;IACb,uEAAgB,CAAA;IAChB,+DAAY,CAAA;AAChB,CAAC,EANW,gBAAgB,KAAhB,gBAAgB,QAM3B;AAID,MAAM,CAAN,IAAY,WAUX;AAVD,WAAY,WAAW;IACnB,mDAAW,CAAA;IACX,uDAAa,CAAA;IACb,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,yDAAc,CAAA;AAClB,CAAC,EAVW,WAAW,KAAX,WAAW,QAUtB;AAID,MAAM,CAAN,IAAY,sBAMX;AAND,WAAY,sBAAsB;IAC9B,yFAAmB,CAAA;IACnB,+EAAc,CAAA;IACd,+FAAsB,CAAA;IACtB,uEAAU,CAAA;IACV,qFAAiB,CAAA;AACrB,CAAC,EANW,sBAAsB,KAAtB,sBAAsB,QAMjC;AAID,MAAM,CAAN,IAAY,WAIX;AAJD,WAAY,WAAW;IACnB,mDAAW,CAAA;IACX,2CAAO,CAAA;IACP,yCAAM,CAAA;AACV,CAAC,EAJW,WAAW,KAAX,WAAW,QAItB;AAID,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,qEAAa,CAAA;IACb,mEAAY,CAAA;AAChB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B;AAID,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,qEAAO,CAAA;IACP,qFAAe,CAAA;AACnB,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC"}
|
package/lg.net.leavittlink.ts
CHANGED
|
@@ -38,15 +38,14 @@ export interface PersonalPropertyRater extends Rater {
|
|
|
38
38
|
AppAccentColor: string | null;
|
|
39
39
|
AppPrimaryColor: string | null;
|
|
40
40
|
AppSecondaryColor: string | null;
|
|
41
|
-
AppTertiaryColor: string | null;
|
|
42
41
|
AutoBackgroundImage: Partial<PersonalPropertyRaterAutoBackgroundImage> | null;
|
|
43
42
|
CarrierCompanyUnits: Array<Partial<PersonalPropertyRaterToCarrierCompanyUnit>> | null;
|
|
43
|
+
Disclaimer: string | null;
|
|
44
44
|
EloquaCampaign: string | null;
|
|
45
45
|
EnableBundling: boolean;
|
|
46
46
|
EnableTawkChat: boolean;
|
|
47
47
|
FooterEmailAddress: string | null;
|
|
48
48
|
HomeBackgroundImage: Partial<PersonalPropertyRaterHomeBackgroundImage> | null;
|
|
49
|
-
LegalDisplayName: string | null;
|
|
50
49
|
Phone: string | null;
|
|
51
50
|
RicochetCampaignEndpoint: number | null;
|
|
52
51
|
SiteSeed: PersonalPropertySiteSeedString;
|
|
@@ -75,9 +74,10 @@ export interface LifeCarrier extends Carrier {
|
|
|
75
74
|
LargeLogoUrl: string | null;
|
|
76
75
|
LifeErrors: Array<Partial<LifeCarrierError>> | null;
|
|
77
76
|
LifeQuotes: Array<Partial<LifeQuote>> | null;
|
|
77
|
+
LifeRaters: Array<Partial<LifeRaterToCarrier>> | null;
|
|
78
78
|
MedLogoUrl: string | null;
|
|
79
|
-
Raters: Array<Partial<LifeRaterToCarrier>> | null;
|
|
80
79
|
SmallLogoUrl: string | null;
|
|
80
|
+
WidgetLifeRaters: Array<Partial<WidgetLifeRaterToCarrier>> | null;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
export interface LifeCarrierError {
|
|
@@ -121,6 +121,7 @@ export interface LifeQuoteRequest {
|
|
|
121
121
|
HasFulfillBeenRequested: boolean;
|
|
122
122
|
HealthRating: HealthRatingTypeString | null;
|
|
123
123
|
Id: number;
|
|
124
|
+
IsTest: boolean;
|
|
124
125
|
LastName: string | null;
|
|
125
126
|
LifeQuotes: Array<Partial<LifeQuote>> | null;
|
|
126
127
|
LifeRater: Partial<LifeRater> | null;
|
|
@@ -129,9 +130,6 @@ export interface LifeQuoteRequest {
|
|
|
129
130
|
MacuWealthManagerEmail: string | null;
|
|
130
131
|
PhoneNumber: string | null;
|
|
131
132
|
ProductType: ProductTypeString | null;
|
|
132
|
-
ReferringUrl: string | null;
|
|
133
|
-
RequestPayload: string | null;
|
|
134
|
-
ResponsePayload: string | null;
|
|
135
133
|
RicochetLeadId: number | null;
|
|
136
134
|
SelectedQuoteId: number | null;
|
|
137
135
|
State: string | null;
|
|
@@ -148,13 +146,12 @@ export interface LifeRater extends Rater {
|
|
|
148
146
|
AppAccentColor: string | null;
|
|
149
147
|
AppPrimaryColor: string | null;
|
|
150
148
|
AppSecondaryColor: string | null;
|
|
151
|
-
AppTertiaryColor: string | null;
|
|
152
149
|
BackgroundImage: Partial<LifeRaterBackgroundImageAttachment> | null;
|
|
153
150
|
Carriers: Array<Partial<LifeRaterToCarrier>> | null;
|
|
151
|
+
Disclaimer: string | null;
|
|
154
152
|
EloquaCampaign: string | null;
|
|
155
153
|
EnableTawkChat: boolean;
|
|
156
154
|
FooterEmailAddress: string | null;
|
|
157
|
-
LegalDisplayName: string | null;
|
|
158
155
|
LifeQuoteRequests: Array<Partial<LifeQuoteRequest>> | null;
|
|
159
156
|
Phone: string | null;
|
|
160
157
|
RicochetCampaignEndpoint: number | null;
|
|
@@ -178,16 +175,24 @@ export interface LifeRaterToCarrier {
|
|
|
178
175
|
export interface WidgetLifeRater extends Rater {
|
|
179
176
|
AppPrimaryColor: string | null;
|
|
180
177
|
AppSecondaryColor: string | null;
|
|
178
|
+
Carriers: Array<Partial<WidgetLifeRaterToCarrier>> | null;
|
|
181
179
|
EloquaCampaign: string | null;
|
|
182
180
|
FooterEmailAddress: string | null;
|
|
183
181
|
HeaderText: string | null;
|
|
184
|
-
LegalDisplayName: string | null;
|
|
185
182
|
Phone: string | null;
|
|
186
183
|
RicochetCampaignEndpoint: number | null;
|
|
187
184
|
ShowWealthManagementFields: boolean;
|
|
188
185
|
WidgetLifeQuoteRequests: Array<Partial<LifeQuoteRequest>> | null;
|
|
189
186
|
}
|
|
190
187
|
|
|
188
|
+
export interface WidgetLifeRaterToCarrier {
|
|
189
|
+
Carrier: Partial<LifeCarrier> | null;
|
|
190
|
+
CarrierId: number;
|
|
191
|
+
Id: number;
|
|
192
|
+
Rater: Partial<WidgetLifeRater> | null;
|
|
193
|
+
RaterId: number;
|
|
194
|
+
}
|
|
195
|
+
|
|
191
196
|
export interface HartfordQuote {
|
|
192
197
|
BOPTypeCode: string | null;
|
|
193
198
|
CreatedDate: string;
|