@nxtedition/lib 23.10.1 → 23.10.2

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 (3) hide show
  1. package/app.js +1 -1
  2. package/couch.d.ts +1 -0
  3. package/package.json +1 -1
package/app.js CHANGED
@@ -632,7 +632,7 @@ export function makeApp(appConfig, onTerminate) {
632
632
  ),
633
633
  rx.map(([serviceStats, appStats, undiciStats]) => ({
634
634
  ...appStats,
635
- undici: undici$,
635
+ undici: undiciStats,
636
636
  [serviceName]: serviceStats,
637
637
  })),
638
638
  rx.retryWhen((err$) =>
package/couch.d.ts CHANGED
@@ -16,6 +16,7 @@ export interface CouchRequestOptions<Stream extends boolean = false> {
16
16
  body?: unknown
17
17
  headersTimeout?: number
18
18
  bodyTimeout?: number
19
+ dispatcher: undici.Dispatcher
19
20
  query?: {
20
21
  startkey?: string
21
22
  endkey?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "23.10.1",
3
+ "version": "23.10.2",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",