hevy-shared 1.0.860 → 1.0.862
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/built/index.d.ts +4 -5
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1896,6 +1896,10 @@ export interface ExerciseSetHistory {
|
|
|
1896
1896
|
rpe: number | null;
|
|
1897
1897
|
custom_metric: number | null;
|
|
1898
1898
|
set_index: number;
|
|
1899
|
+
prs: {
|
|
1900
|
+
type: SetPersonalRecordType;
|
|
1901
|
+
value: number;
|
|
1902
|
+
}[];
|
|
1899
1903
|
}
|
|
1900
1904
|
export interface ExerciseInstructionsStep {
|
|
1901
1905
|
index?: number;
|
|
@@ -1910,8 +1914,3 @@ export interface WorkoutExerciseHistory {
|
|
|
1910
1914
|
sets: ExerciseSetHistory[];
|
|
1911
1915
|
}[];
|
|
1912
1916
|
}
|
|
1913
|
-
export interface UserExerciseHistoryPagedResponse {
|
|
1914
|
-
page: number;
|
|
1915
|
-
page_count: number;
|
|
1916
|
-
workout_history: WorkoutExerciseHistory[];
|
|
1917
|
-
}
|