hevy-shared 1.0.1007 → 1.0.1008
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
|
@@ -888,6 +888,7 @@ export interface Workout {
|
|
|
888
888
|
biometrics?: WorkoutBiometrics;
|
|
889
889
|
is_biometrics_public: boolean;
|
|
890
890
|
trainer_program_id: string | undefined;
|
|
891
|
+
gym: Gym | undefined;
|
|
891
892
|
}
|
|
892
893
|
export interface CustomExerciseImage {
|
|
893
894
|
type: 'image';
|
|
@@ -967,6 +968,7 @@ export interface PostWorkoutRequestWorkout {
|
|
|
967
968
|
biometrics?: WorkoutBiometrics;
|
|
968
969
|
is_biometrics_public: boolean;
|
|
969
970
|
trainer_program_id: string | undefined;
|
|
971
|
+
gym: Gym | undefined;
|
|
970
972
|
}
|
|
971
973
|
export type WorkoutDataImporterReport = {
|
|
972
974
|
state: 'idle';
|
|
@@ -1619,6 +1621,18 @@ export interface UserMetadataResponse {
|
|
|
1619
1621
|
export interface NetworkInfoRequest {
|
|
1620
1622
|
networkType: NetworkType;
|
|
1621
1623
|
}
|
|
1624
|
+
export type CommercialGym = {
|
|
1625
|
+
type: 'commercial';
|
|
1626
|
+
id: string;
|
|
1627
|
+
name: string;
|
|
1628
|
+
fullAddress: string;
|
|
1629
|
+
city: string;
|
|
1630
|
+
distanceM: number;
|
|
1631
|
+
};
|
|
1632
|
+
export type HomeGym = {
|
|
1633
|
+
type: 'home';
|
|
1634
|
+
};
|
|
1635
|
+
export type Gym = CommercialGym | HomeGym;
|
|
1622
1636
|
export interface StripePrice {
|
|
1623
1637
|
product_id: string;
|
|
1624
1638
|
billing_period: 'month' | 'year' | 'pay-once';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExerciseType, RPE, SetType, ShareToPlatform, WorkoutBiometrics, WorkoutMedia, WorkoutVisibility } from '.';
|
|
1
|
+
import { ExerciseType, Gym, RPE, SetType, ShareToPlatform, WorkoutBiometrics, WorkoutMedia, WorkoutVisibility } from '.';
|
|
2
2
|
/**
|
|
3
3
|
* Events are used to determine the start time, end time and duration of a
|
|
4
4
|
* `NormalizedWorkout`, in a way that can be persisted to disk.
|
|
@@ -36,6 +36,7 @@ export interface NormalizedWorkout {
|
|
|
36
36
|
clientId: string;
|
|
37
37
|
biometrics?: WorkoutBiometrics;
|
|
38
38
|
trainerProgramId: string | undefined;
|
|
39
|
+
gym: Gym | undefined;
|
|
39
40
|
}
|
|
40
41
|
export interface NormalizedSet {
|
|
41
42
|
index: number;
|
package/built/tests/testUtils.js
CHANGED