@the-inkwell/shared 0.1.49 → 0.1.51

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.49",
3
+ "version": "0.1.51",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -10,6 +10,6 @@ export type ListRequest<
10
10
  > = TAdditional & {
11
11
  take: number
12
12
  skip: number
13
- sort: TSort | null
14
- filter: TFilter | null
13
+ sort?: TSort
14
+ filter?: TFilter
15
15
  }