@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
|
-
|
|
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