devtools-protocol 0.0.1509355 → 0.0.1510016
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.
@@ -16930,6 +16930,18 @@
|
|
16930
16930
|
}
|
16931
16931
|
]
|
16932
16932
|
},
|
16933
|
+
{
|
16934
|
+
"name": "setIPProtectionProxyBypassEnabled",
|
16935
|
+
"description": "Sets bypass IP Protection Proxy boolean.",
|
16936
|
+
"experimental": true,
|
16937
|
+
"parameters": [
|
16938
|
+
{
|
16939
|
+
"name": "enabled",
|
16940
|
+
"description": "Whether IP Proxy is being bypassed by devtools; false by default.",
|
16941
|
+
"type": "boolean"
|
16942
|
+
}
|
16943
|
+
]
|
16944
|
+
},
|
16933
16945
|
{
|
16934
16946
|
"name": "setAcceptedEncodings",
|
16935
16947
|
"description": "Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.",
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
@@ -315,6 +315,12 @@ domain Network
|
|
315
315
|
# Whether IP proxy is available
|
316
316
|
IpProxyStatus status
|
317
317
|
|
318
|
+
# Sets bypass IP Protection Proxy boolean.
|
319
|
+
experimental command setIPProtectionProxyBypassEnabled
|
320
|
+
parameters
|
321
|
+
# Whether IP Proxy is being bypassed by devtools; false by default.
|
322
|
+
boolean enabled
|
323
|
+
|
318
324
|
# The reason why request was blocked.
|
319
325
|
type CorsError extends string
|
320
326
|
enum
|
@@ -4065,6 +4065,14 @@ export namespace ProtocolMapping {
|
|
4065
4065
|
paramsType: [];
|
4066
4066
|
returnType: Protocol.Network.GetIPProtectionProxyStatusResponse;
|
4067
4067
|
};
|
4068
|
+
/**
|
4069
|
+
* Sets bypass IP Protection Proxy boolean.
|
4070
|
+
* @experimental
|
4071
|
+
*/
|
4072
|
+
'Network.setIPProtectionProxyBypassEnabled': {
|
4073
|
+
paramsType: [Protocol.Network.SetIPProtectionProxyBypassEnabledRequest];
|
4074
|
+
returnType: void;
|
4075
|
+
};
|
4068
4076
|
/**
|
4069
4077
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
4070
4078
|
* @experimental
|
@@ -2952,6 +2952,12 @@ export namespace ProtocolProxyApi {
|
|
2952
2952
|
*/
|
2953
2953
|
getIPProtectionProxyStatus(): Promise<Protocol.Network.GetIPProtectionProxyStatusResponse>;
|
2954
2954
|
|
2955
|
+
/**
|
2956
|
+
* Sets bypass IP Protection Proxy boolean.
|
2957
|
+
* @experimental
|
2958
|
+
*/
|
2959
|
+
setIPProtectionProxyBypassEnabled(params: Protocol.Network.SetIPProtectionProxyBypassEnabledRequest): Promise<void>;
|
2960
|
+
|
2955
2961
|
/**
|
2956
2962
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
2957
2963
|
* @experimental
|
@@ -3118,6 +3118,12 @@ export namespace ProtocolTestsProxyApi {
|
|
3118
3118
|
*/
|
3119
3119
|
getIPProtectionProxyStatus(): Promise<{id: number, result: Protocol.Network.GetIPProtectionProxyStatusResponse, sessionId: string}>;
|
3120
3120
|
|
3121
|
+
/**
|
3122
|
+
* Sets bypass IP Protection Proxy boolean.
|
3123
|
+
* @experimental
|
3124
|
+
*/
|
3125
|
+
setIPProtectionProxyBypassEnabled(params: Protocol.Network.SetIPProtectionProxyBypassEnabledRequest): Promise<{id: number, result: void, sessionId: string}>;
|
3126
|
+
|
3121
3127
|
/**
|
3122
3128
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
3123
3129
|
* @experimental
|
package/types/protocol.d.ts
CHANGED
@@ -13388,6 +13388,13 @@ export namespace Protocol {
|
|
13388
13388
|
status: IpProxyStatus;
|
13389
13389
|
}
|
13390
13390
|
|
13391
|
+
export interface SetIPProtectionProxyBypassEnabledRequest {
|
13392
|
+
/**
|
13393
|
+
* Whether IP Proxy is being bypassed by devtools; false by default.
|
13394
|
+
*/
|
13395
|
+
enabled: boolean;
|
13396
|
+
}
|
13397
|
+
|
13391
13398
|
export interface SetAcceptedEncodingsRequest {
|
13392
13399
|
/**
|
13393
13400
|
* List of accepted content encodings.
|