@the-inkwell/shared 0.1.159 → 0.1.160

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.159",
3
+ "version": "0.1.160",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -8,8 +8,8 @@ export type ListRequest<
8
8
  TFilter = unknown,
9
9
  TAdditional = unknown
10
10
  > = TAdditional & {
11
- limit: 10 | 50 | 100 | 200 | 500
12
- offset: number
11
+ limit?: 10 | 50 | 100 | 200 | 500
12
+ offset?: number
13
13
  sort?: TSort
14
14
  filter?: TFilter
15
15
  }