@the-inkwell/shared 0.1.43 → 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.43",
3
+ "version": "0.1.45",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -45,12 +45,8 @@ export type AdminPerson = {
45
45
  sourcePerson?: AdminPersonIncluded | null
46
46
  sourcedPersons?: AdminPersonIncluded[]
47
47
 
48
- bestiedByPersons?: {
49
- byPerson: AdminPersonIncluded
50
- }[]
51
- bestPersons?: {
52
- toPerson: AdminPersonIncluded
53
- }[]
48
+ bestiedByPersons?: AdminPersonIncluded[]
49
+ bestPersons?: AdminPersonIncluded[]
54
50
 
55
51
  clientId: string | null
56
52
  client: any // TODO add this
@@ -68,13 +64,13 @@ export type AdminPerson = {
68
64
  skills?: any // TODO add this
69
65
  tags?: any // TODO add this
70
66
 
71
- deactivatedAt: string | null
72
- lastSignedInAt: string | null
67
+ deactivatedAt: Date | null
68
+ lastSignedInAt: Date | null
73
69
  signInCount: number
74
70
 
75
- deletedAt: string | null
76
- createdAt: string
77
- updatedAt: string
71
+ deletedAt: Date | null
72
+ createdAt: Date
73
+ updatedAt: Date
78
74
  }
79
75
 
80
76
  type AdminPersonIncluded = Pick<