@timothyw/pat-common 1.0.61 → 1.0.62

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.
@@ -23,8 +23,8 @@ export interface HabitData {
23
23
  _id: HabitId;
24
24
  userId: UserId;
25
25
  name: string;
26
- description?: string;
27
- notes?: string;
26
+ description?: string | null;
27
+ notes?: string | null;
28
28
  frequency: HabitFrequency;
29
29
  rolloverTime: string;
30
30
  firstDay: DateOnlyString;
@@ -6,7 +6,7 @@ export interface ItemData {
6
6
  updatedAt: Date;
7
7
  name: string;
8
8
  dueDate?: Date | null;
9
- notes?: string;
9
+ notes?: string | null;
10
10
  completed: boolean;
11
11
  urgent: boolean;
12
12
  category?: string | null;
@@ -5,7 +5,7 @@ export interface TaskData {
5
5
  createdAt: Date;
6
6
  updatedAt: Date;
7
7
  name: string;
8
- notes?: string;
8
+ notes?: string | null;
9
9
  completed: boolean;
10
10
  taskListId: TaskListId;
11
11
  }
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.61",
5
+ "version": "1.0.62",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -28,8 +28,8 @@ export interface HabitData {
28
28
  _id: HabitId;
29
29
  userId: UserId;
30
30
  name: string;
31
- description?: string;
32
- notes?: string;
31
+ description?: string | null;
32
+ notes?: string | null;
33
33
  frequency: HabitFrequency;
34
34
  rolloverTime: string;
35
35
  firstDay: DateOnlyString;
@@ -8,7 +8,7 @@ export interface ItemData {
8
8
 
9
9
  name: string;
10
10
  dueDate?: Date | null;
11
- notes?: string;
11
+ notes?: string | null;
12
12
  completed: boolean;
13
13
  urgent: boolean;
14
14
  category?: string | null;
@@ -6,7 +6,7 @@ export interface TaskData {
6
6
  createdAt: Date;
7
7
  updatedAt: Date;
8
8
  name: string;
9
- notes?: string;
9
+ notes?: string | null;
10
10
  completed: boolean;
11
11
  taskListId: TaskListId;
12
12
  }