srvx-nightly 0.10.0-20251230-125401-aa0edc2 → 0.10.0-20251230-132542-ddc4ac3

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.
@@ -239,6 +239,12 @@ interface ServerRequestContext {
239
239
  [key: string]: unknown;
240
240
  }
241
241
  interface ServerRequest extends Request {
242
+ /**
243
+ * Access to Node.js native instance of request.
244
+ *
245
+ * See https://srvx.h3.dev/guide/node#noderequest
246
+ */
247
+ _request?: Request;
242
248
  /**
243
249
  * Access to the parsed URL
244
250
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "srvx-nightly",
3
- "version": "0.10.0-20251230-125401-aa0edc2",
3
+ "version": "0.10.0-20251230-132542-ddc4ac3",
4
4
  "description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
5
5
  "homepage": "https://srvx.h3.dev",
6
6
  "repository": "h3js/srvx",