hevy-shared 1.0.1014 → 1.0.1015
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 +12 -12
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1306,23 +1306,23 @@ export interface UpdateHevyTrainerProgramRequestBody {
|
|
|
1306
1306
|
program: {
|
|
1307
1307
|
version: 1;
|
|
1308
1308
|
programId: string;
|
|
1309
|
-
title
|
|
1310
|
-
level
|
|
1311
|
-
goal
|
|
1312
|
-
equipments
|
|
1313
|
-
weekly_frequency
|
|
1314
|
-
focus_muscle
|
|
1315
|
-
next_workout_index
|
|
1316
|
-
workout_duration_minutes
|
|
1317
|
-
rest_timer_length
|
|
1318
|
-
cardio_preference
|
|
1319
|
-
routines
|
|
1309
|
+
title: string | null;
|
|
1310
|
+
level: TrainingLevel | null;
|
|
1311
|
+
goal: TrainingGoal | null;
|
|
1312
|
+
equipments: GranularEquipment[] | null;
|
|
1313
|
+
weekly_frequency: WeeklyTrainingFrequency | null;
|
|
1314
|
+
focus_muscle: SimplifiedMuscleGroup | null;
|
|
1315
|
+
next_workout_index: number | null;
|
|
1316
|
+
workout_duration_minutes: WorkoutDurationMinutes | null;
|
|
1317
|
+
rest_timer_length: RestTimerLength | null;
|
|
1318
|
+
cardio_preference: CardioPreference | null;
|
|
1319
|
+
routines: {
|
|
1320
1320
|
id: string;
|
|
1321
1321
|
title: string;
|
|
1322
1322
|
notes: string | null;
|
|
1323
1323
|
exercises: RoutineUpdateExercise[];
|
|
1324
1324
|
index: number;
|
|
1325
|
-
}[];
|
|
1325
|
+
}[] | null;
|
|
1326
1326
|
};
|
|
1327
1327
|
}
|
|
1328
1328
|
/** @deprecated Use HevyTrainerProgram instead */
|