@plus45/types 1.1.44 → 1.1.45

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
@@ -18,7 +18,7 @@ import {
18
18
  WorkoutExecution
19
19
  } from "./types/workout/workout_execution";
20
20
  import { WeekLayout } from "./types/generics/week_layout";
21
- import { AuthType } from "./types/authorization/authorization";
21
+ import AuthType from "./types/authorization/authorization";
22
22
 
23
23
  export {
24
24
  // User Type Structures
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts"
6
6
  }
@@ -1,3 +1,5 @@
1
- export enum AuthType {
1
+ enum AuthType {
2
2
  PASSWORD_CHANGE = "PASSWORD_CHANGE"
3
3
  }
4
+
5
+ export default AuthType;