@dgpholdings/greatoak-shared 1.2.83 → 1.2.84
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.
|
@@ -112,9 +112,6 @@ export type TExercise = {
|
|
|
112
112
|
paceFactors?: {
|
|
113
113
|
[key: string]: number;
|
|
114
114
|
};
|
|
115
|
-
movementPattern?: "push" | "pull" | "hinge" | "squat" | "lunge" | "rotation" | "carry" | "isolation";
|
|
116
|
-
stabilityDemand?: "low" | "moderate" | "high";
|
|
117
|
-
progressionTier?: "beginner" | "intermediate" | "advanced" | "elite";
|
|
118
115
|
};
|
|
119
116
|
youtubeVideoUrl: string[];
|
|
120
117
|
modelVideoUrl: string;
|
|
@@ -143,6 +140,9 @@ export type TExercise = {
|
|
|
143
140
|
female: number;
|
|
144
141
|
default: number;
|
|
145
142
|
};
|
|
143
|
+
movementPattern?: "push" | "pull" | "hinge" | "squat" | "lunge" | "rotation" | "carry" | "isolation";
|
|
144
|
+
stabilityDemand?: "low" | "moderate" | "high";
|
|
145
|
+
progressionTier?: "beginner" | "intermediate" | "advanced" | "elite";
|
|
146
146
|
};
|
|
147
147
|
export type TBodyPartExercises = Record<TBodyPart, TExercise[]>;
|
|
148
148
|
export type TApiCreateOrUpdateExerciseReq = {
|