hevy-shared 1.0.574 → 1.0.576

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 CHANGED
@@ -738,7 +738,6 @@ export interface WorkoutComment {
738
738
  like_count: number;
739
739
  is_liked_by_user: boolean;
740
740
  parent_comment_id?: number;
741
- replying_to_comment_id?: number;
742
741
  }
743
742
  export interface WorkoutImage {
744
743
  type: 'image';
package/built/index.js CHANGED
@@ -213,14 +213,12 @@ const isPublicWorkout = (x) => {
213
213
  };
214
214
  exports.isPublicWorkout = isPublicWorkout;
215
215
  const isHeartRateSamples = (x) => {
216
- if (!x)
216
+ if (!x || !Array.isArray(x))
217
217
  return false;
218
- if (Array.isArray(x)) {
219
- for (const sample of x) {
220
- if (typeof sample.timestamp_ms !== 'number' ||
221
- typeof sample.bpm !== 'number') {
222
- return false;
223
- }
218
+ for (const sample of x) {
219
+ if (typeof sample.timestamp_ms !== 'number' ||
220
+ typeof sample.bpm !== 'number') {
221
+ return false;
224
222
  }
225
223
  }
226
224
  return true;
@@ -232,8 +230,8 @@ const isWorkoutBiometrics = (x) => {
232
230
  const maybeCalories = x.total_calories;
233
231
  const maybeHeartRateSamples = x.heart_rate_samples;
234
232
  const caloriesAreValid = !maybeCalories || (typeof maybeCalories === 'number' && maybeCalories >= 0);
235
- return ((caloriesAreValid && !maybeHeartRateSamples) ||
236
- (0, exports.isHeartRateSamples)(maybeHeartRateSamples));
233
+ const heartSamplesAreValid = !maybeHeartRateSamples || (0, exports.isHeartRateSamples)(maybeHeartRateSamples);
234
+ return caloriesAreValid && heartSamplesAreValid;
237
235
  };
238
236
  exports.isWorkoutBiometrics = isWorkoutBiometrics;
239
237
  exports.measurementsList = [
@@ -7,8 +7,8 @@
7
7
  */
8
8
  import { ClientsCoachData, Program } from '.';
9
9
  import { HevyChatUpdateMobilePushData } from './chat';
10
- export type Notification = WorkoutCompleteNotification | WorkoutMentionNotification | WorkoutCommentNotification | WorkoutCommentDiscussionNotification | WorkoutCommentMentionNotification | WorkoutCommentReplyNotification | WorkoutLikeNotification | WorkoutCommentLikeNotification | FollowNotification | FollowRequestNotification | AcceptFollowRequestNotification | CoachClientInviteNotification | ContactOnHevyNotification;
11
- export type NotificationType = 'workout-complete' | 'workout-mention' | 'workout-comment' | 'workout-comment-discussion' | 'workout-comment-mention' | 'workout-comment-reply' | 'workout-like' | 'workout-comment-like' | 'follow' | 'follow-request' | 'accept-follow-request' | 'coach-client-invite' | 'contact-on-hevy';
10
+ export type Notification = WorkoutCompleteNotification | WorkoutMentionNotification | WorkoutCommentNotification | WorkoutCommentReplyNotification | WorkoutCommentMentionNotification | WorkoutLikeNotification | FollowNotification | FollowRequestNotification | AcceptFollowRequestNotification | CoachClientInviteNotification | ContactOnHevyNotification;
11
+ export type NotificationType = 'workout-complete' | 'workout-mention' | 'workout-comment' | 'workout-comment-reply' | 'workout-comment-mention' | 'workout-like' | 'follow' | 'follow-request' | 'accept-follow-request' | 'coach-client-invite' | 'contact-on-hevy';
12
12
  export interface BaseNotification {
13
13
  id: number;
14
14
  type: NotificationType;
@@ -48,14 +48,14 @@ export interface WorkoutCommentNotification extends BaseNotification {
48
48
  export interface WorkoutCommentMobilePushData extends BaseMobilePushData {
49
49
  type: 'workout-comment';
50
50
  }
51
- export interface WorkoutCommentDiscussionNotification extends BaseNotification {
52
- type: 'workout-comment-discussion';
51
+ export interface WorkoutCommentReplyNotification extends BaseNotification {
52
+ type: 'workout-comment-reply';
53
53
  workout_id: string;
54
54
  workout_title: string;
55
55
  comment: string;
56
56
  }
57
- export interface WorkoutCommentDiscussionMobilePushData extends BaseMobilePushData {
58
- type: 'workout-comment-discussion';
57
+ export interface WorkoutCommentReplyMobilePushData extends BaseMobilePushData {
58
+ type: 'workout-comment-reply';
59
59
  }
60
60
  export interface WorkoutCommentMentionNotification extends BaseNotification {
61
61
  type: 'workout-comment-mention';
@@ -66,15 +66,6 @@ export interface WorkoutCommentMentionNotification extends BaseNotification {
66
66
  export interface WorkoutCommentMentionMobilePushData extends BaseMobilePushData {
67
67
  type: 'workout-comment-mention';
68
68
  }
69
- export interface WorkoutCommentReplyNotification extends BaseNotification {
70
- type: 'workout-comment-reply';
71
- workout_id: string;
72
- workout_title: string;
73
- comment: string;
74
- }
75
- export interface WorkoutCommentReplyMobilePushData extends BaseMobilePushData {
76
- type: 'workout-comment-reply';
77
- }
78
69
  export interface WorkoutLikeNotification extends BaseNotification {
79
70
  type: 'workout-like';
80
71
  workout_id: string;
@@ -83,16 +74,6 @@ export interface WorkoutLikeNotification extends BaseNotification {
83
74
  export interface WorkoutLikeMobilePushData extends BaseMobilePushData {
84
75
  type: 'workout-like';
85
76
  }
86
- export interface WorkoutCommentLikeNotification extends BaseNotification {
87
- type: 'workout-comment-like';
88
- workout_id: string;
89
- workout_title: string;
90
- comment_id: number;
91
- comment: string;
92
- }
93
- export interface WorkoutCommentLikeMobilePushData extends BaseMobilePushData {
94
- type: 'workout-comment-like';
95
- }
96
77
  export interface FollowNotification extends BaseNotification {
97
78
  type: 'follow';
98
79
  }
@@ -192,4 +173,4 @@ export interface MonthlyReportMobilePushData extends BaseMobilePushData {
192
173
  type: 'monthly-report';
193
174
  deeplink: string;
194
175
  }
195
- export type MobilePushData = ChatUpdateMobilePushData | SyncCustomExercisesAndCoachCustomizationsMobilePushData | SyncRoutineFoldersMobilePushData | SyncRoutinesMobilePushData | ProStatusChangedPushMobilePushData | HevyProSubscriptionRenewedMobilePushData | CoachProgramChangedMobilePushData | CoachDataChangedMobilePushData | ContactOnHevyMobilePushData | CoachClientInviteMobilePushData | AcceptFollowRequestMobilePushData | FollowRequestMobilePushData | FollowMobilePushData | WorkoutLikeMobilePushData | WorkoutCommentLikeMobilePushData | WorkoutCommentMentionMobilePushData | WorkoutCommentDiscussionMobilePushData | WorkoutCommentReplyMobilePushData | WorkoutCommentMobilePushData | WorkoutMentionMobilePushData | WorkoutCompleteMobilePushData | CoachProgramFinishesNextWeekMobilePushData | CoachProgramStartsTodayMobilePushData | CoachLoggedYourWorkoutMobilePushData | CoachLoggedYourMeasurementsMobilePushData | MonthlyReportMobilePushData;
176
+ export type MobilePushData = ChatUpdateMobilePushData | SyncCustomExercisesAndCoachCustomizationsMobilePushData | SyncRoutineFoldersMobilePushData | SyncRoutinesMobilePushData | ProStatusChangedPushMobilePushData | HevyProSubscriptionRenewedMobilePushData | CoachProgramChangedMobilePushData | CoachDataChangedMobilePushData | ContactOnHevyMobilePushData | CoachClientInviteMobilePushData | AcceptFollowRequestMobilePushData | FollowRequestMobilePushData | FollowMobilePushData | WorkoutLikeMobilePushData | WorkoutCommentMentionMobilePushData | WorkoutCommentReplyMobilePushData | WorkoutCommentMobilePushData | WorkoutMentionMobilePushData | WorkoutCompleteMobilePushData | CoachProgramFinishesNextWeekMobilePushData | CoachProgramStartsTodayMobilePushData | CoachLoggedYourWorkoutMobilePushData | CoachLoggedYourMeasurementsMobilePushData | MonthlyReportMobilePushData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.574",
3
+ "version": "1.0.576",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",