@nxtedition/lib 20.0.6 → 20.0.8

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 +2 -2
  2. package/package.json +1 -1
package/couch.js CHANGED
@@ -126,11 +126,11 @@ export function makeCouch(opts) {
126
126
  * @param {boolean} [options.descending=false] - Whether to return changes in descending order.
127
127
  * @param {boolean} [options.include_docs=false] - Whether to include the document with each change.
128
128
  * @param {number} [options.seq_interval=null] - The interval at which to return sequence numbers.
129
- * @param {string} [options.live=false] - The sequence number to start from.
129
+ * @param {boolean} [options.live=false] - The sequence number to start from.
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 {{ id: string, seq?: string, doc?: string, deleted?: boolean, changes: Array<{ rev: string }> }}
133
+ * @yields {Array<{ 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.6",
3
+ "version": "20.0.8",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",