devtools-protocol 0.0.1064701 → 0.0.1066334
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.
@@ -16203,7 +16203,6 @@
|
|
16203
16203
|
"DedicatedWorkerOrWorklet",
|
16204
16204
|
"OutstandingNetworkRequestOthers",
|
16205
16205
|
"OutstandingIndexedDBTransaction",
|
16206
|
-
"RequestedNotificationsPermission",
|
16207
16206
|
"RequestedMIDIPermission",
|
16208
16207
|
"RequestedAudioCapturePermission",
|
16209
16208
|
"RequestedVideoCapturePermission",
|
@@ -22183,6 +22182,34 @@
|
|
22183
22182
|
}
|
22184
22183
|
]
|
22185
22184
|
},
|
22185
|
+
{
|
22186
|
+
"name": "setResponseOverrideBits",
|
22187
|
+
"description": "Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.",
|
22188
|
+
"parameters": [
|
22189
|
+
{
|
22190
|
+
"name": "authenticatorId",
|
22191
|
+
"$ref": "AuthenticatorId"
|
22192
|
+
},
|
22193
|
+
{
|
22194
|
+
"name": "isBogusSignature",
|
22195
|
+
"description": "If isBogusSignature is set, overrides the signature in the authenticator response to be zero.\nDefaults to false.",
|
22196
|
+
"optional": true,
|
22197
|
+
"type": "boolean"
|
22198
|
+
},
|
22199
|
+
{
|
22200
|
+
"name": "isBadUV",
|
22201
|
+
"description": "If isBadUV is set, overrides the UV bit in the flags in the authenticator response to\nbe zero. Defaults to false.",
|
22202
|
+
"optional": true,
|
22203
|
+
"type": "boolean"
|
22204
|
+
},
|
22205
|
+
{
|
22206
|
+
"name": "isBadUP",
|
22207
|
+
"description": "If isBadUP is set, overrides the UP bit in the flags in the authenticator response to\nbe zero. Defaults to false.",
|
22208
|
+
"optional": true,
|
22209
|
+
"type": "boolean"
|
22210
|
+
}
|
22211
|
+
]
|
22212
|
+
},
|
22186
22213
|
{
|
22187
22214
|
"name": "removeVirtualAuthenticator",
|
22188
22215
|
"description": "Removes the given authenticator.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8359,7 +8359,6 @@ domain Page
|
|
8359
8359
|
DedicatedWorkerOrWorklet
|
8360
8360
|
OutstandingNetworkRequestOthers
|
8361
8361
|
OutstandingIndexedDBTransaction
|
8362
|
-
RequestedNotificationsPermission
|
8363
8362
|
RequestedMIDIPermission
|
8364
8363
|
RequestedAudioCapturePermission
|
8365
8364
|
RequestedVideoCapturePermission
|
@@ -10494,6 +10493,20 @@ experimental domain WebAuthn
|
|
10494
10493
|
returns
|
10495
10494
|
AuthenticatorId authenticatorId
|
10496
10495
|
|
10496
|
+
# Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
|
10497
|
+
command setResponseOverrideBits
|
10498
|
+
parameters
|
10499
|
+
AuthenticatorId authenticatorId
|
10500
|
+
# If isBogusSignature is set, overrides the signature in the authenticator response to be zero.
|
10501
|
+
# Defaults to false.
|
10502
|
+
optional boolean isBogusSignature
|
10503
|
+
# If isBadUV is set, overrides the UV bit in the flags in the authenticator response to
|
10504
|
+
# be zero. Defaults to false.
|
10505
|
+
optional boolean isBadUV
|
10506
|
+
# If isBadUP is set, overrides the UP bit in the flags in the authenticator response to
|
10507
|
+
# be zero. Defaults to false.
|
10508
|
+
optional boolean isBadUP
|
10509
|
+
|
10497
10510
|
# Removes the given authenticator.
|
10498
10511
|
command removeVirtualAuthenticator
|
10499
10512
|
parameters
|
@@ -4446,6 +4446,13 @@ export namespace ProtocolMapping {
|
|
4446
4446
|
paramsType: [Protocol.WebAuthn.AddVirtualAuthenticatorRequest];
|
4447
4447
|
returnType: Protocol.WebAuthn.AddVirtualAuthenticatorResponse;
|
4448
4448
|
};
|
4449
|
+
/**
|
4450
|
+
* Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
|
4451
|
+
*/
|
4452
|
+
'WebAuthn.setResponseOverrideBits': {
|
4453
|
+
paramsType: [Protocol.WebAuthn.SetResponseOverrideBitsRequest];
|
4454
|
+
returnType: void;
|
4455
|
+
};
|
4449
4456
|
/**
|
4450
4457
|
* Removes the given authenticator.
|
4451
4458
|
*/
|
@@ -3763,6 +3763,11 @@ export namespace ProtocolProxyApi {
|
|
3763
3763
|
*/
|
3764
3764
|
addVirtualAuthenticator(params: Protocol.WebAuthn.AddVirtualAuthenticatorRequest): Promise<Protocol.WebAuthn.AddVirtualAuthenticatorResponse>;
|
3765
3765
|
|
3766
|
+
/**
|
3767
|
+
* Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
|
3768
|
+
*/
|
3769
|
+
setResponseOverrideBits(params: Protocol.WebAuthn.SetResponseOverrideBitsRequest): Promise<void>;
|
3770
|
+
|
3766
3771
|
/**
|
3767
3772
|
* Removes the given authenticator.
|
3768
3773
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -12797,7 +12797,7 @@ export namespace Protocol {
|
|
12797
12797
|
/**
|
12798
12798
|
* List of not restored reasons for back-forward cache.
|
12799
12799
|
*/
|
12800
|
-
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' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | '
|
12800
|
+
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' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
|
12801
12801
|
|
12802
12802
|
/**
|
12803
12803
|
* Types of not restored reasons for back-forward cache.
|
@@ -16498,6 +16498,25 @@ export namespace Protocol {
|
|
16498
16498
|
authenticatorId: AuthenticatorId;
|
16499
16499
|
}
|
16500
16500
|
|
16501
|
+
export interface SetResponseOverrideBitsRequest {
|
16502
|
+
authenticatorId: AuthenticatorId;
|
16503
|
+
/**
|
16504
|
+
* If isBogusSignature is set, overrides the signature in the authenticator response to be zero.
|
16505
|
+
* Defaults to false.
|
16506
|
+
*/
|
16507
|
+
isBogusSignature?: boolean;
|
16508
|
+
/**
|
16509
|
+
* If isBadUV is set, overrides the UV bit in the flags in the authenticator response to
|
16510
|
+
* be zero. Defaults to false.
|
16511
|
+
*/
|
16512
|
+
isBadUV?: boolean;
|
16513
|
+
/**
|
16514
|
+
* If isBadUP is set, overrides the UP bit in the flags in the authenticator response to
|
16515
|
+
* be zero. Defaults to false.
|
16516
|
+
*/
|
16517
|
+
isBadUP?: boolean;
|
16518
|
+
}
|
16519
|
+
|
16501
16520
|
export interface RemoveVirtualAuthenticatorRequest {
|
16502
16521
|
authenticatorId: AuthenticatorId;
|
16503
16522
|
}
|