hevy-shared 1.0.862 → 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 +7 -10
- 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;
|
|
@@ -1896,21 +1896,18 @@ 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
|
+
prs: SetPersonalRecordType[];
|
|
1903
1900
|
}
|
|
1904
1901
|
export interface ExerciseInstructionsStep {
|
|
1905
1902
|
index?: number;
|
|
1906
1903
|
description: string;
|
|
1907
1904
|
}
|
|
1908
|
-
export interface
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1905
|
+
export interface ExerciseHistoryWorkout {
|
|
1906
|
+
id: string;
|
|
1907
|
+
name: string;
|
|
1908
|
+
start_time: number;
|
|
1912
1909
|
exercises: {
|
|
1913
1910
|
exercise_index: number;
|
|
1914
|
-
sets:
|
|
1911
|
+
sets: ExerciseHistorySet[];
|
|
1915
1912
|
}[];
|
|
1916
1913
|
}
|