@the-inkwell/shared 0.1.36 → 0.1.37

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.36",
3
+ "version": "0.1.37",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -41,8 +41,8 @@ export type AdminPerson = {
41
41
  gender: any // TODO add this
42
42
  howDidYouHearAboutUs: string | null
43
43
 
44
- sourcePersonId: string | null
45
- sourcePerson: AdminPerson | null
44
+ sourcePersonId?: string | null
45
+ sourcePerson?: AdminPerson | null
46
46
  sourcedPersons?: AdminPerson[]
47
47
 
48
48
  bestiedByPersons?: AdminPerson[]
@@ -54,15 +54,15 @@ export type AdminPerson = {
54
54
  actions?: any // TODO add this
55
55
  admin?: any // TODO add this
56
56
  candidacies?: AdminCandidacy[]
57
- clubs: any // TODO add this
57
+ clubs?: any // TODO add this
58
58
  conversations?: any // TODO add this
59
59
  enrichment?: any // TODO add this
60
60
  messages?: any // TODO add this
61
- networks: any // TODO add this
61
+ networks?: any // TODO add this
62
62
  notes?: any // TODO add this
63
63
  referrals?: any // TODO add this
64
- skills: any // TODO add this
65
- tags: any // TODO add this
64
+ skills?: any // TODO add this
65
+ tags?: any // TODO add this
66
66
 
67
67
  deactivatedAt: string | null
68
68
  lastSignedInAt: string | null