@dgpholdings/greatoak-shared 1.0.9 → 1.0.11
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/dist/TApiExercise.d.ts +3 -4
- package/package.json +1 -1
package/dist/TApiExercise.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { TRecord } from "./TApiRecord";
|
|
2
2
|
export type TBodyPart = "Chest" | "Core" | "Shoulders" | "Back" | "Bicep" | "Tricep" | "Fore arm" | "Legs" | "Cardio" | "Grip";
|
|
3
|
-
export type TBodyPartDetail = keyof EBodyParts;
|
|
4
3
|
export declare enum EBodyParts {
|
|
5
4
|
"pectoralis-major" = "Pectoralis upper",
|
|
6
5
|
"pectoralis-minor" = "Pectoralis lower",
|
|
@@ -34,8 +33,8 @@ export type TExercise = {
|
|
|
34
33
|
id: string;
|
|
35
34
|
name: string;
|
|
36
35
|
recordType: TRecord["type"];
|
|
37
|
-
primaryMuscles:
|
|
38
|
-
secondaryMuscles:
|
|
36
|
+
primaryMuscles: TBodyPartKeys[];
|
|
37
|
+
secondaryMuscles: TBodyPartKeys[];
|
|
39
38
|
otherName?: string;
|
|
40
39
|
videoUrl?: string[];
|
|
41
40
|
thumbnailUrl?: string;
|
|
@@ -61,5 +60,5 @@ export type TApiListExercisesRes = {
|
|
|
61
60
|
bodyPart: string;
|
|
62
61
|
primaryMuscles: string[];
|
|
63
62
|
thumbnailUrl: string | null;
|
|
64
|
-
};
|
|
63
|
+
}[];
|
|
65
64
|
};
|