hevy-shared 1.0.1061 → 1.0.1062
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 -1
- package/built/index.js +1 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1772,7 +1772,7 @@ export interface BackofficeAppLogIndexResponse {
|
|
|
1772
1772
|
fileSizeBytes: number;
|
|
1773
1773
|
}[];
|
|
1774
1774
|
}
|
|
1775
|
-
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1775
|
+
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local", "top_discovery"];
|
|
1776
1776
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1777
1777
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|
|
1778
1778
|
export type SuggestedUserLabel = 'contact' | 'mutual_friends' | 'follows_you' | 'featured';
|
package/built/index.js
CHANGED
|
@@ -356,6 +356,7 @@ const _suggestedUserSources = [
|
|
|
356
356
|
'follows_you',
|
|
357
357
|
'featured',
|
|
358
358
|
'hyper_local',
|
|
359
|
+
'top_discovery',
|
|
359
360
|
];
|
|
360
361
|
const isSuggestedUserSource = (source) => (0, typeUtils_1.isInArray)(source, _suggestedUserSources);
|
|
361
362
|
exports.isSuggestedUserSource = isSuggestedUserSource;
|