@leavittsoftware/lg-core-typescript 2.91.0 → 2.94.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 +30 -8
- 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":"AA6iDA,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
|
@@ -425,6 +425,19 @@ export interface ProvisionedCompanyUnitDto {
|
|
|
425
425
|
Name: string | null;
|
|
426
426
|
}
|
|
427
427
|
|
|
428
|
+
export interface LifeQuoteRequestSummaryDto {
|
|
429
|
+
CampaignSummaries: Array<Partial<CampaignSummaryDto>> | null;
|
|
430
|
+
CarrierErrors: Array<Partial<CarrierErrorReportItem>> | null;
|
|
431
|
+
Error: number;
|
|
432
|
+
GettingStarted2: number;
|
|
433
|
+
PreferredInsurance: number;
|
|
434
|
+
Quotes: number;
|
|
435
|
+
RatingFailed: number;
|
|
436
|
+
RatingReturnedQuote: number;
|
|
437
|
+
SelectedQuote: number;
|
|
438
|
+
YourHealth: number;
|
|
439
|
+
}
|
|
440
|
+
|
|
428
441
|
export interface CampaignSummaryDto {
|
|
429
442
|
Attempted: number;
|
|
430
443
|
Completed: number;
|
|
@@ -825,34 +838,43 @@ export interface ActivitiesByActivityDto {
|
|
|
825
838
|
}
|
|
826
839
|
|
|
827
840
|
export interface ActivitiesByDayDto {
|
|
828
|
-
|
|
841
|
+
Date: string;
|
|
842
|
+
RelativeDay: string | null;
|
|
829
843
|
TotalMinutes: number;
|
|
830
844
|
}
|
|
831
845
|
|
|
832
846
|
export interface ActivitiesByMonthDto {
|
|
847
|
+
Month: string | null;
|
|
833
848
|
MonthNumber: number;
|
|
834
849
|
TotalMinutes: number;
|
|
835
850
|
}
|
|
836
851
|
|
|
837
852
|
export interface ActivitiesByWeekDto {
|
|
838
853
|
TotalMinutes: number;
|
|
854
|
+
WeekEnd: string;
|
|
839
855
|
WeekNumber: number;
|
|
856
|
+
WeekStart: string;
|
|
840
857
|
}
|
|
841
858
|
|
|
842
859
|
export interface FitnessActivityTotalsDto {
|
|
860
|
+
AprilTotal: number;
|
|
861
|
+
AugustTotal: number;
|
|
862
|
+
DecemberTotal: number;
|
|
863
|
+
FebruaryTotal: number;
|
|
843
864
|
FirstName: string | null;
|
|
865
|
+
JanuaryTotal: number;
|
|
866
|
+
JulyTotal: number;
|
|
867
|
+
JuneTotal: number;
|
|
844
868
|
LastName: string | null;
|
|
845
|
-
|
|
869
|
+
MarchTotal: number;
|
|
870
|
+
MayTotal: number;
|
|
871
|
+
NovemberTotal: number;
|
|
872
|
+
OctoberTotal: number;
|
|
846
873
|
PersonId: number;
|
|
874
|
+
SeptemberTotal: number;
|
|
847
875
|
YearlyTotal: number;
|
|
848
876
|
}
|
|
849
877
|
|
|
850
|
-
export interface FitnessActivityTotalsMonthDto {
|
|
851
|
-
Month: number;
|
|
852
|
-
MonthName: string | null;
|
|
853
|
-
Total: number;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
878
|
export interface FitnessSiteStatusDto {
|
|
857
879
|
GoalMinutes: number;
|
|
858
880
|
IsRegisteredMember: boolean;
|