@the-inkwell/shared 0.1.44 → 0.1.45

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -64,13 +64,13 @@ export type AdminPerson = {
64
64
  skills?: any // TODO add this
65
65
  tags?: any // TODO add this
66
66
 
67
- deactivatedAt: string | null
68
- lastSignedInAt: string | null
67
+ deactivatedAt: Date | null
68
+ lastSignedInAt: Date | null
69
69
  signInCount: number
70
70
 
71
- deletedAt: string | null
72
- createdAt: string
73
- updatedAt: string
71
+ deletedAt: Date | null
72
+ createdAt: Date
73
+ updatedAt: Date
74
74
  }
75
75
 
76
76
  type AdminPersonIncluded = Pick<