hevy-shared 1.0.744 → 1.0.746
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 +7 -0
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1673,6 +1673,13 @@ 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
|
+
}
|
|
1676
1683
|
declare const _suggestedUserSources: readonly ["popular", "local", "contact", "mutual_follows", "follows_you", "featured", "hyper_local"];
|
|
1677
1684
|
export type SuggestedUserSource = Lookup<typeof _suggestedUserSources>;
|
|
1678
1685
|
export declare const isSuggestedUserSource: (source: string) => source is SuggestedUserSource;
|