@timothyw/pat-common 1.0.71 → 1.0.73

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.
@@ -4,6 +4,7 @@ export interface PersonProperty {
4
4
  value: string;
5
5
  }
6
6
  export interface PersonNoteData {
7
+ _id: PersonNoteId;
7
8
  content: string;
8
9
  createdAt: Date;
9
10
  updatedAt: Date;
@@ -24,5 +25,5 @@ export interface Person {
24
25
  updatedAt: Date;
25
26
  name: string;
26
27
  properties: PersonProperty[];
27
- notes: PersonNoteId[];
28
+ notes: PersonNoteData[];
28
29
  }
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.71",
5
+ "version": "1.0.73",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -6,6 +6,7 @@ export interface PersonProperty {
6
6
  }
7
7
 
8
8
  export interface PersonNoteData {
9
+ _id: PersonNoteId;
9
10
  content: string;
10
11
  createdAt: Date;
11
12
  updatedAt: Date;
@@ -28,5 +29,5 @@ export interface Person {
28
29
  updatedAt: Date;
29
30
  name: string;
30
31
  properties: PersonProperty[];
31
- notes: PersonNoteId[];
32
+ notes: PersonNoteData[];
32
33
  }