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