hevy-shared 1.0.638 → 1.0.640
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 +0 -7
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -750,10 +750,6 @@ export interface WorkoutExercise {
|
|
|
750
750
|
volume_doubling_enabled: boolean;
|
|
751
751
|
sets: WorkoutExerciseSet[];
|
|
752
752
|
}
|
|
753
|
-
export type PreviewWorkoutLike = {
|
|
754
|
-
username: string;
|
|
755
|
-
profile_pic: string;
|
|
756
|
-
};
|
|
757
753
|
export interface WorkoutComment {
|
|
758
754
|
id: number;
|
|
759
755
|
username: string;
|
|
@@ -782,11 +778,8 @@ export interface Workout {
|
|
|
782
778
|
index: number;
|
|
783
779
|
name: string;
|
|
784
780
|
description?: string;
|
|
785
|
-
/** @deprecated 2.3.4 */
|
|
786
781
|
like_count: number;
|
|
787
|
-
/** @deprecated 2.3.4 */
|
|
788
782
|
like_images: string[];
|
|
789
|
-
preview_workout_likes: PreviewWorkoutLike[];
|
|
790
783
|
comment_count: number;
|
|
791
784
|
comments: WorkoutComment[];
|
|
792
785
|
/** @deprecated 1.28.13 */
|