@plus45/types 1.1.37 → 1.1.38

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/index.ts +2 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  WeightUnits
10
10
  } from "./types/exercise/exercise_units";
11
11
  import { Workout } from "./types/workout/workout";
12
- import { Schedule } from "./types/schedule/schedule";
12
+ import { AssignedSchedule, Schedule } from "./types/schedule/schedule";
13
13
  import { ScheduleDay } from "./types/schedule/schedule_days";
14
14
  import { ScheduleRecurrence } from "./types/schedule/schedule_recurrence";
15
15
  import { UserSessionInfo } from "./types/user/session_info";
@@ -34,6 +34,7 @@ export {
34
34
 
35
35
  // Schedule Type Structures
36
36
  type Schedule,
37
+ type AssignedSchedule,
37
38
 
38
39
  // Enums
39
40
  ExerciseType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.1.37",
3
+ "version": "1.1.38",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts"
6
6
  }