hevy-shared 1.0.1062 → 1.0.1063
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 -1
- package/built/index.js +0 -1
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1500,6 +1500,7 @@ export interface UserMetadataRequest {
|
|
|
1500
1500
|
googleAdId?: string;
|
|
1501
1501
|
appleIdfv?: string;
|
|
1502
1502
|
adjustAdId?: string;
|
|
1503
|
+
timezone?: string;
|
|
1503
1504
|
}
|
|
1504
1505
|
export type NetworkType = 'wifi' | 'cellular' | 'unknown';
|
|
1505
1506
|
export interface UserMetadataResponse {
|
|
@@ -1772,7 +1773,7 @@ export interface BackofficeAppLogIndexResponse {
|
|
|
1772
1773
|
fileSizeBytes: number;
|
|
1773
1774
|
}[];
|
|
1774
1775
|
}
|
|
1775
|
-
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"
|
|
1776
|
+
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1776
1777
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1777
1778
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|
|
1778
1779
|
export type SuggestedUserLabel = 'contact' | 'mutual_friends' | 'follows_you' | 'featured';
|
package/built/index.js
CHANGED
|
@@ -356,7 +356,6 @@ const _suggestedUserSources = [
|
|
|
356
356
|
'follows_you',
|
|
357
357
|
'featured',
|
|
358
358
|
'hyper_local',
|
|
359
|
-
'top_discovery',
|
|
360
359
|
];
|
|
361
360
|
const isSuggestedUserSource = (source) => (0, typeUtils_1.isInArray)(source, _suggestedUserSources);
|
|
362
361
|
exports.isSuggestedUserSource = isSuggestedUserSource;
|