hevy-shared 1.0.817 → 1.0.818

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.
Files changed (2) hide show
  1. package/built/index.d.ts +14 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -1250,6 +1250,20 @@ export interface PostHevyTrainerProgramRequestBody {
1250
1250
  workout_duration_minutes?: WorkoutDurationMinutes;
1251
1251
  };
1252
1252
  }
1253
+ export interface UpdateHevyTrainerProgramRequestBody {
1254
+ program: {
1255
+ programId: string;
1256
+ title: string;
1257
+ level: TrainingLevel;
1258
+ goal: TrainingGoal;
1259
+ equipments: HevyTrainerProgramEquipment[];
1260
+ weekly_frequency: WeeklyTrainingFrequency;
1261
+ focus_muscle?: SimplifiedMuscleGroup;
1262
+ next_workout_index?: number;
1263
+ workout_duration_minutes?: WorkoutDurationMinutes;
1264
+ routines: BaseRoutine[];
1265
+ };
1266
+ }
1253
1267
  export declare const measurementsList: readonly ["weight_kg", "lean_mass_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"];
1254
1268
  type MeasurementProperties = {
1255
1269
  [key in typeof measurementsList[number]]?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.817",
3
+ "version": "1.0.818",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",