hevy-shared 1.0.778 → 1.0.779
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 +3 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WorkoutDurationMinutes } from './hevyTrainer';
|
|
1
2
|
import { Lookup } from './typeUtils';
|
|
2
3
|
export * from './constants';
|
|
3
4
|
export * from './utils';
|
|
@@ -1216,6 +1217,7 @@ export interface HevyTrainerProgram {
|
|
|
1216
1217
|
focus_muscle?: SimplifiedMuscleGroup;
|
|
1217
1218
|
next_workout_index: number;
|
|
1218
1219
|
workout_tab_ai_insights?: string;
|
|
1220
|
+
workout_duration_minutes?: WorkoutDurationMinutes;
|
|
1219
1221
|
}
|
|
1220
1222
|
export interface PostHevyTrainerProgramRequestBody {
|
|
1221
1223
|
program: {
|
|
@@ -1227,6 +1229,7 @@ export interface PostHevyTrainerProgramRequestBody {
|
|
|
1227
1229
|
focus_muscle?: SimplifiedMuscleGroup;
|
|
1228
1230
|
routines: RoutineUpdate[];
|
|
1229
1231
|
next_workout_index?: number;
|
|
1232
|
+
workout_duration_minutes?: WorkoutDurationMinutes;
|
|
1230
1233
|
};
|
|
1231
1234
|
}
|
|
1232
1235
|
export declare const measurementsList: readonly ["weight_kg", "fat_percent", "neck_cm", "shoulder_cm", "chest_cm", "left_bicep_cm", "right_bicep_cm", "left_forearm_cm", "right_forearm_cm", "abdomen", "waist", "hips", "left_thigh", "right_thigh", "left_calf", "right_calf"];
|