devtools-protocol 0.0.1537100 → 0.0.1538951

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.
@@ -16740,8 +16740,6 @@
16740
16740
  "Allow",
16741
16741
  "BlockFromInsecureToMorePrivate",
16742
16742
  "WarnFromInsecureToMorePrivate",
16743
- "PreflightBlock",
16744
- "PreflightWarn",
16745
16743
  "PermissionBlock",
16746
16744
  "PermissionWarn"
16747
16745
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1537100",
3
+ "version": "0.0.1538951",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1797,8 +1797,6 @@ domain Network
1797
1797
  Allow
1798
1798
  BlockFromInsecureToMorePrivate
1799
1799
  WarnFromInsecureToMorePrivate
1800
- PreflightBlock
1801
- PreflightWarn
1802
1800
  PermissionBlock
1803
1801
  PermissionWarn
1804
1802
 
@@ -13316,7 +13316,7 @@ export namespace Protocol {
13316
13316
  /**
13317
13317
  * @experimental
13318
13318
  */
13319
- export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
13319
+ export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
13320
13320
 
13321
13321
  /**
13322
13322
  * @experimental