feat: support for binary body (#4466)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Akash K
2024-11-26 19:48:01 +05:30
committed by GitHub
parent 37bf0567ea
commit 80d7dd046d
16 changed files with 261 additions and 22 deletions

View File

@@ -100,7 +100,8 @@ export class EnvironmentInspectorService extends Service implements Inspector {
position:
locations.type === "url" ||
locations.type === "body" ||
locations.type === "response"
locations.type === "response" ||
locations.type === "body-content-type-header"
? "key"
: locations.position,
index: index,
@@ -222,7 +223,8 @@ export class EnvironmentInspectorService extends Service implements Inspector {
position:
locations.type === "url" ||
locations.type === "body" ||
locations.type === "response"
locations.type === "response" ||
locations.type === "body-content-type-header"
? "key"
: locations.position,
index: index,