hevy-shared 1.0.559 → 1.0.560

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.
Files changed (2) hide show
  1. package/built/index.d.ts +5 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -507,6 +507,10 @@ export interface RoutineMetadata {
507
507
  short_id: string;
508
508
  title: string;
509
509
  }
510
+ export type PreviewMutualUser = {
511
+ username: string;
512
+ profile_pic: string | null;
513
+ };
510
514
  export interface UserProfile {
511
515
  username: string;
512
516
  verified: boolean;
@@ -524,6 +528,7 @@ export interface UserProfile {
524
528
  following_count: number;
525
529
  routines: RoutineMetadata[];
526
530
  weekly_workout_durations: WeeklyWorkoutDuration[];
531
+ mutual_followers: PreviewMutualUser[];
527
532
  }
528
533
  export interface PublicUserProfile {
529
534
  private_profile: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.559",
3
+ "version": "1.0.560",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",