@the-inkwell/shared 0.1.31 → 0.1.32

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.31",
3
+ "version": "0.1.32",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -19,9 +19,9 @@ export type AdminCandidacy = {
19
19
 
20
20
  referral: any // TODO add this
21
21
 
22
- actions: any // TODO add this
23
- feedbacks: any // TODO add this
24
- notes: any // TODO add this
22
+ actions?: any // TODO add this
23
+ feedbacks?: any // TODO add this
24
+ notes?: any // TODO add this
25
25
 
26
26
  deletedAt: string | null
27
27
  createdAt: string
@@ -43,24 +43,24 @@ export type AdminPerson = {
43
43
 
44
44
  sourcePersonId: string | null
45
45
  sourcePerson: AdminPerson | null
46
- sourcedPersons: AdminPerson[] | null
46
+ sourcedPersons?: AdminPerson[] | null
47
47
 
48
- bestiedByPersons: AdminPerson[] | null
49
- bestPersons: AdminPerson[]
48
+ bestiedByPersons?: AdminPerson[] | null
49
+ bestPersons?: AdminPerson[]
50
50
 
51
51
  clientId: string | null
52
52
  client: any // TODO add this
53
53
 
54
- actions: any // TODO add this
54
+ actions?: any // TODO add this
55
55
  admin: any // TODO add this
56
- candidacies: AdminCandidacy[] | null
56
+ candidacies?: AdminCandidacy[] | null
57
57
  clubs: any // TODO add this
58
- conversations: any // TODO add this
59
- enrichment: any // TODO add this
60
- messages: any // TODO add this
58
+ conversations?: any // TODO add this
59
+ enrichment?: any // TODO add this
60
+ messages?: any // TODO add this
61
61
  networks: any // TODO add this
62
- notes: any // TODO add this
63
- referrals: any // TODO add this
62
+ notes?: any // TODO add this
63
+ referrals?: any // TODO add this
64
64
  skills: any // TODO add this
65
65
  tags: any // TODO add this
66
66