@the-inkwell/shared 0.1.92 → 0.1.94

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.92",
3
+ "version": "0.1.94",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -6,8 +6,8 @@ import Clients from '../../../_schema/Clients'
6
6
  import { ListRequest, ListResponse } from '../../../utils'
7
7
 
8
8
  export type AdminPosition = Positions & {
9
- client: Pick<Clients, 'id' | 'name'>
10
- _openReferralsCount: number
9
+ client: Pick<Clients, 'id' | 'name'> | null
10
+ _referralsCount: number
11
11
  _openCandidaciesCount: number
12
12
  }
13
13
  type AdminPositionInitializer = PositionsInitializer