@leavittsoftware/lg-core-typescript 2.53.1 → 2.56.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 +58 -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":"AA0qCA,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
|
@@ -384,6 +384,7 @@ export interface WorkersCompQuoteDto {
|
|
|
384
384
|
export interface LifeGettingStartedStepOneDto {
|
|
385
385
|
DateOfBirth: string;
|
|
386
386
|
FirstName: string | null;
|
|
387
|
+
IsTest: boolean;
|
|
387
388
|
LastName: string | null;
|
|
388
389
|
LifeQuoteRequestId: number | null;
|
|
389
390
|
RaterUniqueId: string | null;
|
|
@@ -410,6 +411,28 @@ export interface LifePreferredInsuranceDto {
|
|
|
410
411
|
Tobacco: TobaccoTypeString;
|
|
411
412
|
}
|
|
412
413
|
|
|
414
|
+
export interface LifeRaterToCarrierUpsertDto {
|
|
415
|
+
CarrierId: number;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export interface LifeRaterUpsertDto {
|
|
419
|
+
AppAccentColor: string | null;
|
|
420
|
+
AppPrimaryColor: string | null;
|
|
421
|
+
AppSecondaryColor: string | null;
|
|
422
|
+
Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>> | null;
|
|
423
|
+
CompanyId: number;
|
|
424
|
+
Disclaimer: string | null;
|
|
425
|
+
EloquaCampaign: string | null;
|
|
426
|
+
EnableTawkChat: boolean;
|
|
427
|
+
FooterEmailAddress: string | null;
|
|
428
|
+
Id: number | null;
|
|
429
|
+
IsActive: boolean;
|
|
430
|
+
Phone: string | null;
|
|
431
|
+
RicochetCampaignEndpoint: number | null;
|
|
432
|
+
TawkChatId: string | null;
|
|
433
|
+
ToolbarTitle: string | null;
|
|
434
|
+
}
|
|
435
|
+
|
|
413
436
|
export interface LifeSelectQuoteDto {
|
|
414
437
|
QuoteId: number;
|
|
415
438
|
}
|
|
@@ -422,6 +445,7 @@ export interface LifeWidgetFulfillDto {
|
|
|
422
445
|
FirstName: string | null;
|
|
423
446
|
Gender: GenderTypeString | null;
|
|
424
447
|
HealthRating: HealthRatingTypeString;
|
|
448
|
+
IsTest: boolean;
|
|
425
449
|
LastName: string | null;
|
|
426
450
|
LifeQuoteRequestId: number | null;
|
|
427
451
|
MacuWealthManager: string | null;
|
|
@@ -439,6 +463,21 @@ export interface LifeYourHealthDto {
|
|
|
439
463
|
HealthRating: HealthRatingTypeString;
|
|
440
464
|
}
|
|
441
465
|
|
|
466
|
+
export interface WidgetLifeRaterUpsertDto {
|
|
467
|
+
AppPrimaryColor: string | null;
|
|
468
|
+
AppSecondaryColor: string | null;
|
|
469
|
+
Carriers: Array<Partial<LifeRaterToCarrierUpsertDto>> | null;
|
|
470
|
+
CompanyId: number;
|
|
471
|
+
EloquaCampaign: string | null;
|
|
472
|
+
FooterEmailAddress: string | null;
|
|
473
|
+
HeaderText: string | null;
|
|
474
|
+
Id: number | null;
|
|
475
|
+
IsActive: boolean;
|
|
476
|
+
Phone: string | null;
|
|
477
|
+
RicochetCampaignEndpoint: number | null;
|
|
478
|
+
ShowWealthManagementFields: boolean;
|
|
479
|
+
}
|
|
480
|
+
|
|
442
481
|
export interface CampaignSummaryDto {
|
|
443
482
|
Attempted: number;
|
|
444
483
|
Completed: number;
|
|
@@ -1062,6 +1101,11 @@ export interface CLGameBreakdownDto {
|
|
|
1062
1101
|
Divisions: Array<Partial<CLGameDivisionBreakdownDto>> | null;
|
|
1063
1102
|
}
|
|
1064
1103
|
|
|
1104
|
+
export interface CLGameCrmCarrierDto {
|
|
1105
|
+
CarrierId: number;
|
|
1106
|
+
CarrierName: string | null;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1065
1109
|
export interface CLGameDivisionBreakdownDto {
|
|
1066
1110
|
DivisionId: number;
|
|
1067
1111
|
DivisionName: string | null;
|
|
@@ -1081,6 +1125,20 @@ export interface CLGamePlayerBreakdownDto {
|
|
|
1081
1125
|
TotalPoints: Partial<number>;
|
|
1082
1126
|
}
|
|
1083
1127
|
|
|
1128
|
+
export interface CLGamePlayerDto {
|
|
1129
|
+
CompanyName: string | null;
|
|
1130
|
+
FirstName: string | null;
|
|
1131
|
+
IsCaptain: boolean;
|
|
1132
|
+
LastName: string | null;
|
|
1133
|
+
PersonId: number;
|
|
1134
|
+
PlayerId: number;
|
|
1135
|
+
PlayerPersonRoleId: number | null;
|
|
1136
|
+
TeamId: number | null;
|
|
1137
|
+
TeamName: string | null;
|
|
1138
|
+
TeamPersonRoleId: number | null;
|
|
1139
|
+
TotalPoints: Partial<number>;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1084
1142
|
export interface CLGameScoreboardDto {
|
|
1085
1143
|
CLGameId: number;
|
|
1086
1144
|
Id: number | null;
|