@plus45/types 1.1.30 → 1.1.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.1.30",
3
+ "version": "1.1.31",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts"
6
6
  }
@@ -3,16 +3,15 @@ import { Workout } from "./workout";
3
3
 
4
4
  export type WorkoutExecution = {
5
5
  assigned_to_user: string;
6
- completed?: boolean;
7
-
6
+ workout_id: string;
8
7
  /**
9
8
  * Completions are a record that point the exercise id (as the key) to the completion containing the value entered as well as the unit.
10
9
  */
11
10
  completions: Record<string, CompletedExercise>;
11
+ completed?: boolean;
12
12
  } & Workout;
13
13
 
14
14
  export type CompletedExercise = {
15
- workout_id: string;
16
15
  value?: number;
17
16
  unit?: ExerciseUnit;
18
17
  };