@nxtedition/lib 20.0.5 → 20.0.6

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/couch.js +1 -1
  2. package/package.json +1 -1
package/couch.js CHANGED
@@ -130,7 +130,7 @@ export function makeCouch(opts) {
130
130
  * @param {number} [options.heartbeat=60000] - The interval at which to send a heartbeat.
131
131
  * @param {function} [options.retry=null] - The function to retry the request on error.
132
132
  * @param {string} [options.since=null] - The sequence number to start from.
133
- * @yields {Object} The changes from the CouchDB changes feed.
133
+ * @yields {{ id: string, seq?: string, doc?: string, deleted?: boolean, changes: Array<{ rev: string }> }}
134
134
  */
135
135
  async function* changes({ client = defaultClient, signal = null, ...options } = {}) {
136
136
  const params = {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "20.0.5",
3
+ "version": "20.0.6",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",