hevy-shared 1.0.580 → 1.0.581
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 +8 -4
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1634,11 +1634,15 @@ export interface GoogleCoachWebSignInRequest {
|
|
|
1634
1634
|
code: string;
|
|
1635
1635
|
invite_short_id?: string;
|
|
1636
1636
|
}
|
|
1637
|
-
export interface RawUserPushNotificationSettings {
|
|
1638
|
-
comment_replies: boolean | null;
|
|
1639
|
-
comment_likes: boolean | null;
|
|
1640
|
-
}
|
|
1641
1637
|
export interface UserPushNotificationSettings {
|
|
1642
1638
|
comment_replies: boolean;
|
|
1643
1639
|
comment_likes: boolean;
|
|
1644
1640
|
}
|
|
1641
|
+
export interface UserPushNotificationSettingsResponse {
|
|
1642
|
+
comment_replies: boolean | null;
|
|
1643
|
+
comment_likes: boolean | null;
|
|
1644
|
+
}
|
|
1645
|
+
export interface UserPushNotificationSettingsUpdate {
|
|
1646
|
+
comment_replies?: boolean;
|
|
1647
|
+
comment_likes?: boolean;
|
|
1648
|
+
}
|