hevy-shared 1.0.810 → 1.0.812
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/built/index.d.ts
CHANGED
|
@@ -558,6 +558,7 @@ export interface UserProfile {
|
|
|
558
558
|
routines: RoutineMetadata[];
|
|
559
559
|
weekly_workout_durations: WeeklyWorkoutDuration[];
|
|
560
560
|
mutual_followers: PreviewMutualUser[];
|
|
561
|
+
last_streak_count: number;
|
|
561
562
|
}
|
|
562
563
|
export interface PublicUserProfile {
|
|
563
564
|
private_profile: boolean;
|
|
@@ -853,7 +854,6 @@ export interface Workout {
|
|
|
853
854
|
biometrics?: WorkoutBiometrics;
|
|
854
855
|
is_biometrics_public: boolean;
|
|
855
856
|
is_trainer_workout: boolean;
|
|
856
|
-
trainer_program_id: string | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface CustomExerciseImage {
|
|
859
859
|
type: 'image';
|
|
@@ -933,7 +933,6 @@ export interface PostWorkoutRequestWorkout {
|
|
|
933
933
|
biometrics?: WorkoutBiometrics;
|
|
934
934
|
is_biometrics_public: boolean;
|
|
935
935
|
is_trainer_workout: boolean;
|
|
936
|
-
trainer_program_id: string | undefined;
|
|
937
936
|
}
|
|
938
937
|
export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
|
|
939
938
|
export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
|
|
@@ -1223,7 +1222,6 @@ export interface OutstandingInvitesForCoachTeamResponse {
|
|
|
1223
1222
|
invites: CoachTeamInvite[];
|
|
1224
1223
|
}
|
|
1225
1224
|
export interface HevyTrainerProgram {
|
|
1226
|
-
id: string;
|
|
1227
1225
|
created_at: string;
|
|
1228
1226
|
updated_at: string;
|
|
1229
1227
|
title: string;
|
package/built/tests/testUtils.js
CHANGED