hevy-shared 1.0.922 → 1.0.923
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 +1 -4
- package/built/index.js +0 -1
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -578,9 +578,6 @@ export interface UserProfile {
|
|
|
578
578
|
weekly_workout_durations: WeeklyWorkoutDuration[];
|
|
579
579
|
mutual_followers: PreviewMutualUser[];
|
|
580
580
|
}
|
|
581
|
-
export interface UserWorkoutStreakCount {
|
|
582
|
-
streak_count: number;
|
|
583
|
-
}
|
|
584
581
|
export interface PublicUserProfile {
|
|
585
582
|
private_profile: boolean;
|
|
586
583
|
username: string;
|
|
@@ -1833,7 +1830,7 @@ export interface BackofficeAppLogIndexResponse {
|
|
|
1833
1830
|
fileSizeBytes: number;
|
|
1834
1831
|
}[];
|
|
1835
1832
|
}
|
|
1836
|
-
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"
|
|
1833
|
+
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1837
1834
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1838
1835
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|
|
1839
1836
|
export type SuggestedUserLabel = 'contact' | 'mutual_friends' | 'follows_you' | 'featured';
|
package/built/index.js
CHANGED
|
@@ -358,7 +358,6 @@ const _suggestedUserSources = [
|
|
|
358
358
|
'follows_you',
|
|
359
359
|
'featured',
|
|
360
360
|
'hyper_local',
|
|
361
|
-
'top_discovery',
|
|
362
361
|
];
|
|
363
362
|
const isSuggestedUserSource = (source) => (0, typeUtils_1.isInArray)(source, _suggestedUserSources);
|
|
364
363
|
exports.isSuggestedUserSource = isSuggestedUserSource;
|