devtools-protocol 0.0.1075032 → 0.0.1077862

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.
@@ -1997,6 +1997,11 @@
1997
1997
  "items": {
1998
1998
  "$ref": "EventMetadata"
1999
1999
  }
2000
+ },
2001
+ {
2002
+ "name": "storageKey",
2003
+ "description": "Storage key this event belongs to.",
2004
+ "type": "string"
2000
2005
  }
2001
2006
  ]
2002
2007
  }
@@ -16288,6 +16293,7 @@
16288
16293
  "InjectedStyleSheet",
16289
16294
  "KeepaliveRequest",
16290
16295
  "Dummy",
16296
+ "AuthorizationHeader",
16291
16297
  "ContentSecurityHandler",
16292
16298
  "ContentWebAuthenticationAPI",
16293
16299
  "ContentFileChooser",
@@ -19187,6 +19193,7 @@
19187
19193
  "join",
19188
19194
  "leave",
19189
19195
  "update",
19196
+ "loaded",
19190
19197
  "bid",
19191
19198
  "win"
19192
19199
  ]
@@ -21190,7 +21197,7 @@
21190
21197
  },
21191
21198
  {
21192
21199
  "name": "dataCollected",
21193
- "description": "Contains an bucket of collected trace events. When tracing is stopped collected events will be\nsend as a sequence of dataCollected events followed by tracingComplete event.",
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.",
21194
21201
  "parameters": [
21195
21202
  {
21196
21203
  "name": "value",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1075032",
3
+ "version": "0.0.1077862",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1031,6 +1031,8 @@ experimental domain BackgroundService
1031
1031
  string instanceId
1032
1032
  # A list of event-specific information.
1033
1033
  array of EventMetadata eventMetadata
1034
+ # Storage key this event belongs to.
1035
+ string storageKey
1034
1036
 
1035
1037
  # Called with all existing backgroundServiceEvents when enabled, and all new
1036
1038
  # events afterwards if enabled and recording.
@@ -8421,6 +8423,7 @@ domain Page
8421
8423
  InjectedStyleSheet
8422
8424
  KeepaliveRequest
8423
8425
  Dummy
8426
+ AuthorizationHeader
8424
8427
  # Disabled for RenderFrameHost reasons
8425
8428
  # See content/browser/renderer_host/back_forward_cache_disable.h for explanations.
8426
8429
  ContentSecurityHandler
@@ -9074,6 +9077,7 @@ experimental domain Storage
9074
9077
  join
9075
9078
  leave
9076
9079
  update
9080
+ loaded
9077
9081
  bid
9078
9082
  win
9079
9083
 
@@ -10009,8 +10013,8 @@ experimental domain Tracing
10009
10013
  # total size.
10010
10014
  optional number value
10011
10015
 
10012
- # Contains an bucket of collected trace events. When tracing is stopped collected events will be
10013
- # send as a sequence of dataCollected events followed by tracingComplete event.
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.
10014
10018
  event dataCollected
10015
10019
  parameters
10016
10020
  array of object value
@@ -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 an bucket of collected trace events. When tracing is stopped collected events will be
601
- * send as a sequence of dataCollected events followed by tracingComplete event.
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
  /**
@@ -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 an bucket of collected trace events. When tracing is stopped collected events will be
3592
- * send as a sequence of dataCollected events followed by tracingComplete event.
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
 
@@ -3628,6 +3628,10 @@ export namespace Protocol {
3628
3628
  * A list of event-specific information.
3629
3629
  */
3630
3630
  eventMetadata: EventMetadata[];
3631
+ /**
3632
+ * Storage key this event belongs to.
3633
+ */
3634
+ storageKey: string;
3631
3635
  }
3632
3636
 
3633
3637
  export interface StartObservingRequest {
@@ -12819,7 +12823,7 @@ export namespace Protocol {
12819
12823
  /**
12820
12824
  * List of not restored reasons for back-forward cache.
12821
12825
  */
12822
- 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');
12823
12827
 
12824
12828
  /**
12825
12829
  * Types of not restored reasons for back-forward cache.
@@ -14577,7 +14581,7 @@ export namespace Protocol {
14577
14581
  /**
14578
14582
  * Enum of interest group access types.
14579
14583
  */
14580
- export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'bid' | 'win');
14584
+ export type InterestGroupAccessType = ('join' | 'leave' | 'update' | 'loaded' | 'bid' | 'win');
14581
14585
 
14582
14586
  /**
14583
14587
  * Ad advertising element inside an interest group.
@@ -15847,8 +15851,8 @@ export namespace Protocol {
15847
15851
  }
15848
15852
 
15849
15853
  /**
15850
- * Contains an bucket of collected trace events. When tracing is stopped collected events will be
15851
- * send as a sequence of dataCollected events followed by tracingComplete event.
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.
15852
15856
  */
15853
15857
  export interface DataCollectedEvent {
15854
15858
  value: any[];