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.
- package/built/hevyTrainer.d.ts +4 -0
- package/package.json +1 -1
package/built/hevyTrainer.d.ts
CHANGED
|
@@ -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;
|