@leavittsoftware/lg-core-typescript 5.1381.0 → 5.1383.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 +10 -3
- 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":"AA6gCA,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
|
@@ -602,15 +602,22 @@ export interface FitnessActivityTotalsDto {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
export interface AuditReportActivityDto {
|
|
605
|
+
ActivityId: number;
|
|
605
606
|
Date: string;
|
|
606
607
|
Distance?: number | null ;
|
|
607
608
|
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
608
609
|
DurationInSeconds: number;
|
|
610
|
+
IsDuplicate?: boolean;
|
|
611
|
+
IsOverInDistance?: boolean;
|
|
612
|
+
IsOverInDuration?: boolean;
|
|
609
613
|
LeavittFitActivityTypeId?: number | null ;
|
|
610
614
|
PersonFullName?: string | null ;
|
|
611
615
|
PersonId: number;
|
|
612
616
|
}
|
|
613
617
|
|
|
618
|
+
/**
|
|
619
|
+
* @deprecated Can be removed when dev site is using Activities/AuditReport
|
|
620
|
+
*/
|
|
614
621
|
export interface FitnessAuditReportDto {
|
|
615
622
|
Duplicates: Array<Partial<AuditReportActivityDto>>;
|
|
616
623
|
OverInDistance: Array<Partial<AuditReportActivityDto>>;
|
|
@@ -618,11 +625,11 @@ export interface FitnessAuditReportDto {
|
|
|
618
625
|
}
|
|
619
626
|
|
|
620
627
|
export interface FitnessSiteStatusAchievedMilestoneDto {
|
|
621
|
-
Caption?: string | null ;
|
|
622
628
|
Date: string;
|
|
629
|
+
HasSelfie?: boolean;
|
|
623
630
|
Id: number;
|
|
624
631
|
MilestoneId: number;
|
|
625
|
-
|
|
632
|
+
Name: string;
|
|
626
633
|
}
|
|
627
634
|
|
|
628
635
|
export interface FitnessSiteStatusActivityTypeDto {
|
|
@@ -653,6 +660,7 @@ export interface FitnessSiteStatusMyProgressDto {
|
|
|
653
660
|
}
|
|
654
661
|
|
|
655
662
|
export interface FitnessSiteStatusDto {
|
|
663
|
+
AchievedMilestones: Array<Partial<FitnessSiteStatusAchievedMilestoneDto>>;
|
|
656
664
|
ActivityTypes: Array<Partial<FitnessSiteStatusActivityTypeDto>>;
|
|
657
665
|
CurrentWeight: number;
|
|
658
666
|
Distance: number;
|
|
@@ -666,7 +674,6 @@ export interface FitnessSiteStatusDto {
|
|
|
666
674
|
}
|
|
667
675
|
|
|
668
676
|
export interface FitnessSiteStatusMilestoneDto {
|
|
669
|
-
AchievedMilestones: Array<Partial<FitnessSiteStatusAchievedMilestoneDto>>;
|
|
670
677
|
DistanceGoal: number;
|
|
671
678
|
DistanceGoalUnitType: DistanceUnitTypeString;
|
|
672
679
|
Id: number;
|