hevy-shared 1.0.802 → 1.0.803
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 +2 -15
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -545,6 +545,8 @@ export interface UserProfile {
|
|
|
545
545
|
routines: RoutineMetadata[];
|
|
546
546
|
weekly_workout_durations: WeeklyWorkoutDuration[];
|
|
547
547
|
mutual_followers: PreviewMutualUser[];
|
|
548
|
+
streak_count: number;
|
|
549
|
+
streak_validity_end_unix: number;
|
|
548
550
|
}
|
|
549
551
|
export interface PublicUserProfile {
|
|
550
552
|
private_profile: boolean;
|
|
@@ -1208,7 +1210,6 @@ export interface OutstandingInvitesForCoachTeamResponse {
|
|
|
1208
1210
|
invites: CoachTeamInvite[];
|
|
1209
1211
|
}
|
|
1210
1212
|
export interface HevyTrainerProgram {
|
|
1211
|
-
id: string;
|
|
1212
1213
|
created_at: string;
|
|
1213
1214
|
updated_at: string;
|
|
1214
1215
|
title: string;
|
|
@@ -1235,20 +1236,6 @@ export interface PostHevyTrainerProgramRequestBody {
|
|
|
1235
1236
|
workout_duration_minutes?: WorkoutDurationMinutes;
|
|
1236
1237
|
};
|
|
1237
1238
|
}
|
|
1238
|
-
export interface UpdateHevyTrainerProgramRequestBody {
|
|
1239
|
-
program: {
|
|
1240
|
-
programId: string;
|
|
1241
|
-
title: string;
|
|
1242
|
-
level: TrainingLevel;
|
|
1243
|
-
goal: TrainingGoal;
|
|
1244
|
-
equipments: HevyTrainerProgramEquipment[];
|
|
1245
|
-
weekly_frequency: WeeklyTrainingFrequency;
|
|
1246
|
-
focus_muscle?: SimplifiedMuscleGroup;
|
|
1247
|
-
next_workout_index?: number;
|
|
1248
|
-
workout_duration_minutes?: WorkoutDurationMinutes;
|
|
1249
|
-
routines: BaseRoutine[];
|
|
1250
|
-
};
|
|
1251
|
-
}
|
|
1252
1239
|
export declare const measurementsList: readonly ["weight_kg", "lean_mass_kg", "fat_percent", "neck_cm", "shoulder_cm", "chest_cm", "left_bicep_cm", "right_bicep_cm", "left_forearm_cm", "right_forearm_cm", "abdomen", "waist", "hips", "left_thigh", "right_thigh", "left_calf", "right_calf"];
|
|
1253
1240
|
type MeasurementProperties = {
|
|
1254
1241
|
[key in typeof measurementsList[number]]?: number;
|