@aresdefencelabs/wasm-http-runtime 0.1.8 → 0.1.9

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.
@@ -556,7 +556,9 @@ export function createWasmHttpRuntime(config) {
556
556
  log("[AresHost] response envelope =", normalized);
557
557
 
558
558
  return new Response(normalized.body, {
559
- status: normalized.status,
559
+ responseCode: normalized.responseCode,
560
+ errorMessage: normalized.errorMessage,
561
+ isSuccess: normalized.isSuccess,
560
562
  headers: normalized.headers,
561
563
  });
562
564
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aresdefencelabs/wasm-http-runtime",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Runtime adapter that connects C++ WebAssembly workers to the Cloudflare Workers runtime via an ABI bridge.",
5
5
  "type": "module",
6
6
  "private": false,