devtools-protocol 0.0.1488636 → 0.0.1491235
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
package/pdl/browser_protocol.pdl
CHANGED
@@ -6362,7 +6362,7 @@ domain Network
|
|
6362
6362
|
# https://github.com/WICG/private-network-access/blob/main/permission_prompt/explainer.md
|
6363
6363
|
PrivateNetworkAccessPermissionDenied
|
6364
6364
|
# Request was a local network request and is denied by user permission.
|
6365
|
-
# https://github.
|
6365
|
+
# https://wicg.github.io/local-network-access/
|
6366
6366
|
LocalNetworkAccessPermissionDenied
|
6367
6367
|
|
6368
6368
|
type CorsErrorStatus extends object
|
@@ -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
|
package/types/protocol.d.ts
CHANGED
@@ -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
|
/**
|