@dgpholdings/greatoak-shared 1.1.21 → 1.1.22
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.
|
@@ -38,7 +38,7 @@ export type TExercise = {
|
|
|
38
38
|
primaryMuscles: TBodyPartKeys;
|
|
39
39
|
secondaryMuscles: TBodyPartKeys;
|
|
40
40
|
trainingTypes: TTrainingType[];
|
|
41
|
-
|
|
41
|
+
avgSetDurationInSecs?: number;
|
|
42
42
|
difficultyLevel: number;
|
|
43
43
|
hypertrophyLevel: number;
|
|
44
44
|
strengthGainLevel: number;
|
|
@@ -29,11 +29,11 @@ export type TRecordBodyWeight = Extract<TRecord, {
|
|
|
29
29
|
}>;
|
|
30
30
|
export type TRecordConfig = {
|
|
31
31
|
enableAuxWeight?: boolean;
|
|
32
|
-
enableRestTime?: boolean;
|
|
33
32
|
enableRir?: boolean;
|
|
34
33
|
enableRpe?: boolean;
|
|
35
34
|
enableSetNote?: boolean;
|
|
36
35
|
enableExerciseNote?: boolean;
|
|
36
|
+
enableRestTime?: boolean;
|
|
37
37
|
};
|
|
38
38
|
export type TApiExerciseRecordUpdateReq = {
|
|
39
39
|
templateId: string;
|
|
@@ -42,6 +42,7 @@ export type TApiExerciseRecordUpdateReq = {
|
|
|
42
42
|
exerciseId: string;
|
|
43
43
|
config: TRecordConfig;
|
|
44
44
|
exerciseNote: string;
|
|
45
|
+
restTimeSecs?: number;
|
|
45
46
|
record: TRecord[];
|
|
46
47
|
}[];
|
|
47
48
|
};
|