hevy-shared 1.0.863 → 1.0.864
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 +6 -6
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1887,7 +1887,7 @@ export interface FolderLinkPreviewMetadataResponse extends LinkPreviewMetadataRe
|
|
|
1887
1887
|
username: string;
|
|
1888
1888
|
routine_count: number;
|
|
1889
1889
|
}
|
|
1890
|
-
export interface
|
|
1890
|
+
export interface ExerciseHistorySet {
|
|
1891
1891
|
weight_kg: number | null;
|
|
1892
1892
|
reps: number | null;
|
|
1893
1893
|
indicator: string | null;
|
|
@@ -1902,12 +1902,12 @@ export interface ExerciseInstructionsStep {
|
|
|
1902
1902
|
index?: number;
|
|
1903
1903
|
description: string;
|
|
1904
1904
|
}
|
|
1905
|
-
export interface
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1905
|
+
export interface ExerciseHistoryWorkout {
|
|
1906
|
+
id: string;
|
|
1907
|
+
name: string;
|
|
1908
|
+
start_time: number;
|
|
1909
1909
|
exercises: {
|
|
1910
1910
|
exercise_index: number;
|
|
1911
|
-
sets:
|
|
1911
|
+
sets: ExerciseHistorySet[];
|
|
1912
1912
|
}[];
|
|
1913
1913
|
}
|