hevy-shared 1.0.745 → 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 +10 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1673,6 +1673,16 @@ export interface CancelSubscriptionFeedback extends BaseFeedback {
|
|
|
1673
1673
|
};
|
|
1674
1674
|
}
|
|
1675
1675
|
export type Feedback = GeneralFeedback | FeatureRequestFeedback | BugReportFeedback | GetHelpFeedback | ReportCommentFeedback | ReportWorkoutFeedback | ReportProfileFeedback | RatingPromptFeedback | CancelSubscriptionFeedback;
|
|
1676
|
+
export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
|
|
1677
|
+
export interface AppLogLine {
|
|
1678
|
+
index: number;
|
|
1679
|
+
logLevel?: LogLevel;
|
|
1680
|
+
tag?: string;
|
|
1681
|
+
msg: string;
|
|
1682
|
+
}
|
|
1683
|
+
export interface PostAppLogRequest {
|
|
1684
|
+
lines: AppLogLine[];
|
|
1685
|
+
}
|
|
1676
1686
|
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1677
1687
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1678
1688
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|