devtools-protocol 0.0.1273222 → 0.0.1273771
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.
@@ -12068,7 +12068,8 @@
|
|
12068
12068
|
},
|
12069
12069
|
{
|
12070
12070
|
"name": "postData",
|
12071
|
-
"description": "HTTP POST request data.",
|
12071
|
+
"description": "HTTP POST request data.\nUse postDataEntries instead.",
|
12072
|
+
"deprecated": true,
|
12072
12073
|
"optional": true,
|
12073
12074
|
"type": "string"
|
12074
12075
|
},
|
@@ -12080,7 +12081,7 @@
|
|
12080
12081
|
},
|
12081
12082
|
{
|
12082
12083
|
"name": "postDataEntries",
|
12083
|
-
"description": "Request body elements
|
12084
|
+
"description": "Request body elements (post data broken into individual entries).",
|
12084
12085
|
"experimental": true,
|
12085
12086
|
"optional": true,
|
12086
12087
|
"type": "array",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -5539,10 +5539,11 @@ domain Network
|
|
5539
5539
|
# HTTP request headers.
|
5540
5540
|
Headers headers
|
5541
5541
|
# HTTP POST request data.
|
5542
|
-
|
5542
|
+
# Use postDataEntries instead.
|
5543
|
+
deprecated optional string postData
|
5543
5544
|
# True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
|
5544
5545
|
optional boolean hasPostData
|
5545
|
-
# Request body elements
|
5546
|
+
# Request body elements (post data broken into individual entries).
|
5546
5547
|
experimental optional array of PostDataEntry postDataEntries
|
5547
5548
|
# The mixed content type of the request.
|
5548
5549
|
optional Security.MixedContentType mixedContentType
|
package/types/protocol.d.ts
CHANGED
@@ -10157,6 +10157,7 @@ export namespace Protocol {
|
|
10157
10157
|
headers: Headers;
|
10158
10158
|
/**
|
10159
10159
|
* HTTP POST request data.
|
10160
|
+
* Use postDataEntries instead.
|
10160
10161
|
*/
|
10161
10162
|
postData?: string;
|
10162
10163
|
/**
|
@@ -10164,7 +10165,7 @@ export namespace Protocol {
|
|
10164
10165
|
*/
|
10165
10166
|
hasPostData?: boolean;
|
10166
10167
|
/**
|
10167
|
-
* Request body elements
|
10168
|
+
* Request body elements (post data broken into individual entries).
|
10168
10169
|
*/
|
10169
10170
|
postDataEntries?: PostDataEntry[];
|
10170
10171
|
/**
|