@nxtedition/lib 23.3.5 → 23.3.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 (3) hide show
  1. package/app.js +2 -2
  2. package/couch.js +5 -0
  3. package/package.json +1 -1
package/app.js CHANGED
@@ -1081,7 +1081,7 @@ export function makeApp(appConfig, onTerminate) {
1081
1081
  }
1082
1082
  }
1083
1083
 
1084
- return {
1084
+ return (globalThis.__nxt_lib_app = {
1085
1085
  ds,
1086
1086
  nxt,
1087
1087
  logger,
@@ -1100,5 +1100,5 @@ export function makeApp(appConfig, onTerminate) {
1100
1100
  serviceInstanceId,
1101
1101
  serviceWorkerId,
1102
1102
  signal: ac.signal,
1103
- }
1103
+ })
1104
1104
  }
package/couch.js CHANGED
@@ -1109,3 +1109,8 @@ export function request(url, opts) {
1109
1109
  })
1110
1110
  }
1111
1111
  }
1112
+
1113
+ globalThis.__nxt_lib_couch = {
1114
+ request,
1115
+ defaultDispatcher,
1116
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "23.3.5",
3
+ "version": "23.3.6",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",