hevy-shared 1.0.930 → 1.0.932
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/built/index.js +0 -1
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ export interface UserAccountResponse {
|
|
|
111
111
|
email_verified: boolean;
|
|
112
112
|
height_cm?: number;
|
|
113
113
|
is_hevy_trainer_user: boolean;
|
|
114
|
+
trainer_program_updated_at?: string;
|
|
114
115
|
}
|
|
115
116
|
export interface CoachAppPushTarget {
|
|
116
117
|
type: 'android' | 'ios';
|
|
@@ -1830,7 +1831,7 @@ export interface BackofficeAppLogIndexResponse {
|
|
|
1830
1831
|
fileSizeBytes: number;
|
|
1831
1832
|
}[];
|
|
1832
1833
|
}
|
|
1833
|
-
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"
|
|
1834
|
+
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1834
1835
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1835
1836
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|
|
1836
1837
|
export type SuggestedUserLabel = 'contact' | 'mutual_friends' | 'follows_you' | 'featured';
|
|
@@ -1923,7 +1924,6 @@ export interface HevyTrainerUserPreferences {
|
|
|
1923
1924
|
}
|
|
1924
1925
|
export interface LinkPreviewMetadataResponse {
|
|
1925
1926
|
title: string;
|
|
1926
|
-
description: string;
|
|
1927
1927
|
url: string;
|
|
1928
1928
|
image_url: string;
|
|
1929
1929
|
twitter_image_url: string;
|
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;
|