@nxtedition/lib 19.8.20 → 19.8.21

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 -2
  2. package/package.json +1 -1
package/couch.js CHANGED
@@ -488,11 +488,10 @@ export function makeCouch(opts) {
488
488
  method,
489
489
  body: typeof body === 'object' && body ? JSON.stringify(body) : body,
490
490
  headers,
491
- dispatcher: client,
492
491
  }
493
492
 
494
493
  return new Promise((resolve, reject) =>
495
- dispatch(req, {
494
+ dispatch(client, req, {
496
495
  resolve,
497
496
  reject,
498
497
  signal,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "19.8.20",
3
+ "version": "19.8.21",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",