hevy-shared 1.0.806 → 1.0.807
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 +2 -1
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -545,7 +545,6 @@ export interface UserProfile {
|
|
|
545
545
|
routines: RoutineMetadata[];
|
|
546
546
|
weekly_workout_durations: WeeklyWorkoutDuration[];
|
|
547
547
|
mutual_followers: PreviewMutualUser[];
|
|
548
|
-
streak_count: number;
|
|
549
548
|
}
|
|
550
549
|
export interface PublicUserProfile {
|
|
551
550
|
private_profile: boolean;
|
|
@@ -920,6 +919,7 @@ export interface PostWorkoutRequestWorkout {
|
|
|
920
919
|
biometrics?: WorkoutBiometrics;
|
|
921
920
|
is_biometrics_public: boolean;
|
|
922
921
|
is_trainer_workout: boolean;
|
|
922
|
+
trainer_program_id?: string;
|
|
923
923
|
}
|
|
924
924
|
export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
|
|
925
925
|
export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
|
|
@@ -1209,6 +1209,7 @@ export interface OutstandingInvitesForCoachTeamResponse {
|
|
|
1209
1209
|
invites: CoachTeamInvite[];
|
|
1210
1210
|
}
|
|
1211
1211
|
export interface HevyTrainerProgram {
|
|
1212
|
+
id: string;
|
|
1212
1213
|
created_at: string;
|
|
1213
1214
|
updated_at: string;
|
|
1214
1215
|
title: string;
|