@the-inkwell/shared 0.1.54 → 0.1.55

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.54",
3
+ "version": "0.1.55",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -1,4 +1,4 @@
1
- import { type ListResponse } from '../../shared'
1
+ import { ListRequest, type ListResponse } from '../../shared'
2
2
  import { type AdminPerson } from '../persons'
3
3
 
4
4
  export type AdminCandidacy = {
@@ -28,7 +28,7 @@ export type AdminCandidacy = {
28
28
  updatedAt: string
29
29
  }
30
30
 
31
- export type AdminCandidacyListRequest = AdminCandidacy
31
+ export type AdminCandidacyListRequest = ListRequest
32
32
 
33
33
  export type AdminCandidacyListResponse = ListResponse<AdminCandidacy>
34
34