hevy-shared 1.0.736 → 1.0.738
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 +16 -8
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -266,6 +266,7 @@ export interface BackofficeExistingUserResponse {
|
|
|
266
266
|
public_api_key: string | null;
|
|
267
267
|
limited_discovery: boolean;
|
|
268
268
|
coach_trial_expire_date?: string;
|
|
269
|
+
is_hevy_trainer_beta_enabled: boolean;
|
|
269
270
|
}
|
|
270
271
|
export interface BackofficeDeletedUserResponse {
|
|
271
272
|
state: 'deleted-account';
|
|
@@ -306,6 +307,7 @@ export interface BackofficeAccountUpdate {
|
|
|
306
307
|
limited_discovery?: boolean;
|
|
307
308
|
delete_profile_pic?: boolean;
|
|
308
309
|
delete_link?: boolean;
|
|
310
|
+
is_hevy_trainer_beta_enabled?: boolean;
|
|
309
311
|
}
|
|
310
312
|
export interface BackofficeSuggestedUsersResponse {
|
|
311
313
|
users: SuggestedUser[];
|
|
@@ -1749,15 +1751,21 @@ export interface UserPushNotificationSettingsUpdate {
|
|
|
1749
1751
|
likes?: boolean;
|
|
1750
1752
|
monthly_report?: boolean;
|
|
1751
1753
|
}
|
|
1752
|
-
export interface
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1754
|
+
export interface ProgressiveOverloadSettings {
|
|
1755
|
+
plate: {
|
|
1756
|
+
kg: number;
|
|
1757
|
+
lbs: number;
|
|
1758
|
+
};
|
|
1759
|
+
dumbbell: {
|
|
1760
|
+
kg: number;
|
|
1761
|
+
lbs: number;
|
|
1762
|
+
};
|
|
1763
|
+
machine: {
|
|
1764
|
+
kg: number;
|
|
1765
|
+
lbs: number;
|
|
1766
|
+
};
|
|
1759
1767
|
}
|
|
1760
1768
|
export interface HevyTrainerUserPreferences {
|
|
1769
|
+
progressiveOverloadSettings: ProgressiveOverloadSettings;
|
|
1761
1770
|
excludedExercisesIds: string[];
|
|
1762
|
-
availableEquipment: AvailableEquipment;
|
|
1763
1771
|
}
|