hevy-shared 1.0.801 → 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 -2
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -99,7 +99,6 @@ export interface UserAccountResponse {
|
|
|
99
99
|
private_profile: boolean;
|
|
100
100
|
created_at: string;
|
|
101
101
|
last_workout_at: string;
|
|
102
|
-
streak_count?: number;
|
|
103
102
|
accepted_terms_and_conditions: boolean;
|
|
104
103
|
/** @deprecated 1.31.1 - use `coach_client_status` instead */
|
|
105
104
|
is_coached: boolean;
|
|
@@ -168,7 +167,6 @@ export interface AccountUpdate {
|
|
|
168
167
|
sex?: Sex;
|
|
169
168
|
birthday?: string;
|
|
170
169
|
height_cm?: number;
|
|
171
|
-
streak_count?: number;
|
|
172
170
|
}
|
|
173
171
|
export interface AppleSignUpRequest {
|
|
174
172
|
email?: string;
|
|
@@ -547,6 +545,8 @@ export interface UserProfile {
|
|
|
547
545
|
routines: RoutineMetadata[];
|
|
548
546
|
weekly_workout_durations: WeeklyWorkoutDuration[];
|
|
549
547
|
mutual_followers: PreviewMutualUser[];
|
|
548
|
+
streak_count: number;
|
|
549
|
+
streak_validity_end_unix: number;
|
|
550
550
|
}
|
|
551
551
|
export interface PublicUserProfile {
|
|
552
552
|
private_profile: boolean;
|