@aresdefencelabs/wasm-http-runtime 0.1.9 → 0.2.0
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,9 +556,7 @@ export function createWasmHttpRuntime(config) {
|
|
|
556
556
|
log("[AresHost] response envelope =", normalized);
|
|
557
557
|
|
|
558
558
|
return new Response(normalized.body, {
|
|
559
|
-
|
|
560
|
-
errorMessage: normalized.errorMessage,
|
|
561
|
-
isSuccess: normalized.isSuccess,
|
|
559
|
+
status: normalized.status,
|
|
562
560
|
headers: normalized.headers,
|
|
563
561
|
});
|
|
564
562
|
} catch (err) {
|
package/package.json
CHANGED