@timothyw/pat-common 1.0.89 → 1.0.90

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.
@@ -10,7 +10,7 @@ export declare enum HabitFrequency {
10
10
  export declare enum HabitEntryStatus {
11
11
  COMPLETED = "completed",
12
12
  EXCUSED = "excused",
13
- INCOMPLETE = "incomplete"
13
+ MISSED = "missed"
14
14
  }
15
15
  export interface HabitEntryData {
16
16
  _id: HabitEntryId;
@@ -13,7 +13,7 @@ var HabitEntryStatus;
13
13
  (function (HabitEntryStatus) {
14
14
  HabitEntryStatus["COMPLETED"] = "completed";
15
15
  HabitEntryStatus["EXCUSED"] = "excused";
16
- HabitEntryStatus["INCOMPLETE"] = "incomplete";
16
+ HabitEntryStatus["MISSED"] = "missed";
17
17
  })(HabitEntryStatus || (exports.HabitEntryStatus = HabitEntryStatus = {}));
18
18
  const toHabit = (data, entries, stats) => {
19
19
  return {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@timothyw/pat-common",
3
3
  "description": "",
4
4
  "author": "Timothy Washburn",
5
- "version": "1.0.89",
5
+ "version": "1.0.90",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -12,7 +12,7 @@ export enum HabitFrequency {
12
12
  export enum HabitEntryStatus {
13
13
  COMPLETED = 'completed',
14
14
  EXCUSED = 'excused',
15
- INCOMPLETE = 'incomplete'
15
+ MISSED = 'missed'
16
16
  }
17
17
 
18
18
  export interface HabitEntryData {