@leavittsoftware/lg-core-typescript 5.1367.0 → 5.1368.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 +16 -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":"AA+
|
|
1
|
+
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"AA+4BA,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
|
@@ -532,6 +532,22 @@ export interface FitnessActivityTotalsDto {
|
|
|
532
532
|
YearlyTotal: number;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
export interface AuditReportActivityDto {
|
|
536
|
+
Date: string;
|
|
537
|
+
Distance?: number | null ;
|
|
538
|
+
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
539
|
+
DurationInSeconds: number;
|
|
540
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
541
|
+
PersonFullName?: string | null ;
|
|
542
|
+
PersonId: number;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
export interface FitnessAuditReportDto {
|
|
546
|
+
Duplicates: Array<Partial<AuditReportActivityDto>>;
|
|
547
|
+
OverInDistance: Array<Partial<AuditReportActivityDto>>;
|
|
548
|
+
OverInDuration: Array<Partial<AuditReportActivityDto>>;
|
|
549
|
+
}
|
|
550
|
+
|
|
535
551
|
export interface FitnessSiteStatusAchievedMilestoneDto {
|
|
536
552
|
Caption?: string | null ;
|
|
537
553
|
Date: string;
|