hevy-shared 1.0.688 → 1.0.690
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 +1 -3
- package/built/notifications.d.ts +1 -1
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -105,8 +105,7 @@ export interface UserAccountResponse {
|
|
|
105
105
|
birthday?: string;
|
|
106
106
|
sex?: Sex;
|
|
107
107
|
email_consent: boolean;
|
|
108
|
-
|
|
109
|
-
sensitive_api_requires_verification: boolean;
|
|
108
|
+
email_verified: boolean;
|
|
110
109
|
}
|
|
111
110
|
export interface CoachAppPushTarget {
|
|
112
111
|
type: 'android' | 'ios';
|
|
@@ -1394,7 +1393,6 @@ export type PlateCalculatorBar = {
|
|
|
1394
1393
|
title: string;
|
|
1395
1394
|
weight: number;
|
|
1396
1395
|
unit: WeightUnit;
|
|
1397
|
-
default_bar: boolean;
|
|
1398
1396
|
};
|
|
1399
1397
|
export type PlateCalculatorPlate = {
|
|
1400
1398
|
id: number;
|
package/built/notifications.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface BaseMobilePushData {
|
|
|
20
20
|
type: MobilePushDataType;
|
|
21
21
|
deeplink?: string;
|
|
22
22
|
profilePic?: string;
|
|
23
|
-
|
|
23
|
+
cue_notification_group_identifier?: string;
|
|
24
24
|
additionalHevyData?: any;
|
|
25
25
|
}
|
|
26
26
|
export interface WorkoutCompleteNotification extends BaseNotification {
|