@hy-capital/api-habit-tracker-types 1.0.91 → 1.0.93
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/dist/habit.js +5 -5
- package/package.json +1 -1
- package/src/habit.ts +5 -5
package/dist/habit.js
CHANGED
@@ -209,13 +209,13 @@ exports.habitTypesByTopicType = {
|
|
209
209
|
},
|
210
210
|
{
|
211
211
|
id: 8,
|
212
|
-
name: '
|
213
|
-
description: '
|
214
|
-
difficulty:
|
212
|
+
name: 'Stretch yourself',
|
213
|
+
description: 'Entire body. Start from neck (top) to calves (bottom), 30 sec each.',
|
214
|
+
difficulty: 3,
|
215
215
|
topicType: 'Sleep',
|
216
216
|
habitTime: 'Evening',
|
217
|
-
habitDays:
|
218
|
-
minDaysPerWeek:
|
217
|
+
habitDays: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
|
218
|
+
minDaysPerWeek: 5,
|
219
219
|
possibleNotificationDescriptions: [
|
220
220
|
'Neck feeling tight? Time to unwind with your evening stretch. 🧘',
|
221
221
|
'Stretch sequence time! Your muscles will thank you tomorrow. 💪',
|
package/package.json
CHANGED
package/src/habit.ts
CHANGED
@@ -306,13 +306,13 @@ export const habitTypesByTopicType: Record<TopicType, HabitType[]> = {
|
|
306
306
|
},
|
307
307
|
{
|
308
308
|
id: 8,
|
309
|
-
name: '
|
310
|
-
description: '
|
311
|
-
difficulty:
|
309
|
+
name: 'Stretch yourself',
|
310
|
+
description: 'Entire body. Start from neck (top) to calves (bottom), 30 sec each.',
|
311
|
+
difficulty: 3,
|
312
312
|
topicType: 'Sleep',
|
313
313
|
habitTime: 'Evening',
|
314
|
-
habitDays:
|
315
|
-
minDaysPerWeek:
|
314
|
+
habitDays: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
|
315
|
+
minDaysPerWeek: 5,
|
316
316
|
possibleNotificationDescriptions: [
|
317
317
|
'Neck feeling tight? Time to unwind with your evening stretch. 🧘',
|
318
318
|
'Stretch sequence time! Your muscles will thank you tomorrow. 💪',
|