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.
Files changed (2) hide show
  1. package/built/index.d.ts +12 -12
  2. 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?: string;
1310
- level?: TrainingLevel;
1311
- goal?: TrainingGoal;
1312
- equipments?: GranularEquipment[];
1313
- weekly_frequency?: WeeklyTrainingFrequency;
1314
- focus_muscle?: SimplifiedMuscleGroup;
1315
- next_workout_index?: number;
1316
- workout_duration_minutes?: WorkoutDurationMinutes;
1317
- rest_timer_length?: RestTimerLength;
1318
- cardio_preference?: CardioPreference;
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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.1014",
3
+ "version": "1.0.1015",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",