@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.
- package/dist/browser/HttpBridgeBase.d.cts.map +1 -1
- package/dist/browser/HttpBridgeBase.d.mts.map +1 -1
- package/dist/browser/HttpBridgeBase.d.ts.map +1 -1
- package/dist/browser/HttpBridgeFull.d.cts +1 -1
- package/dist/browser/HttpBridgeFull.d.cts.map +1 -1
- package/dist/browser/HttpBridgeFull.d.mts +1 -1
- package/dist/browser/HttpBridgeFull.d.mts.map +1 -1
- package/dist/browser/HttpBridgeFull.d.ts +1 -1
- package/dist/browser/HttpBridgeFull.d.ts.map +1 -1
- package/dist/browser/index-browser.cjs.map +1 -1
- package/dist/browser/index-browser.js.map +1 -1
- package/dist/neutral/HttpBridgeBase.d.cts.map +1 -1
- package/dist/neutral/HttpBridgeBase.d.mts.map +1 -1
- package/dist/neutral/HttpBridgeBase.d.ts.map +1 -1
- package/dist/neutral/HttpBridgeFull.d.cts +1 -1
- package/dist/neutral/HttpBridgeFull.d.cts.map +1 -1
- package/dist/neutral/HttpBridgeFull.d.mts +1 -1
- package/dist/neutral/HttpBridgeFull.d.mts.map +1 -1
- package/dist/neutral/HttpBridgeFull.d.ts +1 -1
- package/dist/neutral/HttpBridgeFull.d.ts.map +1 -1
- package/dist/neutral/index-browser.cjs.map +1 -1
- package/dist/neutral/index-browser.js.map +1 -1
- package/dist/node/HttpBridgeBase.d.cts.map +1 -1
- package/dist/node/HttpBridgeBase.d.mts.map +1 -1
- package/dist/node/HttpBridgeBase.d.ts.map +1 -1
- package/dist/node/HttpBridgeFull.d.cts +1 -1
- package/dist/node/HttpBridgeFull.d.cts.map +1 -1
- package/dist/node/HttpBridgeFull.d.mts +1 -1
- package/dist/node/HttpBridgeFull.d.mts.map +1 -1
- package/dist/node/HttpBridgeFull.d.ts +1 -1
- package/dist/node/HttpBridgeFull.d.ts.map +1 -1
- package/dist/node/index.cjs +10 -2
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +10 -2
- package/dist/node/index.js.map +1 -1
- package/package.json +35 -32
- package/src/HttpBridgeBase.ts +0 -1
- package/src/HttpBridgeFull.ts +2 -0
- package/xy.config.ts +0 -1
package/src/HttpBridgeBase.ts
CHANGED
package/src/HttpBridgeFull.ts
CHANGED
|
@@ -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
|