@leavittsoftware/lg-core-typescript 5.1373.0 → 5.1375.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 +53 -2
- 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":"AAo/BA,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
|
@@ -525,6 +525,52 @@ export interface AddGoogleHealthIntegrationDto {
|
|
|
525
525
|
RedirectUri: string;
|
|
526
526
|
}
|
|
527
527
|
|
|
528
|
+
export interface ActivityChallengeEquivalentDto {
|
|
529
|
+
ChallengeId: number;
|
|
530
|
+
ChallengeName: string;
|
|
531
|
+
DistanceUnitType: DistanceUnitTypeString;
|
|
532
|
+
EquivalentDistance: number;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
export interface AdminAllActivityDto {
|
|
536
|
+
ActivityTypeIcon?: string | null ;
|
|
537
|
+
ActivityTypeName?: string | null ;
|
|
538
|
+
ChallengeEquivalents: Array<Partial<ActivityChallengeEquivalentDto>>;
|
|
539
|
+
CompanyId?: number | null ;
|
|
540
|
+
CompanyName?: string | null ;
|
|
541
|
+
Date: string;
|
|
542
|
+
Distance?: number | null ;
|
|
543
|
+
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
544
|
+
DurationInSeconds: number;
|
|
545
|
+
FullName?: string | null ;
|
|
546
|
+
Id: number;
|
|
547
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
548
|
+
LeavittFitPersonRoleId: number;
|
|
549
|
+
PersonId: number;
|
|
550
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
551
|
+
Source: string;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
export interface ChallengeEffectiveMemberDto {
|
|
555
|
+
EffectiveMembers: Array<Partial<ChallengeEffectivePersonMemberDto>>;
|
|
556
|
+
Name?: string | null ;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
export interface ChallengeEffectivePersonMemberDto {
|
|
560
|
+
FullName?: string | null ;
|
|
561
|
+
Id: number;
|
|
562
|
+
InvitedBy?: Partial<ChallengeEffectivePersonMemberInviterDto> | null ;
|
|
563
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export interface ChallengeEffectivePersonMemberInviterDto {
|
|
567
|
+
AcceptedDate?: string | null ;
|
|
568
|
+
FullName?: string | null ;
|
|
569
|
+
Id: number;
|
|
570
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
571
|
+
Relationship?: string | null ;
|
|
572
|
+
}
|
|
573
|
+
|
|
528
574
|
export interface FitnessActivityTotalsDto {
|
|
529
575
|
AprilTotal: number;
|
|
530
576
|
AugustTotal: number;
|
|
@@ -583,11 +629,17 @@ export interface FitnessSiteStatusChallengeDto {
|
|
|
583
629
|
IsActive?: boolean;
|
|
584
630
|
IsDev?: boolean;
|
|
585
631
|
Milestones: Array<Partial<FitnessSiteStatusMilestoneDto>>;
|
|
632
|
+
MyProgress: Partial<FitnessSiteStatusMyProgressDto>;
|
|
586
633
|
Name: string;
|
|
587
634
|
QualifyingActivities: Array<Partial<FitnessSiteStatusQualifyingActivityDto>>;
|
|
588
635
|
StartDate: string;
|
|
589
636
|
}
|
|
590
637
|
|
|
638
|
+
export interface FitnessSiteStatusMyProgressDto {
|
|
639
|
+
EarnedDistance: number;
|
|
640
|
+
Rank: number;
|
|
641
|
+
}
|
|
642
|
+
|
|
591
643
|
export interface FitnessSiteStatusDto {
|
|
592
644
|
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
593
645
|
CurrentWeight: number;
|
|
@@ -595,7 +647,6 @@ export interface FitnessSiteStatusDto {
|
|
|
595
647
|
FitnessChallenges: Array<Partial<FitnessSiteStatusChallengeDto>>;
|
|
596
648
|
GoalMinutes: number;
|
|
597
649
|
IsGoogleHealthSyncEnabled?: boolean;
|
|
598
|
-
IsRegisteredMember?: boolean;
|
|
599
650
|
MinutesThisMonth: number;
|
|
600
651
|
OverallRank: number;
|
|
601
652
|
RecentActivities: Array<string>;
|
|
@@ -642,7 +693,7 @@ export interface GetMyQualifyingActivityBreakdownDto {
|
|
|
642
693
|
export interface IndividualChallengeLeaderboardDto extends IPersonDetails {
|
|
643
694
|
EarnedDistance: number;
|
|
644
695
|
Milestones: Array<Partial<IndividualChallengeLeaderboardMilestoneDto>>;
|
|
645
|
-
Rank
|
|
696
|
+
Rank?: number | null ;
|
|
646
697
|
}
|
|
647
698
|
|
|
648
699
|
export interface IndividualChallengeLeaderboardMilestoneDto {
|