hevy-shared 1.0.648 → 1.0.650
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/coachPlans.d.ts +1 -0
- package/built/index.d.ts +0 -6
- package/package.json +1 -1
package/built/coachPlans.d.ts
CHANGED
package/built/index.d.ts
CHANGED
|
@@ -772,10 +772,6 @@ export interface WorkoutVideo {
|
|
|
772
772
|
thumbnail_url: string;
|
|
773
773
|
}
|
|
774
774
|
export type WorkoutMedia = WorkoutImage | WorkoutVideo;
|
|
775
|
-
export type PreviewWorkoutLike = {
|
|
776
|
-
username: string;
|
|
777
|
-
profile_pic: string;
|
|
778
|
-
};
|
|
779
775
|
export interface Workout {
|
|
780
776
|
id: string;
|
|
781
777
|
short_id: string | null;
|
|
@@ -783,9 +779,7 @@ export interface Workout {
|
|
|
783
779
|
name: string;
|
|
784
780
|
description?: string;
|
|
785
781
|
like_count: number;
|
|
786
|
-
/** @deprecated 2.3.4 */
|
|
787
782
|
like_images: string[];
|
|
788
|
-
preview_workout_likes: PreviewWorkoutLike[];
|
|
789
783
|
comment_count: number;
|
|
790
784
|
comments: WorkoutComment[];
|
|
791
785
|
/** @deprecated 1.28.13 */
|