hevy-shared 1.0.805 → 1.0.807

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 +2 -2
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -545,8 +545,6 @@ export interface UserProfile {
545
545
  routines: RoutineMetadata[];
546
546
  weekly_workout_durations: WeeklyWorkoutDuration[];
547
547
  mutual_followers: PreviewMutualUser[];
548
- streak_count: number;
549
- first_weekday: Weekday;
550
548
  }
551
549
  export interface PublicUserProfile {
552
550
  private_profile: boolean;
@@ -921,6 +919,7 @@ export interface PostWorkoutRequestWorkout {
921
919
  biometrics?: WorkoutBiometrics;
922
920
  is_biometrics_public: boolean;
923
921
  is_trainer_workout: boolean;
922
+ trainer_program_id?: string;
924
923
  }
925
924
  export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
926
925
  export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
@@ -1210,6 +1209,7 @@ export interface OutstandingInvitesForCoachTeamResponse {
1210
1209
  invites: CoachTeamInvite[];
1211
1210
  }
1212
1211
  export interface HevyTrainerProgram {
1212
+ id: string;
1213
1213
  created_at: string;
1214
1214
  updated_at: string;
1215
1215
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.805",
3
+ "version": "1.0.807",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",