hevy-shared 1.0.700 → 1.0.701

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 +3 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -72,6 +72,7 @@ export interface AccountResponse {
72
72
  is_coached: boolean;
73
73
  birthday?: string;
74
74
  sex?: Sex;
75
+ height_cm?: number;
75
76
  }
76
77
  export interface UserAccountResponse {
77
78
  id: string;
@@ -106,6 +107,7 @@ export interface UserAccountResponse {
106
107
  sex?: Sex;
107
108
  email_consent: boolean;
108
109
  email_verified: boolean;
110
+ height_cm?: number;
109
111
  }
110
112
  export interface CoachAppPushTarget {
111
113
  type: 'android' | 'ios';
@@ -160,6 +162,7 @@ export interface AccountUpdate {
160
162
  accepted_terms_and_conditions?: boolean;
161
163
  sex?: Sex;
162
164
  birthday?: string;
165
+ height_cm?: number;
163
166
  }
164
167
  export interface AppleSignUpRequest {
165
168
  email?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.700",
3
+ "version": "1.0.701",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",