devtools-protocol 0.0.943687 → 0.0.944179

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.
@@ -19101,7 +19101,7 @@
19101
19101
  },
19102
19102
  {
19103
19103
  "name": "originsWithUniversalNetworkAccess",
19104
- "description": "An optional list of origins to grant unlimited cross-origin access to.",
19104
+ "description": "An optional list of origins to grant unlimited cross-origin access to.\nParts of the URL other than those constituting origin are ignored.",
19105
19105
  "optional": true,
19106
19106
  "type": "array",
19107
19107
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.943687",
3
+ "version": "0.0.944179",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8930,6 +8930,7 @@ domain Target
8930
8930
  # Proxy bypass list, similar to the one passed to --proxy-bypass-list
8931
8931
  optional string proxyBypassList
8932
8932
  # An optional list of origins to grant unlimited cross-origin access to.
8933
+ # Parts of the URL other than those constituting origin are ignored.
8933
8934
  optional array of string originsWithUniversalNetworkAccess
8934
8935
 
8935
8936
  returns
@@ -14535,6 +14535,7 @@ export namespace Protocol {
14535
14535
  proxyBypassList?: string;
14536
14536
  /**
14537
14537
  * An optional list of origins to grant unlimited cross-origin access to.
14538
+ * Parts of the URL other than those constituting origin are ignored.
14538
14539
  */
14539
14540
  originsWithUniversalNetworkAccess?: string[];
14540
14541
  }