hevy-shared 1.0.775 → 1.0.776
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
CHANGED
|
@@ -838,7 +838,6 @@ export interface Workout {
|
|
|
838
838
|
logged_by_coach_id?: string;
|
|
839
839
|
biometrics?: WorkoutBiometrics;
|
|
840
840
|
is_biometrics_public: boolean;
|
|
841
|
-
is_trainer_workout: boolean;
|
|
842
841
|
}
|
|
843
842
|
export interface CustomExerciseImage {
|
|
844
843
|
type: 'image';
|
|
@@ -917,7 +916,6 @@ export interface PostWorkoutRequestWorkout {
|
|
|
917
916
|
is_private: boolean;
|
|
918
917
|
biometrics?: WorkoutBiometrics;
|
|
919
918
|
is_biometrics_public: boolean;
|
|
920
|
-
is_trainer_workout: boolean;
|
|
921
919
|
}
|
|
922
920
|
export declare const isHeartRateSamples: (x: any) => x is HeartRateSample[];
|
|
923
921
|
export declare const isWorkoutBiometrics: (x: any) => x is WorkoutBiometrics;
|
package/built/tests/testUtils.js
CHANGED