@the-inkwell/shared 0.1.47 → 0.1.49

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