@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 CHANGED
@@ -209,13 +209,13 @@ exports.habitTypesByTopicType = {
209
209
  },
210
210
  {
211
211
  id: 8,
212
- name: 'No late-night snacking',
213
- description: 'Stop eating at least 2 hours before bed. Let your body rest, not digest.',
214
- difficulty: 2,
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: exports.allHabitDays,
218
- minDaysPerWeek: 7,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.91",
3
+ "version": "1.0.93",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
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: 'No late-night snacking',
310
- description: 'Stop eating at least 2 hours before bed. Let your body rest, not digest.',
311
- difficulty: 2,
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: allHabitDays,
315
- minDaysPerWeek: 7,
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. 💪',