@plus45/types 1.1.12 → 1.1.14

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/index.ts CHANGED
@@ -9,9 +9,9 @@ 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";
13
- import ScheduleDays from "./types/schedule/schedule_days";
14
- import ScheduleRecurrence from "./types/schedule/schedule_recurrence";
12
+ import { Schedule } from "./types/schedule/schedule";
13
+ import { ScheduleDay } from "./types/schedule/schedule_days";
14
+ import { ScheduleRecurrence } from "./types/schedule/schedule_recurrence";
15
15
 
16
16
  export {
17
17
  // User Type Structures
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.1.12",
3
+ "version": "1.1.14",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts"
6
6
  }
@@ -4,7 +4,6 @@ export type Schedule = {
4
4
  workout_id: string;
5
5
  days_of_week: number[];
6
6
  start_time: string | null;
7
- recurrence: string;
7
+ recurrence: number;
8
8
  created_at: string;
9
- updated_at: string;
10
9
  };
@@ -1,4 +1,4 @@
1
- enum ScheduleRecurrence {
1
+ export enum ScheduleRecurrence {
2
2
  Weekly = "WEEKLY",
3
3
  BIWEEKLY = "BIWEEKLY"
4
4
  }