@xyo-network/bridge-http 2.110.9 → 2.110.11

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 (39) hide show
  1. package/dist/browser/HttpBridgeBase.d.cts.map +1 -1
  2. package/dist/browser/HttpBridgeBase.d.mts.map +1 -1
  3. package/dist/browser/HttpBridgeBase.d.ts.map +1 -1
  4. package/dist/browser/HttpBridgeFull.d.cts +1 -1
  5. package/dist/browser/HttpBridgeFull.d.cts.map +1 -1
  6. package/dist/browser/HttpBridgeFull.d.mts +1 -1
  7. package/dist/browser/HttpBridgeFull.d.mts.map +1 -1
  8. package/dist/browser/HttpBridgeFull.d.ts +1 -1
  9. package/dist/browser/HttpBridgeFull.d.ts.map +1 -1
  10. package/dist/browser/index-browser.cjs.map +1 -1
  11. package/dist/browser/index-browser.js.map +1 -1
  12. package/dist/neutral/HttpBridgeBase.d.cts.map +1 -1
  13. package/dist/neutral/HttpBridgeBase.d.mts.map +1 -1
  14. package/dist/neutral/HttpBridgeBase.d.ts.map +1 -1
  15. package/dist/neutral/HttpBridgeFull.d.cts +1 -1
  16. package/dist/neutral/HttpBridgeFull.d.cts.map +1 -1
  17. package/dist/neutral/HttpBridgeFull.d.mts +1 -1
  18. package/dist/neutral/HttpBridgeFull.d.mts.map +1 -1
  19. package/dist/neutral/HttpBridgeFull.d.ts +1 -1
  20. package/dist/neutral/HttpBridgeFull.d.ts.map +1 -1
  21. package/dist/neutral/index-browser.cjs.map +1 -1
  22. package/dist/neutral/index-browser.js.map +1 -1
  23. package/dist/node/HttpBridgeBase.d.cts.map +1 -1
  24. package/dist/node/HttpBridgeBase.d.mts.map +1 -1
  25. package/dist/node/HttpBridgeBase.d.ts.map +1 -1
  26. package/dist/node/HttpBridgeFull.d.cts +1 -1
  27. package/dist/node/HttpBridgeFull.d.cts.map +1 -1
  28. package/dist/node/HttpBridgeFull.d.mts +1 -1
  29. package/dist/node/HttpBridgeFull.d.mts.map +1 -1
  30. package/dist/node/HttpBridgeFull.d.ts +1 -1
  31. package/dist/node/HttpBridgeFull.d.ts.map +1 -1
  32. package/dist/node/index.cjs +10 -2
  33. package/dist/node/index.cjs.map +1 -1
  34. package/dist/node/index.js +10 -2
  35. package/dist/node/index.js.map +1 -1
  36. package/package.json +35 -32
  37. package/src/HttpBridgeBase.ts +0 -1
  38. package/src/HttpBridgeFull.ts +2 -0
  39. package/xy.config.ts +0 -1
@@ -61,7 +61,6 @@ export class HttpBridgeBase<TParams extends HttpBridgeParams> extends AbstractBr
61
61
  }
62
62
 
63
63
  get clientUrl() {
64
- // eslint-disable-next-line deprecation/deprecation
65
64
  return assertEx(this.config.client?.url ?? this.config.nodeUrl, () => 'No Url Set')
66
65
  }
67
66
 
@@ -188,10 +188,12 @@ export class HttpBridge<TParams extends HttpBridgeParams> extends HttpBridgeBase
188
188
 
189
189
  app.get<AddressPathParams, ModuleQueryResult>(
190
190
  '/:address',
191
+ // eslint-disable-next-line @typescript-eslint/no-misused-promises
191
192
  asyncHandler(async (req, res) => await this.handleGet(req, res)),
192
193
  )
193
194
  app.post<AddressPathParams, ModuleQueryResult, PostAddressRequestBody>(
194
195
  '/:address',
196
+ // eslint-disable-next-line @typescript-eslint/no-misused-promises
195
197
  asyncHandler(async (req, res) => await this.handlePost(req, res)),
196
198
  )
197
199
  return app
package/xy.config.ts CHANGED
@@ -13,5 +13,4 @@ const config: XyTsupConfig = {
13
13
  },
14
14
  }
15
15
 
16
- // eslint-disable-next-line import/no-default-export
17
16
  export default config