@the-inkwell/shared 0.1.86 → 0.1.88

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.86",
3
+ "version": "0.1.88",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -4,7 +4,9 @@ import Client, {
4
4
  ClientsMutator
5
5
  } from '../../../_schema/Clients'
6
6
 
7
- export type AdminClient = Client
7
+ export type AdminClient = Client & {
8
+ positionsCount: number
9
+ }
8
10
  type AdminClientInitializer = ClientsInitializer
9
11
  type AdminClientMutator = ClientsMutator
10
12