hevy-shared 1.0.807 → 1.0.808

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
@@ -840,6 +840,7 @@ export interface Workout {
840
840
  biometrics?: WorkoutBiometrics;
841
841
  is_biometrics_public: boolean;
842
842
  is_trainer_workout: boolean;
843
+ trainer_program_id?: string;
843
844
  }
844
845
  export interface CustomExerciseImage {
845
846
  type: 'image';
@@ -36,6 +36,7 @@ export interface NormalizedWorkout {
36
36
  clientId: string;
37
37
  biometrics?: WorkoutBiometrics;
38
38
  isTrainerWorkout: boolean;
39
+ trainerProgramId?: string;
39
40
  }
40
41
  export interface NormalizedSet {
41
42
  index: number;
@@ -161,6 +161,7 @@ class WorkoutBuilder {
161
161
  healthConnect: false,
162
162
  },
163
163
  clientId: '',
164
+ trainerProgramId: undefined,
164
165
  });
165
166
  this._exercises = [];
166
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.807",
3
+ "version": "1.0.808",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",