@meith/search 0.21.2 → 0.22.0

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/ports.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/search",
3
- "version": "0.21.2",
3
+ "version": "0.22.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,6 +19,6 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@meith/core": "0.21.2"
22
+ "@meith/core": "0.22.0"
23
23
  }
24
24
  }
package/src/ports.ts CHANGED
@@ -20,7 +20,6 @@ export interface SearchQuery {
20
20
  readonly sort: SearchSort
21
21
  readonly limit: number
22
22
  readonly after: SearchCursor | null
23
- /** Rows to skip, for a numbered page. Ignored when `after` is set. */
24
23
  readonly offset?: number
25
24
  }
26
25