@the-inkwell/shared 0.1.57 → 0.1.59

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.57",
3
+ "version": "0.1.59",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -30,4 +30,9 @@ export type AdminCandidacy = {
30
30
 
31
31
  export type AdminCandidacyListRequest = ListRequest
32
32
 
33
- export type AdminCandidacyListResponse = ListResponse<AdminCandidacy>
33
+ export type AdminCandidacyListResponse = ListResponse<
34
+ Pick<
35
+ AdminCandidacy,
36
+ 'id' | 'createdAt' | 'currentStatus' | 'position' | 'person'
37
+ >
38
+ >
@@ -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