devtools-protocol 0.0.1273222 → 0.0.1273771

Sign up to get free protection for your applications and to get access to all the features.
@@ -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. This will be converted from base64 to binary",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1273222",
3
+ "version": "0.0.1273771",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5539,10 +5539,11 @@ domain Network
5539
5539
  # HTTP request headers.
5540
5540
  Headers headers
5541
5541
  # HTTP POST request data.
5542
- optional string postData
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. This will be converted from base64 to binary
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
@@ -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. This will be converted from base64 to binary
10168
+ * Request body elements (post data broken into individual entries).
10168
10169
  */
10169
10170
  postDataEntries?: PostDataEntry[];
10170
10171
  /**