@the-inkwell/shared 0.1.21 → 0.1.23

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.21",
3
+ "version": "0.1.23",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -9,6 +9,7 @@ export type AdminPerson = {
9
9
  email: string
10
10
  phone: string | null
11
11
  linkedInUrl: string | null
12
+ photoUrl: string | null
12
13
  createdAt: Date
13
14
  updatedAt: Date
14
15
  // TODO add this
@@ -20,6 +21,8 @@ export type AdminPerson = {
20
21
 
21
22
  export type AdminPersonResponse = AdminPerson
22
23
 
24
+ export type AdminPersonRequestParams = AdminPerson['id']
25
+
23
26
  // list
24
27
 
25
28
  export type AdminPersonsListRequest = {