devtools-protocol 0.0.1245094 → 0.0.1247362

Sign up to get free protection for your applications and to get access to all the features.
@@ -12353,6 +12353,11 @@
12353
12353
  "description": "Resource mimeType as determined by the browser.",
12354
12354
  "type": "string"
12355
12355
  },
12356
+ {
12357
+ "name": "charset",
12358
+ "description": "Resource charset as determined by the browser (if applicable).",
12359
+ "type": "string"
12360
+ },
12356
12361
  {
12357
12362
  "name": "requestHeaders",
12358
12363
  "description": "Refined HTTP request headers that were actually transmitted over the network.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1245094",
3
+ "version": "0.0.1247362",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5720,6 +5720,8 @@ domain Network
5720
5720
  deprecated optional string headersText
5721
5721
  # Resource mimeType as determined by the browser.
5722
5722
  string mimeType
5723
+ # Resource charset as determined by the browser (if applicable).
5724
+ string charset
5723
5725
  # Refined HTTP request headers that were actually transmitted over the network.
5724
5726
  optional Headers requestHeaders
5725
5727
  # HTTP request headers text. This has been replaced by the headers in Network.requestWillBeSentExtraInfo.
@@ -10304,6 +10304,10 @@ export namespace Protocol {
10304
10304
  * Resource mimeType as determined by the browser.
10305
10305
  */
10306
10306
  mimeType: string;
10307
+ /**
10308
+ * Resource charset as determined by the browser (if applicable).
10309
+ */
10310
+ charset: string;
10307
10311
  /**
10308
10312
  * Refined HTTP request headers that were actually transmitted over the network.
10309
10313
  */