@leavittsoftware/lg-core-typescript 5.1373.0 → 5.1374.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 +27 -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":"AA09BA,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,26 @@ export interface AddGoogleHealthIntegrationDto {
|
|
|
525
525
|
RedirectUri: string;
|
|
526
526
|
}
|
|
527
527
|
|
|
528
|
+
export interface ChallengeEffectiveMemberDto {
|
|
529
|
+
EffectiveMembers: Array<Partial<ChallengeEffectivePersonMemberDto>>;
|
|
530
|
+
Name?: string | null ;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export interface ChallengeEffectivePersonMemberDto {
|
|
534
|
+
FullName?: string | null ;
|
|
535
|
+
Id: number;
|
|
536
|
+
InvitedBy?: Partial<ChallengeEffectivePersonMemberInviterDto> | null ;
|
|
537
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
export interface ChallengeEffectivePersonMemberInviterDto {
|
|
541
|
+
AcceptedDate?: string | null ;
|
|
542
|
+
FullName?: string | null ;
|
|
543
|
+
Id: number;
|
|
544
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
545
|
+
Relationship?: string | null ;
|
|
546
|
+
}
|
|
547
|
+
|
|
528
548
|
export interface FitnessActivityTotalsDto {
|
|
529
549
|
AprilTotal: number;
|
|
530
550
|
AugustTotal: number;
|
|
@@ -583,11 +603,17 @@ export interface FitnessSiteStatusChallengeDto {
|
|
|
583
603
|
IsActive?: boolean;
|
|
584
604
|
IsDev?: boolean;
|
|
585
605
|
Milestones: Array<Partial<FitnessSiteStatusMilestoneDto>>;
|
|
606
|
+
MyProgress: Partial<FitnessSiteStatusMyProgressDto>;
|
|
586
607
|
Name: string;
|
|
587
608
|
QualifyingActivities: Array<Partial<FitnessSiteStatusQualifyingActivityDto>>;
|
|
588
609
|
StartDate: string;
|
|
589
610
|
}
|
|
590
611
|
|
|
612
|
+
export interface FitnessSiteStatusMyProgressDto {
|
|
613
|
+
EarnedDistance: number;
|
|
614
|
+
Rank: number;
|
|
615
|
+
}
|
|
616
|
+
|
|
591
617
|
export interface FitnessSiteStatusDto {
|
|
592
618
|
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
593
619
|
CurrentWeight: number;
|
|
@@ -595,7 +621,6 @@ export interface FitnessSiteStatusDto {
|
|
|
595
621
|
FitnessChallenges: Array<Partial<FitnessSiteStatusChallengeDto>>;
|
|
596
622
|
GoalMinutes: number;
|
|
597
623
|
IsGoogleHealthSyncEnabled?: boolean;
|
|
598
|
-
IsRegisteredMember?: boolean;
|
|
599
624
|
MinutesThisMonth: number;
|
|
600
625
|
OverallRank: number;
|
|
601
626
|
RecentActivities: Array<string>;
|
|
@@ -642,7 +667,7 @@ export interface GetMyQualifyingActivityBreakdownDto {
|
|
|
642
667
|
export interface IndividualChallengeLeaderboardDto extends IPersonDetails {
|
|
643
668
|
EarnedDistance: number;
|
|
644
669
|
Milestones: Array<Partial<IndividualChallengeLeaderboardMilestoneDto>>;
|
|
645
|
-
Rank
|
|
670
|
+
Rank?: number | null ;
|
|
646
671
|
}
|
|
647
672
|
|
|
648
673
|
export interface IndividualChallengeLeaderboardMilestoneDto {
|