@the-inkwell/shared 0.1.56 → 0.1.58

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.56",
3
+ "version": "0.1.58",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -6,8 +6,7 @@ export type AdminCandidacy = {
6
6
  currentStatus: any // TODO add this
7
7
 
8
8
  rating: number | null
9
- ratingTags: any
10
- ratingNotes: string | null
9
+ ratingNotes?: string | null
11
10
 
12
11
  source: any // TODO add this
13
12
 
@@ -19,6 +18,7 @@ export type AdminCandidacy = {
19
18
 
20
19
  referral: any // TODO add this
21
20
 
21
+ ratingTags?: any // TODO add this
22
22
  actions?: any // TODO add this
23
23
  feedbacks?: any // TODO add this
24
24
  notes?: any // TODO add this
@@ -88,7 +88,20 @@ export type AdminPersonRequestParams = Pick<AdminPerson, 'id'>
88
88
 
89
89
  export type AdminPersonListRequest = ListRequest
90
90
 
91
- export type AdminPersonListResponse = ListResponse<AdminPerson>
91
+ export type AdminPersonListResponse = ListResponse<
92
+ Pick<
93
+ AdminPerson,
94
+ | 'id'
95
+ | 'firstName'
96
+ | 'lastName'
97
+ | 'email'
98
+ | 'linkedInUrl'
99
+ | 'photoUrl'
100
+ | 'createdAt'
101
+ | 'updatedAt'
102
+ | 'source'
103
+ >
104
+ >
92
105
 
93
106
  // create
94
107