@dgpholdings/greatoak-shared 1.0.85 → 1.0.87

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.
@@ -10,7 +10,6 @@ exports.bodyCategories = [
10
10
  "Triceps",
11
11
  "Forearms",
12
12
  "Legs",
13
- "Cardio",
14
13
  ];
15
14
  exports.bodySubCategories = {
16
15
  Chest: ["pectoralis-major", "pectoralis-minor"],
@@ -28,7 +27,6 @@ exports.bodySubCategories = {
28
27
  "medius-upper",
29
28
  "maximus-lower",
30
29
  ],
31
- Cardio: ["cardio"],
32
30
  };
33
31
  exports.trainingTypes = [
34
32
  "band",
@@ -36,4 +34,5 @@ exports.trainingTypes = [
36
34
  "weight",
37
35
  "yoga",
38
36
  "cardio",
37
+ "stretching",
39
38
  ];
@@ -1,5 +1,5 @@
1
1
  import { TRecord } from "./TApiExerciseRecord";
2
- export type TBodyPart = "Chest" | "Core" | "Shoulders" | "Back" | "Biceps" | "Triceps" | "Forearms" | "Legs" | "Cardio";
2
+ export type TBodyPart = "Chest" | "Core" | "Shoulders" | "Back" | "Biceps" | "Triceps" | "Forearms" | "Legs";
3
3
  export declare enum EBodyParts {
4
4
  "pectoralis-major" = "Pectoralis major",
5
5
  "pectoralis-minor" = "Pectoralis minor",
@@ -23,11 +23,10 @@ export declare enum EBodyParts {
23
23
  "quadriceps" = "Quadriceps",
24
24
  "medius-upper" = "Gluteus medius",
25
25
  "maximus-lower" = "Gluteus maximus",
26
- "cardio" = "Cardio",
27
26
  "lower-back" = "Lower back"
28
27
  }
29
28
  export type TBodyPartKeys = Array<keyof typeof EBodyParts>;
30
- export type TTrainingType = "band" | "body-weight" | "weight" | "yoga" | "cardio";
29
+ export type TTrainingType = "band" | "body-weight" | "weight" | "yoga" | "cardio" | "stretching";
31
30
  export type TExercise = {
32
31
  exerciseId: string;
33
32
  name: string;
@@ -25,6 +25,5 @@ var EBodyParts;
25
25
  EBodyParts["quadriceps"] = "Quadriceps";
26
26
  EBodyParts["medius-upper"] = "Gluteus medius";
27
27
  EBodyParts["maximus-lower"] = "Gluteus maximus";
28
- EBodyParts["cardio"] = "Cardio";
29
28
  EBodyParts["lower-back"] = "Lower back";
30
29
  })(EBodyParts || (exports.EBodyParts = EBodyParts = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.0.85",
3
+ "version": "1.0.87",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",