@hy-capital/api-habit-tracker-types 1.0.65 → 1.0.66

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.d.ts CHANGED
@@ -78,6 +78,9 @@ export interface HabitStats {
78
78
  streak: number;
79
79
  };
80
80
  totalHabitsCompleted: number;
81
+ currentOverallStreak: number;
82
+ activeDays: number;
83
+ missedDays: number;
81
84
  }
82
85
  export interface HabitsResponse {
83
86
  habits: DbHabit[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
package/src/habit.ts CHANGED
@@ -131,6 +131,9 @@ export interface HabitStats {
131
131
  streak: number
132
132
  };
133
133
  totalHabitsCompleted: number;
134
+ currentOverallStreak: number;
135
+ activeDays: number;
136
+ missedDays: number;
134
137
  }
135
138
 
136
139
  export interface HabitsResponse {