@leavittsoftware/lg-core-typescript 2.78.1 → 2.81.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 -7
- 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":"AA++CA,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;AAChB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AAID,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
|
@@ -411,6 +411,7 @@ export interface GetRatersDto {
|
|
|
411
411
|
CarrierCount: number;
|
|
412
412
|
CompanyId: number;
|
|
413
413
|
CompanyName: string | null;
|
|
414
|
+
IsDefault: boolean;
|
|
414
415
|
QuoteRequestCount: number;
|
|
415
416
|
RaterId: number;
|
|
416
417
|
RaterName: string | null;
|
|
@@ -424,6 +425,20 @@ export interface ProvisionedCompanyUnitDto {
|
|
|
424
425
|
Name: string | null;
|
|
425
426
|
}
|
|
426
427
|
|
|
428
|
+
export interface CampaignSummaryDto {
|
|
429
|
+
Attempted: number;
|
|
430
|
+
CampaignId: number;
|
|
431
|
+
Completed: number;
|
|
432
|
+
Id: number;
|
|
433
|
+
Name: string | null;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export interface CarrierErrorReportItem {
|
|
437
|
+
CarrierId: number;
|
|
438
|
+
CarrierName: string | null;
|
|
439
|
+
ErrorCount: number;
|
|
440
|
+
}
|
|
441
|
+
|
|
427
442
|
export interface HartfordEmailQuoteDto {
|
|
428
443
|
CallUsPhoneNumber: string | null;
|
|
429
444
|
EmailAddress: string | null;
|
|
@@ -572,6 +587,32 @@ export interface PersonalPropertyLastPageVisitedDto {
|
|
|
572
587
|
PersonalPropertyLastPageVisited: PersonalPropertyLastPageVisitedString;
|
|
573
588
|
}
|
|
574
589
|
|
|
590
|
+
export interface PersonalPropertyQuoteRequestSummaryDto {
|
|
591
|
+
AutoDrivers: number;
|
|
592
|
+
AutoNewPolicy: number;
|
|
593
|
+
AutoPreviousPolicy: number;
|
|
594
|
+
AutoVehicles: number;
|
|
595
|
+
CampaignSummaries: Array<Partial<CampaignSummaryDto>> | null;
|
|
596
|
+
CarrierErrors: Array<Partial<CarrierErrorReportItem>> | null;
|
|
597
|
+
ChooseBundle: number;
|
|
598
|
+
DiscountsOne: number;
|
|
599
|
+
DiscountsTwo: number;
|
|
600
|
+
FulfillErrors: number;
|
|
601
|
+
GettingStartedStep2: number;
|
|
602
|
+
HomeOwnersRenovations: number;
|
|
603
|
+
HomeOwnersStep1: number;
|
|
604
|
+
HomeOwnersStep2: number;
|
|
605
|
+
HomeOwnersStep3: number;
|
|
606
|
+
HomeOwnersStep4: number;
|
|
607
|
+
HomeOwnersStep5: number;
|
|
608
|
+
HomeOwnersStep6: number;
|
|
609
|
+
HomeOwnersStep7: number;
|
|
610
|
+
Quotes: number;
|
|
611
|
+
RatingFailed: number;
|
|
612
|
+
RatingReturnedQuote: number;
|
|
613
|
+
SelectedQuote: number;
|
|
614
|
+
}
|
|
615
|
+
|
|
575
616
|
export interface PersonalPropertyRaterToCarrierUpsertDto {
|
|
576
617
|
CarrierLoginId: number;
|
|
577
618
|
CompanyUnitKey: number;
|
|
@@ -731,13 +772,6 @@ export interface BopQuoteDto {
|
|
|
731
772
|
Zip: string | null;
|
|
732
773
|
}
|
|
733
774
|
|
|
734
|
-
export interface CampaignSummaryDto {
|
|
735
|
-
Attempted: number;
|
|
736
|
-
Completed: number;
|
|
737
|
-
Id: number;
|
|
738
|
-
Name: string | null;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
775
|
export interface HartfordRaterUpsertDto {
|
|
742
776
|
AdobeAnalyticUrl: string | null;
|
|
743
777
|
AppAccentColor: string | null;
|
|
@@ -786,6 +820,11 @@ export interface SequenceDto {
|
|
|
786
820
|
Sequence: number;
|
|
787
821
|
}
|
|
788
822
|
|
|
823
|
+
export interface FitnessSiteStatusDto {
|
|
824
|
+
GoalMinutes: number;
|
|
825
|
+
IsRegisteredMember: boolean;
|
|
826
|
+
}
|
|
827
|
+
|
|
789
828
|
export interface FileExplorerDto {
|
|
790
829
|
AllowedFileTypes: string | null;
|
|
791
830
|
CanEdit: boolean;
|