devtools-protocol 0.0.1057312 → 0.0.1059094
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.
@@ -21078,7 +21078,7 @@
|
|
21078
21078
|
},
|
21079
21079
|
{
|
21080
21080
|
"name": "headers",
|
21081
|
-
"description": "If set, overrides the request headers.",
|
21081
|
+
"description": "If set, overrides the request headers. Note that the overrides do not\nextend to subsequent redirect hops, if a redirect happens. Another override\nmay be applied to a different request produced by a redirect.",
|
21082
21082
|
"optional": true,
|
21083
21083
|
"type": "array",
|
21084
21084
|
"items": {
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -9945,7 +9945,9 @@ domain Fetch
|
|
9945
9945
|
optional string method
|
9946
9946
|
# If set, overrides the post data in the request.
|
9947
9947
|
optional binary postData
|
9948
|
-
# If set, overrides the request headers.
|
9948
|
+
# If set, overrides the request headers. Note that the overrides do not
|
9949
|
+
# extend to subsequent redirect hops, if a redirect happens. Another override
|
9950
|
+
# may be applied to a different request produced by a redirect.
|
9949
9951
|
optional array of HeaderEntry headers
|
9950
9952
|
# If set, overrides response interception behavior for this request.
|
9951
9953
|
experimental optional boolean interceptResponse
|
package/types/protocol.d.ts
CHANGED
@@ -15824,7 +15824,9 @@ export namespace Protocol {
|
|
15824
15824
|
*/
|
15825
15825
|
postData?: string;
|
15826
15826
|
/**
|
15827
|
-
* If set, overrides the request headers.
|
15827
|
+
* If set, overrides the request headers. Note that the overrides do not
|
15828
|
+
* extend to subsequent redirect hops, if a redirect happens. Another override
|
15829
|
+
* may be applied to a different request produced by a redirect.
|
15828
15830
|
*/
|
15829
15831
|
headers?: HeaderEntry[];
|
15830
15832
|
/**
|