@leavittsoftware/lg-core-typescript 5.1372.0 → 5.1373.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 +45 -0
- 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":"AAi8BA,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
|
@@ -471,6 +471,13 @@ export interface GroupMemberDto {
|
|
|
471
471
|
GroupId: number;
|
|
472
472
|
}
|
|
473
473
|
|
|
474
|
+
export interface IPersonDetails {
|
|
475
|
+
CompanyName?: string | null ;
|
|
476
|
+
FullName?: string | null ;
|
|
477
|
+
PersonId?: number | null ;
|
|
478
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
479
|
+
}
|
|
480
|
+
|
|
474
481
|
export interface ReorderDto {
|
|
475
482
|
Entities: Array<Partial<SequenceDto>>;
|
|
476
483
|
}
|
|
@@ -622,6 +629,29 @@ export interface FitnessSiteStatusSelfieDto {
|
|
|
622
629
|
PreviewSizes?: string | null ;
|
|
623
630
|
}
|
|
624
631
|
|
|
632
|
+
export interface GetMyQualifyingActivityBreakdownDto {
|
|
633
|
+
ActivityDistanceUnitType: DistanceUnitTypeString;
|
|
634
|
+
ActivityTypeDistance: number;
|
|
635
|
+
EarnedDistance: number;
|
|
636
|
+
EarnedDistanceUnitType: DistanceUnitTypeString;
|
|
637
|
+
Icon: string;
|
|
638
|
+
Id: number;
|
|
639
|
+
Name: string;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
export interface IndividualChallengeLeaderboardDto extends IPersonDetails {
|
|
643
|
+
EarnedDistance: number;
|
|
644
|
+
Milestones: Array<Partial<IndividualChallengeLeaderboardMilestoneDto>>;
|
|
645
|
+
Rank: number;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
export interface IndividualChallengeLeaderboardMilestoneDto {
|
|
649
|
+
Completed?: boolean;
|
|
650
|
+
HasSelfie?: boolean;
|
|
651
|
+
Id: number;
|
|
652
|
+
Name: string;
|
|
653
|
+
}
|
|
654
|
+
|
|
625
655
|
export interface InviteLeavittFitInviteeDto {
|
|
626
656
|
Email: string;
|
|
627
657
|
FirstName: string;
|
|
@@ -639,6 +669,21 @@ export interface ReimbursementEligibilityDto {
|
|
|
639
669
|
TotalMinutes?: number | null ;
|
|
640
670
|
}
|
|
641
671
|
|
|
672
|
+
export interface TeamChallengeLeaderboardDto {
|
|
673
|
+
CompanyDarkMarkUrl?: string | null ;
|
|
674
|
+
CompanyId: number;
|
|
675
|
+
CompanyMarkUrl?: string | null ;
|
|
676
|
+
CompanyName?: string | null ;
|
|
677
|
+
EarnedDistance: number;
|
|
678
|
+
People: Array<Partial<IndividualChallengeLeaderboardDto>>;
|
|
679
|
+
Rank: number;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
export interface Top5ChallengeParticipantsDto extends IPersonDetails {
|
|
683
|
+
EarnedDistance: number;
|
|
684
|
+
Rank: number;
|
|
685
|
+
}
|
|
686
|
+
|
|
642
687
|
export interface UpdateWeightDto {
|
|
643
688
|
WeightInPounds: number;
|
|
644
689
|
}
|