devtools-protocol 0.0.1245094 → 0.0.1247362
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.
@@ -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
package/pdl/browser_protocol.pdl
CHANGED
@@ -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.
|
package/types/protocol.d.ts
CHANGED
@@ -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
|
*/
|