@dgpholdings/greatoak-shared 1.0.78 → 1.0.79

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.
@@ -27,6 +27,7 @@ export declare enum EBodyParts {
27
27
  "lower-back" = "Lower back"
28
28
  }
29
29
  export type TBodyPartKeys = Array<keyof typeof EBodyParts>;
30
+ export type TTrainingType = "band" | "body-weight" | "weight" | "yoga" | "cardio";
30
31
  export type TExercise = {
31
32
  exerciseId: string;
32
33
  name: string;
@@ -34,6 +35,7 @@ export type TExercise = {
34
35
  recordType: TRecord["type"];
35
36
  primaryMuscles: TBodyPartKeys;
36
37
  secondaryMuscles: TBodyPartKeys;
38
+ trainingTypes: TTrainingType;
37
39
  otherName?: string;
38
40
  youtubeVideoUrl: string[];
39
41
  modelVideoUrl: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",