hevy-shared 1.0.957 → 1.0.959

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 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -1987,3 +1987,14 @@ export interface GetAccountsByEmailResponse {
1987
1987
  wellhub_email: string | null;
1988
1988
  }[];
1989
1989
  }
1990
+ export interface UserReportSummaryBackoffice {
1991
+ reported_by: string;
1992
+ reported_at: string;
1993
+ report_type: string | null;
1994
+ reason: string;
1995
+ data: unknown;
1996
+ }
1997
+ export interface GetReportedUserSummaryBackofficeResponse {
1998
+ username: string;
1999
+ user_reports: UserReportSummaryBackoffice[];
2000
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.957",
3
+ "version": "1.0.959",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",