devtools-protocol 0.0.1488040 → 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
|
},
|
@@ -14845,7 +14852,7 @@
|
|
14845
14852
|
"type": "string",
|
14846
14853
|
"enum": [
|
14847
14854
|
"Loopback",
|
14848
|
-
"
|
14855
|
+
"Local",
|
14849
14856
|
"Public",
|
14850
14857
|
"Unknown"
|
14851
14858
|
]
|
@@ -27810,7 +27817,8 @@
|
|
27810
27817
|
"type": "string",
|
27811
27818
|
"enum": [
|
27812
27819
|
"SourceIsNotJsonObject",
|
27813
|
-
"InvalidRulesSkipped"
|
27820
|
+
"InvalidRulesSkipped",
|
27821
|
+
"InvalidRulesetLevelTag"
|
27814
27822
|
]
|
27815
27823
|
},
|
27816
27824
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
@@ -7711,7 +7714,7 @@ domain Network
|
|
7711
7714
|
experimental type IPAddressSpace extends string
|
7712
7715
|
enum
|
7713
7716
|
Loopback
|
7714
|
-
|
7717
|
+
Local
|
7715
7718
|
Public
|
7716
7719
|
Unknown
|
7717
7720
|
|
@@ -13103,6 +13106,7 @@ experimental domain Preload
|
|
13103
13106
|
enum
|
13104
13107
|
SourceIsNotJsonObject
|
13105
13108
|
InvalidRulesSkipped
|
13109
|
+
InvalidRulesetLevelTag
|
13106
13110
|
|
13107
13111
|
# The type of preloading attempted. It corresponds to
|
13108
13112
|
# mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
|
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
|
/**
|
@@ -11830,7 +11835,7 @@ export namespace Protocol {
|
|
11830
11835
|
|
11831
11836
|
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
|
11832
11837
|
|
11833
|
-
export type IPAddressSpace = ('Loopback' | '
|
11838
|
+
export type IPAddressSpace = ('Loopback' | 'Local' | 'Public' | 'Unknown');
|
11834
11839
|
|
11835
11840
|
export interface ConnectTiming {
|
11836
11841
|
/**
|
@@ -19564,7 +19569,7 @@ export namespace Protocol {
|
|
19564
19569
|
errorMessage?: string;
|
19565
19570
|
}
|
19566
19571
|
|
19567
|
-
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped');
|
19572
|
+
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');
|
19568
19573
|
|
19569
19574
|
/**
|
19570
19575
|
* The type of preloading attempted. It corresponds to
|