@leavittsoftware/lg-core-typescript 5.1388.0 → 5.1390.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/api4.leavitt.com.js.map +1 -1
- package/api4.leavitt.com.ts +18 -39
- package/package.json +1 -1
package/api4.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"AAykCA,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;IACZ,6CAAS,CAAA;IACT,yCAAO,CAAA;AACX,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAID,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,2DAAO,CAAA;IACP,yDAAM,CAAA;AACV,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B"}
|
package/api4.leavitt.com.ts
CHANGED
|
@@ -610,7 +610,6 @@ export interface AdminAllActivityDto {
|
|
|
610
610
|
CompanyName?: string | null ;
|
|
611
611
|
Date: string;
|
|
612
612
|
Distance?: number | null ;
|
|
613
|
-
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
614
613
|
DurationInSeconds: number;
|
|
615
614
|
FullName?: string | null ;
|
|
616
615
|
Id: number;
|
|
@@ -621,6 +620,19 @@ export interface AdminAllActivityDto {
|
|
|
621
620
|
Source: string;
|
|
622
621
|
}
|
|
623
622
|
|
|
623
|
+
export interface AuditReportActivityDto {
|
|
624
|
+
ActivityId: number;
|
|
625
|
+
Date: string;
|
|
626
|
+
Distance?: number | null ;
|
|
627
|
+
DurationInSeconds: number;
|
|
628
|
+
IsDuplicate?: boolean;
|
|
629
|
+
IsOverInDistance?: boolean;
|
|
630
|
+
IsOverInDuration?: boolean;
|
|
631
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
632
|
+
PersonFullName?: string | null ;
|
|
633
|
+
PersonId: number;
|
|
634
|
+
}
|
|
635
|
+
|
|
624
636
|
export interface ChallengeEffectiveMemberDto {
|
|
625
637
|
EffectiveMembers: Array<Partial<ChallengeEffectivePersonMemberDto>>;
|
|
626
638
|
Name?: string | null ;
|
|
@@ -664,29 +676,6 @@ export interface FitnessActivityTotalsDto {
|
|
|
664
676
|
YearlyTotal: number;
|
|
665
677
|
}
|
|
666
678
|
|
|
667
|
-
export interface AuditReportActivityDto {
|
|
668
|
-
ActivityId: number;
|
|
669
|
-
Date: string;
|
|
670
|
-
Distance?: number | null ;
|
|
671
|
-
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
672
|
-
DurationInSeconds: number;
|
|
673
|
-
IsDuplicate?: boolean;
|
|
674
|
-
IsOverInDistance?: boolean;
|
|
675
|
-
IsOverInDuration?: boolean;
|
|
676
|
-
LeavittFitActivityTypeId?: number | null ;
|
|
677
|
-
PersonFullName?: string | null ;
|
|
678
|
-
PersonId: number;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
/**
|
|
682
|
-
* @deprecated Can be removed when dev site is using Activities/AuditReport
|
|
683
|
-
*/
|
|
684
|
-
export interface FitnessAuditReportDto {
|
|
685
|
-
Duplicates: Array<Partial<AuditReportActivityDto>>;
|
|
686
|
-
OverInDistance: Array<Partial<AuditReportActivityDto>>;
|
|
687
|
-
OverInDuration: Array<Partial<AuditReportActivityDto>>;
|
|
688
|
-
}
|
|
689
|
-
|
|
690
679
|
export interface FitnessSiteStatusAchievedMilestoneDto {
|
|
691
680
|
Date: string;
|
|
692
681
|
HasSelfie?: boolean;
|
|
@@ -726,29 +715,25 @@ export interface FitnessSiteStatusDto {
|
|
|
726
715
|
AchievedMilestones: Array<Partial<FitnessSiteStatusAchievedMilestoneDto>>;
|
|
727
716
|
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
728
717
|
CurrentWeight: number;
|
|
729
|
-
Distance: number;
|
|
730
718
|
FitnessChallenges: Array<Partial<FitnessSiteStatusChallengeDto>>;
|
|
731
719
|
GoalMinutes: number;
|
|
732
720
|
IsGoogleHealthSyncEnabled?: boolean;
|
|
733
721
|
MinutesThisMonth: number;
|
|
734
|
-
|
|
722
|
+
PreferredDistanceUnitType?: DistanceUnitTypeString | null ;
|
|
735
723
|
RecentActivities: Array<string>;
|
|
736
724
|
WeightLast12Months: Array<Partial<WeightWeekDto>>;
|
|
737
725
|
}
|
|
738
726
|
|
|
739
727
|
export interface FitnessSiteStatusMilestoneDto {
|
|
740
728
|
DistanceGoal: number;
|
|
741
|
-
DistanceGoalUnitType: DistanceUnitTypeString;
|
|
742
729
|
Id: number;
|
|
743
730
|
Name: string;
|
|
744
731
|
}
|
|
745
732
|
|
|
746
733
|
export interface FitnessSiteStatusQualifyingActivityDto {
|
|
747
|
-
ActivityDistanceUnitType: DistanceUnitTypeString;
|
|
748
734
|
ActivityTypeDistance: number;
|
|
749
735
|
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
750
736
|
EarnedDistance: number;
|
|
751
|
-
EarnedDistanceUnitType: DistanceUnitTypeString;
|
|
752
737
|
Id: number;
|
|
753
738
|
Name: string;
|
|
754
739
|
}
|
|
@@ -762,16 +747,6 @@ export interface FitnessSiteStatusSelfieDto {
|
|
|
762
747
|
PreviewSizes?: string | null ;
|
|
763
748
|
}
|
|
764
749
|
|
|
765
|
-
export interface GetMyQualifyingActivityBreakdownDto {
|
|
766
|
-
ActivityDistanceUnitType: DistanceUnitTypeString;
|
|
767
|
-
ActivityTypeDistance: number;
|
|
768
|
-
EarnedDistance: number;
|
|
769
|
-
EarnedDistanceUnitType: DistanceUnitTypeString;
|
|
770
|
-
Icon?: string | null ;
|
|
771
|
-
Id: number;
|
|
772
|
-
Name: string;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
750
|
export interface IndividualChallengeLeaderboardDto extends IPersonDetails {
|
|
776
751
|
EarnedDistance: number;
|
|
777
752
|
Milestones: Array<Partial<IndividualChallengeLeaderboardMilestoneDto>>;
|
|
@@ -840,6 +815,10 @@ export interface UpsertFitnessChallengeDto {
|
|
|
840
815
|
UpdateMark?: boolean;
|
|
841
816
|
}
|
|
842
817
|
|
|
818
|
+
export interface UpsertLeavittFitPersonRoleDto {
|
|
819
|
+
PreferredDistanceUnitType?: DistanceUnitTypeString | null ;
|
|
820
|
+
}
|
|
821
|
+
|
|
843
822
|
export interface UpsertMilestoneSelfieDto {
|
|
844
823
|
Caption?: string | null ;
|
|
845
824
|
Image?: File | null ;
|