hevy-shared 1.0.982 → 1.0.983
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 +13 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -965,6 +965,19 @@ export interface PostWorkoutRequestWorkout {
|
|
|
965
965
|
is_biometrics_public: boolean;
|
|
966
966
|
trainer_program_id: string | undefined;
|
|
967
967
|
}
|
|
968
|
+
export type WorkoutDataImporterReport = {
|
|
969
|
+
state: 'idle';
|
|
970
|
+
} | {
|
|
971
|
+
state: 'waiting';
|
|
972
|
+
} | {
|
|
973
|
+
state: 'import-exercises';
|
|
974
|
+
} | {
|
|
975
|
+
state: 'import-workouts';
|
|
976
|
+
current: number;
|
|
977
|
+
total: number;
|
|
978
|
+
} | {
|
|
979
|
+
state: 'rollback';
|
|
980
|
+
} | never;
|
|
968
981
|
export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
|
|
969
982
|
export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
|
|
970
983
|
export interface WorkoutBiometrics {
|