hevy-shared 1.0.776 → 1.0.778

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
@@ -838,6 +838,7 @@ export interface Workout {
838
838
  logged_by_coach_id?: string;
839
839
  biometrics?: WorkoutBiometrics;
840
840
  is_biometrics_public: boolean;
841
+ is_trainer_workout: boolean;
841
842
  }
842
843
  export interface CustomExerciseImage {
843
844
  type: 'image';
@@ -916,6 +917,7 @@ export interface PostWorkoutRequestWorkout {
916
917
  is_private: boolean;
917
918
  biometrics?: WorkoutBiometrics;
918
919
  is_biometrics_public: boolean;
920
+ is_trainer_workout: boolean;
919
921
  }
920
922
  export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
921
923
  export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
@@ -35,6 +35,7 @@ export interface NormalizedWorkout {
35
35
  };
36
36
  clientId: string;
37
37
  biometrics?: WorkoutBiometrics;
38
+ isTrainerWorkout: boolean;
38
39
  }
39
40
  export interface NormalizedSet {
40
41
  index: number;
@@ -153,6 +153,7 @@ class WorkoutBuilder {
153
153
  wearosWatch: false,
154
154
  workoutVisibility: 'public',
155
155
  isWorkoutBiometricsPublic: true,
156
+ isTrainerWorkout: false,
156
157
  shareTo: {
157
158
  strava: false,
158
159
  appleHealth: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.776",
3
+ "version": "1.0.778",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",