devtools-protocol 0.0.1169739 → 0.0.1170333
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.
@@ -13785,12 +13785,6 @@
|
|
13785
13785
|
"name": "encodedDataLength",
|
13786
13786
|
"description": "Total number of bytes received for this request.",
|
13787
13787
|
"type": "number"
|
13788
|
-
},
|
13789
|
-
{
|
13790
|
-
"name": "shouldReportCorbBlocking",
|
13791
|
-
"description": "Set when 1) response was blocked by Cross-Origin Read Blocking and also\n2) this needs to be reported to the DevTools console.",
|
13792
|
-
"optional": true,
|
13793
|
-
"type": "boolean"
|
13794
13788
|
}
|
13795
13789
|
]
|
13796
13790
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -6268,9 +6268,6 @@ domain Network
|
|
6268
6268
|
MonotonicTime timestamp
|
6269
6269
|
# Total number of bytes received for this request.
|
6270
6270
|
number encodedDataLength
|
6271
|
-
# Set when 1) response was blocked by Cross-Origin Read Blocking and also
|
6272
|
-
# 2) this needs to be reported to the DevTools console.
|
6273
|
-
optional boolean shouldReportCorbBlocking
|
6274
6271
|
|
6275
6272
|
# Details of an intercepted HTTP request, which must be either allowed, blocked, modified or
|
6276
6273
|
# mocked.
|
package/types/protocol.d.ts
CHANGED
@@ -11283,11 +11283,6 @@ export namespace Protocol {
|
|
11283
11283
|
* Total number of bytes received for this request.
|
11284
11284
|
*/
|
11285
11285
|
encodedDataLength: number;
|
11286
|
-
/**
|
11287
|
-
* Set when 1) response was blocked by Cross-Origin Read Blocking and also
|
11288
|
-
* 2) this needs to be reported to the DevTools console.
|
11289
|
-
*/
|
11290
|
-
shouldReportCorbBlocking?: boolean;
|
11291
11286
|
}
|
11292
11287
|
|
11293
11288
|
/**
|