hevy-shared 1.0.746 → 1.0.747
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 +3 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1680,6 +1680,9 @@ export interface AppLogLine {
|
|
|
1680
1680
|
tag?: string;
|
|
1681
1681
|
msg: string;
|
|
1682
1682
|
}
|
|
1683
|
+
export interface PostAppLogRequest {
|
|
1684
|
+
lines: AppLogLine[];
|
|
1685
|
+
}
|
|
1683
1686
|
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1684
1687
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1685
1688
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|