hevy-shared 1.0.934 → 1.0.936

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.
Files changed (2) hide show
  1. package/built/index.d.ts +11 -1
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -90,6 +90,7 @@ export interface UserAccountResponse {
90
90
  is_strava_connected: boolean;
91
91
  is_chatgpt_oauth_authorized: boolean;
92
92
  country_code?: string;
93
+ city?: string;
93
94
  follows_push_enabled: boolean;
94
95
  likes_push_enabled: boolean;
95
96
  comments_push_enabled: boolean;
@@ -111,7 +112,6 @@ export interface UserAccountResponse {
111
112
  email_verified: boolean;
112
113
  height_cm?: number;
113
114
  is_hevy_trainer_user: boolean;
114
- city?: string;
115
115
  }
116
116
  export interface CoachAppPushTarget {
117
117
  type: 'android' | 'ios';
@@ -1982,3 +1982,13 @@ export interface GetAccountsByEmailResponse {
1982
1982
  wellhub_email: string | null;
1983
1983
  }[];
1984
1984
  }
1985
+ export interface GetReportedUserSummaryBackofficeResponse {
1986
+ username: string;
1987
+ user_reports: {
1988
+ reported_by: string;
1989
+ reported_at: string;
1990
+ report_type: string | null;
1991
+ reason: string;
1992
+ data: unknown;
1993
+ }[];
1994
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.934",
3
+ "version": "1.0.936",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",