devtools-protocol 0.0.1169739 → 0.0.1170333

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1169739",
3
+ "version": "0.0.1170333",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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.
@@ -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
  /**