@leavittsoftware/lg-core-typescript 5.1367.0 → 5.1369.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 +21 -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":"AAo5BA,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
|
@@ -508,6 +508,11 @@ export interface ActivitiesByWeekDto {
|
|
|
508
508
|
WeekStart: string;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
|
+
export interface AddGoogleFitIntegrationDto {
|
|
512
|
+
AuthCode: string;
|
|
513
|
+
RedirectUri: string;
|
|
514
|
+
}
|
|
515
|
+
|
|
511
516
|
export interface AddGoogleHealthIntegrationDto {
|
|
512
517
|
AuthCode: string;
|
|
513
518
|
RedirectUri: string;
|
|
@@ -532,6 +537,22 @@ export interface FitnessActivityTotalsDto {
|
|
|
532
537
|
YearlyTotal: number;
|
|
533
538
|
}
|
|
534
539
|
|
|
540
|
+
export interface AuditReportActivityDto {
|
|
541
|
+
Date: string;
|
|
542
|
+
Distance?: number | null ;
|
|
543
|
+
DistanceUnitType?: DistanceUnitTypeString | null ;
|
|
544
|
+
DurationInSeconds: number;
|
|
545
|
+
LeavittFitActivityTypeId?: number | null ;
|
|
546
|
+
PersonFullName?: string | null ;
|
|
547
|
+
PersonId: number;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
export interface FitnessAuditReportDto {
|
|
551
|
+
Duplicates: Array<Partial<AuditReportActivityDto>>;
|
|
552
|
+
OverInDistance: Array<Partial<AuditReportActivityDto>>;
|
|
553
|
+
OverInDuration: Array<Partial<AuditReportActivityDto>>;
|
|
554
|
+
}
|
|
555
|
+
|
|
535
556
|
export interface FitnessSiteStatusAchievedMilestoneDto {
|
|
536
557
|
Caption?: string | null ;
|
|
537
558
|
Date: string;
|