@the-inkwell/shared 0.1.117 → 0.1.118

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.117",
3
+ "version": "0.1.118",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -16,7 +16,11 @@ type AdminReferralMutator = ReferralsMutator
16
16
  // detail
17
17
 
18
18
  export type AdminReferralParams = Pick<AdminReferral, 'id'>
19
- export type AdminReferralResponse = AdminReferral
19
+ export type AdminReferralResponse = AdminReferral & {
20
+ candidacy: Pick<Candidacy, 'id' | 'status'> & {
21
+ person: Pick<Person, 'id' | 'firstName' | 'lastName' | 'photoUrl' | 'email'>
22
+ }
23
+ }
20
24
 
21
25
  // list
22
26