hevy-shared 1.0.964 → 1.0.966

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 +3 -1
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -960,6 +960,7 @@ export interface PostWorkoutRequestWorkout {
960
960
  biometrics?: WorkoutBiometrics;
961
961
  is_biometrics_public: boolean;
962
962
  trainer_program_id: string | undefined;
963
+ trainer_workout_template_id: string | undefined;
963
964
  }
964
965
  export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
965
966
  export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
@@ -1254,7 +1255,7 @@ export interface TrainerWorkoutTemplateExercise {
1254
1255
  index: number;
1255
1256
  set_count: number;
1256
1257
  warmup_set_count: number;
1257
- rep_range: RepRange;
1258
+ rep_range?: RepRange;
1258
1259
  rest_seconds: number;
1259
1260
  }
1260
1261
  export interface TrainerWorkoutTemplate {
@@ -1281,6 +1282,7 @@ export interface TrainerProgramV3 {
1281
1282
  }
1282
1283
  export interface PostTrainerProgramV3RequestBody {
1283
1284
  program: {
1285
+ title: string;
1284
1286
  level: TrainingLevel;
1285
1287
  goal: TrainingGoal;
1286
1288
  equipments: GranularEquipment[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.964",
3
+ "version": "1.0.966",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",