devtools-protocol 0.0.1488636 → 0.0.1490591

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.
@@ -13911,6 +13911,13 @@
13911
13911
  "description": "Security details for the request.",
13912
13912
  "optional": true,
13913
13913
  "$ref": "SecurityDetails"
13914
+ },
13915
+ {
13916
+ "name": "isIpProtectionUsed",
13917
+ "description": "Indicates whether the request was sent through IP Protection proxies. If\nset to true, the request used the IP Protection privacy feature.",
13918
+ "experimental": true,
13919
+ "optional": true,
13920
+ "type": "boolean"
13914
13921
  }
13915
13922
  ]
13916
13923
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1488636",
3
+ "version": "0.0.1490591",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6508,6 +6508,9 @@ domain Network
6508
6508
  Security.SecurityState securityState
6509
6509
  # Security details for the request.
6510
6510
  optional SecurityDetails securityDetails
6511
+ # Indicates whether the request was sent through IP Protection proxies. If
6512
+ # set to true, the request used the IP Protection privacy feature.
6513
+ experimental optional boolean isIpProtectionUsed
6511
6514
 
6512
6515
  # WebSocket request data.
6513
6516
  type WebSocketRequest extends object
@@ -11212,6 +11212,11 @@ export namespace Protocol {
11212
11212
  * Security details for the request.
11213
11213
  */
11214
11214
  securityDetails?: SecurityDetails;
11215
+ /**
11216
+ * Indicates whether the request was sent through IP Protection proxies. If
11217
+ * set to true, the request used the IP Protection privacy feature.
11218
+ */
11219
+ isIpProtectionUsed?: boolean;
11215
11220
  }
11216
11221
 
11217
11222
  /**