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.
@@ -5,6 +5,7 @@ export interface Plan {
5
5
  maximum_clients: number;
6
6
  id: string;
7
7
  paddle_update_payment_url?: string;
8
+ paddle_subscription_id?: number;
8
9
  renewal_period: 'monthly' | 'lifetime';
9
10
  renewal_price?: string;
10
11
  renewal_currency?: string;
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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.648",
3
+ "version": "1.0.650",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",