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