devtools-protocol 0.0.1075693 → 0.0.1078443
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.
@@ -16293,6 +16293,7 @@
|
|
16293
16293
|
"InjectedStyleSheet",
|
16294
16294
|
"KeepaliveRequest",
|
16295
16295
|
"Dummy",
|
16296
|
+
"AuthorizationHeader",
|
16296
16297
|
"ContentSecurityHandler",
|
16297
16298
|
"ContentWebAuthenticationAPI",
|
16298
16299
|
"ContentFileChooser",
|
@@ -19192,6 +19193,7 @@
|
|
19192
19193
|
"join",
|
19193
19194
|
"leave",
|
19194
19195
|
"update",
|
19196
|
+
"loaded",
|
19195
19197
|
"bid",
|
19196
19198
|
"win"
|
19197
19199
|
]
|
@@ -21195,7 +21197,7 @@
|
|
21195
21197
|
},
|
21196
21198
|
{
|
21197
21199
|
"name": "dataCollected",
|
21198
|
-
"description": "Contains
|
21200
|
+
"description": "Contains a bucket of collected trace events. When tracing is stopped collected events will be\nsent as a sequence of dataCollected events followed by tracingComplete event.",
|
21199
21201
|
"parameters": [
|
21200
21202
|
{
|
21201
21203
|
"name": "value",
|
@@ -22467,6 +22469,36 @@
|
|
22467
22469
|
}
|
22468
22470
|
]
|
22469
22471
|
}
|
22472
|
+
],
|
22473
|
+
"events": [
|
22474
|
+
{
|
22475
|
+
"name": "credentialAdded",
|
22476
|
+
"description": "Triggered when a credential is added to an authenticator.",
|
22477
|
+
"parameters": [
|
22478
|
+
{
|
22479
|
+
"name": "authenticatorId",
|
22480
|
+
"$ref": "AuthenticatorId"
|
22481
|
+
},
|
22482
|
+
{
|
22483
|
+
"name": "credential",
|
22484
|
+
"$ref": "Credential"
|
22485
|
+
}
|
22486
|
+
]
|
22487
|
+
},
|
22488
|
+
{
|
22489
|
+
"name": "credentialAsserted",
|
22490
|
+
"description": "Triggered when a credential is used in a webauthn assertion.",
|
22491
|
+
"parameters": [
|
22492
|
+
{
|
22493
|
+
"name": "authenticatorId",
|
22494
|
+
"$ref": "AuthenticatorId"
|
22495
|
+
},
|
22496
|
+
{
|
22497
|
+
"name": "credential",
|
22498
|
+
"$ref": "Credential"
|
22499
|
+
}
|
22500
|
+
]
|
22501
|
+
}
|
22470
22502
|
]
|
22471
22503
|
},
|
22472
22504
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8423,6 +8423,7 @@ domain Page
|
|
8423
8423
|
InjectedStyleSheet
|
8424
8424
|
KeepaliveRequest
|
8425
8425
|
Dummy
|
8426
|
+
AuthorizationHeader
|
8426
8427
|
# Disabled for RenderFrameHost reasons
|
8427
8428
|
# See content/browser/renderer_host/back_forward_cache_disable.h for explanations.
|
8428
8429
|
ContentSecurityHandler
|
@@ -9076,6 +9077,7 @@ experimental domain Storage
|
|
9076
9077
|
join
|
9077
9078
|
leave
|
9078
9079
|
update
|
9080
|
+
loaded
|
9079
9081
|
bid
|
9080
9082
|
win
|
9081
9083
|
|
@@ -10011,8 +10013,8 @@ experimental domain Tracing
|
|
10011
10013
|
# total size.
|
10012
10014
|
optional number value
|
10013
10015
|
|
10014
|
-
# Contains
|
10015
|
-
#
|
10016
|
+
# Contains a bucket of collected trace events. When tracing is stopped collected events will be
|
10017
|
+
# sent as a sequence of dataCollected events followed by tracingComplete event.
|
10016
10018
|
event dataCollected
|
10017
10019
|
parameters
|
10018
10020
|
array of object value
|
@@ -10628,6 +10630,18 @@ experimental domain WebAuthn
|
|
10628
10630
|
AuthenticatorId authenticatorId
|
10629
10631
|
boolean enabled
|
10630
10632
|
|
10633
|
+
# Triggered when a credential is added to an authenticator.
|
10634
|
+
event credentialAdded
|
10635
|
+
parameters
|
10636
|
+
AuthenticatorId authenticatorId
|
10637
|
+
Credential credential
|
10638
|
+
|
10639
|
+
# Triggered when a credential is used in a webauthn assertion.
|
10640
|
+
event credentialAsserted
|
10641
|
+
parameters
|
10642
|
+
AuthenticatorId authenticatorId
|
10643
|
+
Credential credential
|
10644
|
+
|
10631
10645
|
# This domain allows detailed inspection of media elements
|
10632
10646
|
experimental domain Media
|
10633
10647
|
|
@@ -597,8 +597,8 @@ export namespace ProtocolMapping {
|
|
597
597
|
'Tethering.accepted': [Protocol.Tethering.AcceptedEvent];
|
598
598
|
'Tracing.bufferUsage': [Protocol.Tracing.BufferUsageEvent];
|
599
599
|
/**
|
600
|
-
* Contains
|
601
|
-
*
|
600
|
+
* Contains a bucket of collected trace events. When tracing is stopped collected events will be
|
601
|
+
* sent as a sequence of dataCollected events followed by tracingComplete event.
|
602
602
|
*/
|
603
603
|
'Tracing.dataCollected': [Protocol.Tracing.DataCollectedEvent];
|
604
604
|
/**
|
@@ -672,6 +672,14 @@ export namespace ProtocolMapping {
|
|
672
672
|
* Notifies that an AudioNode is disconnected to an AudioParam.
|
673
673
|
*/
|
674
674
|
'WebAudio.nodeParamDisconnected': [Protocol.WebAudio.NodeParamDisconnectedEvent];
|
675
|
+
/**
|
676
|
+
* Triggered when a credential is added to an authenticator.
|
677
|
+
*/
|
678
|
+
'WebAuthn.credentialAdded': [Protocol.WebAuthn.CredentialAddedEvent];
|
679
|
+
/**
|
680
|
+
* Triggered when a credential is used in a webauthn assertion.
|
681
|
+
*/
|
682
|
+
'WebAuthn.credentialAsserted': [Protocol.WebAuthn.CredentialAssertedEvent];
|
675
683
|
/**
|
676
684
|
* This can be called multiple times, and can be used to set / override /
|
677
685
|
* remove player properties. A null propValue indicates removal.
|
@@ -3588,8 +3588,8 @@ export namespace ProtocolProxyApi {
|
|
3588
3588
|
on(event: 'bufferUsage', listener: (params: Protocol.Tracing.BufferUsageEvent) => void): void;
|
3589
3589
|
|
3590
3590
|
/**
|
3591
|
-
* Contains
|
3592
|
-
*
|
3591
|
+
* Contains a bucket of collected trace events. When tracing is stopped collected events will be
|
3592
|
+
* sent as a sequence of dataCollected events followed by tracingComplete event.
|
3593
3593
|
*/
|
3594
3594
|
on(event: 'dataCollected', listener: (params: Protocol.Tracing.DataCollectedEvent) => void): void;
|
3595
3595
|
|
@@ -3830,6 +3830,16 @@ export namespace ProtocolProxyApi {
|
|
3830
3830
|
*/
|
3831
3831
|
setAutomaticPresenceSimulation(params: Protocol.WebAuthn.SetAutomaticPresenceSimulationRequest): Promise<void>;
|
3832
3832
|
|
3833
|
+
/**
|
3834
|
+
* Triggered when a credential is added to an authenticator.
|
3835
|
+
*/
|
3836
|
+
on(event: 'credentialAdded', listener: (params: Protocol.WebAuthn.CredentialAddedEvent) => void): void;
|
3837
|
+
|
3838
|
+
/**
|
3839
|
+
* Triggered when a credential is used in a webauthn assertion.
|
3840
|
+
*/
|
3841
|
+
on(event: 'credentialAsserted', listener: (params: Protocol.WebAuthn.CredentialAssertedEvent) => void): void;
|
3842
|
+
|
3833
3843
|
}
|
3834
3844
|
|
3835
3845
|
export interface MediaApi {
|
package/types/protocol.d.ts
CHANGED
@@ -12823,7 +12823,7 @@ export namespace Protocol {
|
|
12823
12823
|
/**
|
12824
12824
|
* List of not restored reasons for back-forward cache.
|
12825
12825
|
*/
|
12826
|
-
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');
|
12826
|
+
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' | 'AuthorizationHeader' | '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');
|
12827
12827
|
|
12828
12828
|
/**
|
12829
12829
|
* Types of not restored reasons for back-forward cache.
|
@@ -14581,7 +14581,7 @@ export namespace Protocol {
|
|
14581
14581
|
/**
|
14582
14582
|
* Enum of interest group access types.
|
14583
14583
|
*/
|
14584
|
-
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'bid' | 'win');
|
14584
|
+
export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win');
|
14585
14585
|
|
14586
14586
|
/**
|
14587
14587
|
* Ad advertising element inside an interest group.
|
@@ -15851,8 +15851,8 @@ export namespace Protocol {
|
|
15851
15851
|
}
|
15852
15852
|
|
15853
15853
|
/**
|
15854
|
-
* Contains
|
15855
|
-
*
|
15854
|
+
* Contains a bucket of collected trace events. When tracing is stopped collected events will be
|
15855
|
+
* sent as a sequence of dataCollected events followed by tracingComplete event.
|
15856
15856
|
*/
|
15857
15857
|
export interface DataCollectedEvent {
|
15858
15858
|
value: any[];
|
@@ -16630,6 +16630,22 @@ export namespace Protocol {
|
|
16630
16630
|
authenticatorId: AuthenticatorId;
|
16631
16631
|
enabled: boolean;
|
16632
16632
|
}
|
16633
|
+
|
16634
|
+
/**
|
16635
|
+
* Triggered when a credential is added to an authenticator.
|
16636
|
+
*/
|
16637
|
+
export interface CredentialAddedEvent {
|
16638
|
+
authenticatorId: AuthenticatorId;
|
16639
|
+
credential: Credential;
|
16640
|
+
}
|
16641
|
+
|
16642
|
+
/**
|
16643
|
+
* Triggered when a credential is used in a webauthn assertion.
|
16644
|
+
*/
|
16645
|
+
export interface CredentialAssertedEvent {
|
16646
|
+
authenticatorId: AuthenticatorId;
|
16647
|
+
credential: Credential;
|
16648
|
+
}
|
16633
16649
|
}
|
16634
16650
|
|
16635
16651
|
/**
|