shelving 1.31.0 → 1.31.1

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/db/Database.d.ts +1 -1
  2. package/package.json +1 -1
package/db/Database.d.ts CHANGED
@@ -60,7 +60,7 @@ export declare class DataQuery<T extends Data = Data> extends Query<T> implement
60
60
  * @return Entry in `[id, data]` format for the first document.
61
61
  * @throws RequiredError if there were no results for this query.
62
62
  */
63
- get first(): Entry<T> | undefined | PromiseLike<Entry<T> | undefined>;
63
+ get first(): Entry<T> | PromiseLike<Entry<T>>;
64
64
  /**
65
65
  * Subscribe to all matching documents.
66
66
  * - `next()` is called once with the initial results, and again any time the results change.
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "state-management",
12
12
  "query-builder"
13
13
  ],
14
- "version": "1.31.0",
14
+ "version": "1.31.1",
15
15
  "repository": "https://github.com/dhoulb/shelving",
16
16
  "author": "Dave Houlbrooke <dave@shax.com>",
17
17
  "license": "0BSD",