devtools-protocol 0.0.1566079 → 0.0.1568225

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.
@@ -17995,6 +17995,11 @@
17995
17995
  "name": "postData",
17996
17996
  "description": "Request body string, omitting files from multipart requests",
17997
17997
  "type": "string"
17998
+ },
17999
+ {
18000
+ "name": "base64Encoded",
18001
+ "description": "True, if content was sent as base64.",
18002
+ "type": "boolean"
17998
18003
  }
17999
18004
  ]
18000
18005
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1566079",
3
+ "version": "0.0.1568225",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1216,6 +1216,8 @@ domain Network
1216
1216
  returns
1217
1217
  # Request body string, omitting files from multipart requests
1218
1218
  string postData
1219
+ # True, if content was sent as base64.
1220
+ boolean base64Encoded
1219
1221
 
1220
1222
  # Returns content served for the given currently intercepted request.
1221
1223
  experimental command getResponseBodyForInterception
@@ -14084,6 +14084,10 @@ export namespace Protocol {
14084
14084
  * Request body string, omitting files from multipart requests
14085
14085
  */
14086
14086
  postData: string;
14087
+ /**
14088
+ * True, if content was sent as base64.
14089
+ */
14090
+ base64Encoded: boolean;
14087
14091
  }
14088
14092
 
14089
14093
  export interface GetResponseBodyForInterceptionRequest {