hevy-shared 1.0.888 → 1.0.889

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 +2 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -313,9 +313,11 @@ export type BackofficeUserResponse = BackofficeExistingUserResponse | Backoffice
313
313
  export type BackofficeFeaturedUser = Pick<BackofficeExistingUserResponse, 'id' | 'username' | 'profile_pic' | 'private_profile' | 'last_workout_at'> & {
314
314
  followers_count: number;
315
315
  };
316
+ export type BanType = 'suspicious' | 'warned' | 'restricted';
316
317
  export type BackofficeShadowBannedUser = Pick<BackofficeExistingUserResponse, 'id' | 'username' | 'profile_pic'> & {
317
318
  shadow_ban_metadata: UserShadowBanMetadata;
318
319
  shadow_banned_at: string;
320
+ ban_type: BanType;
319
321
  };
320
322
  export interface BackofficeUserComment {
321
323
  workout_username: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.888",
3
+ "version": "1.0.889",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",