devtools-protocol 0.0.1508733 → 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.
- package/json/browser_protocol.json +15 -3
- package/package.json +1 -1
- package/pdl/domains/Network.pdl +6 -0
- package/pdl/domains/Page.pdl +3 -3
- package/types/protocol-mapping.d.ts +8 -0
- package/types/protocol-proxy-api.d.ts +6 -0
- package/types/protocol-tests-proxy-api.d.ts +6 -0
- package/types/protocol.d.ts +8 -1
@@ -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.",
|
@@ -21729,9 +21741,9 @@
|
|
21729
21741
|
"IndexedDBEvent",
|
21730
21742
|
"Dummy",
|
21731
21743
|
"JsNetworkRequestReceivedCacheControlNoStoreResource",
|
21732
|
-
"
|
21733
|
-
"
|
21734
|
-
"
|
21744
|
+
"WebRTCUsedWithCCNS",
|
21745
|
+
"WebTransportUsedWithCCNS",
|
21746
|
+
"WebSocketUsedWithCCNS",
|
21735
21747
|
"SmartCard",
|
21736
21748
|
"LiveMediaStreamTrack",
|
21737
21749
|
"UnloadHandler",
|
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
|
package/pdl/domains/Page.pdl
CHANGED
@@ -1600,9 +1600,9 @@ domain Page
|
|
1600
1600
|
IndexedDBEvent
|
1601
1601
|
Dummy
|
1602
1602
|
JsNetworkRequestReceivedCacheControlNoStoreResource
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1603
|
+
WebRTCUsedWithCCNS
|
1604
|
+
WebTransportUsedWithCCNS
|
1605
|
+
WebSocketUsedWithCCNS
|
1606
1606
|
SmartCard
|
1607
1607
|
LiveMediaStreamTrack
|
1608
1608
|
UnloadHandler
|
@@ -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.
|
@@ -16435,7 +16442,7 @@ export namespace Protocol {
|
|
16435
16442
|
* List of not restored reasons for back-forward cache.
|
16436
16443
|
* @experimental
|
16437
16444
|
*/
|
16438
|
-
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'SharedWorkerMessage' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | '
|
16445
|
+
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'SharedWorkerMessage' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
|
16439
16446
|
|
16440
16447
|
/**
|
16441
16448
|
* Types of not restored reasons for back-forward cache.
|