hevy-shared 1.0.810 → 1.0.812

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 CHANGED
@@ -558,6 +558,7 @@ export interface UserProfile {
558
558
  routines: RoutineMetadata[];
559
559
  weekly_workout_durations: WeeklyWorkoutDuration[];
560
560
  mutual_followers: PreviewMutualUser[];
561
+ last_streak_count: number;
561
562
  }
562
563
  export interface PublicUserProfile {
563
564
  private_profile: boolean;
@@ -853,7 +854,6 @@ export interface Workout {
853
854
  biometrics?: WorkoutBiometrics;
854
855
  is_biometrics_public: boolean;
855
856
  is_trainer_workout: boolean;
856
- trainer_program_id: string | undefined;
857
857
  }
858
858
  export interface CustomExerciseImage {
859
859
  type: 'image';
@@ -933,7 +933,6 @@ export interface PostWorkoutRequestWorkout {
933
933
  biometrics?: WorkoutBiometrics;
934
934
  is_biometrics_public: boolean;
935
935
  is_trainer_workout: boolean;
936
- trainer_program_id: string | undefined;
937
936
  }
938
937
  export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
939
938
  export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
@@ -1223,7 +1222,6 @@ export interface OutstandingInvitesForCoachTeamResponse {
1223
1222
  invites: CoachTeamInvite[];
1224
1223
  }
1225
1224
  export interface HevyTrainerProgram {
1226
- id: string;
1227
1225
  created_at: string;
1228
1226
  updated_at: string;
1229
1227
  title: string;
@@ -36,7 +36,6 @@ export interface NormalizedWorkout {
36
36
  clientId: string;
37
37
  biometrics?: WorkoutBiometrics;
38
38
  isTrainerWorkout: boolean;
39
- trainerProgramId: string | undefined;
40
39
  }
41
40
  export interface NormalizedSet {
42
41
  index: number;
@@ -155,7 +155,6 @@ class WorkoutBuilder {
155
155
  workoutVisibility: 'public',
156
156
  isWorkoutBiometricsPublic: true,
157
157
  isTrainerWorkout: false,
158
- trainerProgramId: undefined,
159
158
  shareTo: {
160
159
  strava: false,
161
160
  appleHealth: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.810",
3
+ "version": "1.0.812",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",