devtools-protocol 0.0.943452 → 0.0.943687

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.
@@ -19098,6 +19098,15 @@
19098
19098
  "description": "Proxy bypass list, similar to the one passed to --proxy-bypass-list",
19099
19099
  "optional": true,
19100
19100
  "type": "string"
19101
+ },
19102
+ {
19103
+ "name": "originsWithUniversalNetworkAccess",
19104
+ "description": "An optional list of origins to grant unlimited cross-origin access to.",
19105
+ "optional": true,
19106
+ "type": "array",
19107
+ "items": {
19108
+ "type": "string"
19109
+ }
19101
19110
  }
19102
19111
  ],
19103
19112
  "returns": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.943452",
3
+ "version": "0.0.943687",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8929,6 +8929,8 @@ domain Target
8929
8929
  optional string proxyServer
8930
8930
  # Proxy bypass list, similar to the one passed to --proxy-bypass-list
8931
8931
  optional string proxyBypassList
8932
+ # An optional list of origins to grant unlimited cross-origin access to.
8933
+ optional array of string originsWithUniversalNetworkAccess
8932
8934
 
8933
8935
  returns
8934
8936
  # The id of the context created.
@@ -14533,6 +14533,10 @@ export namespace Protocol {
14533
14533
  * Proxy bypass list, similar to the one passed to --proxy-bypass-list
14534
14534
  */
14535
14535
  proxyBypassList?: string;
14536
+ /**
14537
+ * An optional list of origins to grant unlimited cross-origin access to.
14538
+ */
14539
+ originsWithUniversalNetworkAccess?: string[];
14536
14540
  }
14537
14541
 
14538
14542
  export interface CreateBrowserContextResponse {