@leavittsoftware/lg-core-typescript 2.92.0 → 2.95.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 +25 -7
- package/lg.net.core.ts +2 -2
- 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;
|
|
@@ -844,19 +857,24 @@ export interface ActivitiesByWeekDto {
|
|
|
844
857
|
}
|
|
845
858
|
|
|
846
859
|
export interface FitnessActivityTotalsDto {
|
|
860
|
+
AprilTotal: number;
|
|
861
|
+
AugustTotal: number;
|
|
862
|
+
DecemberTotal: number;
|
|
863
|
+
FebruaryTotal: number;
|
|
847
864
|
FirstName: string | null;
|
|
865
|
+
JanuaryTotal: number;
|
|
866
|
+
JulyTotal: number;
|
|
867
|
+
JuneTotal: number;
|
|
848
868
|
LastName: string | null;
|
|
849
|
-
|
|
869
|
+
MarchTotal: number;
|
|
870
|
+
MayTotal: number;
|
|
871
|
+
NovemberTotal: number;
|
|
872
|
+
OctoberTotal: number;
|
|
850
873
|
PersonId: number;
|
|
874
|
+
SeptemberTotal: number;
|
|
851
875
|
YearlyTotal: number;
|
|
852
876
|
}
|
|
853
877
|
|
|
854
|
-
export interface FitnessActivityTotalsMonthDto {
|
|
855
|
-
Month: number;
|
|
856
|
-
MonthName: string | null;
|
|
857
|
-
Total: number;
|
|
858
|
-
}
|
|
859
|
-
|
|
860
878
|
export interface FitnessSiteStatusDto {
|
|
861
879
|
GoalMinutes: number;
|
|
862
880
|
IsRegisteredMember: boolean;
|
package/lg.net.core.ts
CHANGED
|
@@ -1888,9 +1888,9 @@ export interface LeavittFitActivity {
|
|
|
1888
1888
|
Date: string;
|
|
1889
1889
|
DeletedById: number | null;
|
|
1890
1890
|
DeletedDate: string | null;
|
|
1891
|
-
Distance: number | null;
|
|
1891
|
+
Distance: Partial<number> | null;
|
|
1892
1892
|
DistanceUnit: string | null;
|
|
1893
|
-
|
|
1893
|
+
DurationInSeconds: number;
|
|
1894
1894
|
Id: number;
|
|
1895
1895
|
IntegrationToActivity: Partial<LeavittFitIntegrationToActivity> | null;
|
|
1896
1896
|
IntegrationToActivityId: number | null;
|