hevy-shared 1.0.793 → 1.0.795

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.
@@ -74,6 +74,9 @@ export interface ExercisePrescription {
74
74
  warmup_set_count?: number;
75
75
  min_workout_duration_limit?: WorkoutDurationMinutes;
76
76
  }
77
+ export type ExerciseReplacements = {
78
+ [key in exerciseId]: exerciseId[];
79
+ };
77
80
  export interface WorkoutTemplate {
78
81
  exercises: ExercisePrescription[];
79
82
  notes?: string;
@@ -97,6 +100,7 @@ export interface TrainerAlgorithmSettings {
97
100
  templates: Templates;
98
101
  exercise_priorities: ExercisePriorities;
99
102
  exercise_notes: ExerciseNotes;
103
+ exercise_replacements: ExerciseReplacements;
100
104
  }
101
105
  export interface TrainerProgramExercise {
102
106
  exerciseTemplate: HevyTrainerLibraryExercise;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.793",
3
+ "version": "1.0.795",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",