devtools-protocol 0.0.1323829 → 0.0.1325288

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.
@@ -1607,7 +1607,6 @@
1607
1607
  "id": "GenericIssueErrorType",
1608
1608
  "type": "string",
1609
1609
  "enum": [
1610
- "CrossOriginPortalPostMessageError",
1611
1610
  "FormLabelForNameError",
1612
1611
  "FormDuplicateIdForInputError",
1613
1612
  "FormInputWithNoLabelError",
@@ -9882,6 +9881,108 @@
9882
9881
  }
9883
9882
  ]
9884
9883
  },
9884
+ {
9885
+ "domain": "FileSystem",
9886
+ "experimental": true,
9887
+ "dependencies": [
9888
+ "Network",
9889
+ "Storage"
9890
+ ],
9891
+ "types": [
9892
+ {
9893
+ "id": "File",
9894
+ "type": "object",
9895
+ "properties": [
9896
+ {
9897
+ "name": "name",
9898
+ "type": "string"
9899
+ },
9900
+ {
9901
+ "name": "lastModified",
9902
+ "description": "Timestamp",
9903
+ "$ref": "Network.TimeSinceEpoch"
9904
+ },
9905
+ {
9906
+ "name": "size",
9907
+ "description": "Size in bytes",
9908
+ "type": "number"
9909
+ },
9910
+ {
9911
+ "name": "type",
9912
+ "type": "string"
9913
+ }
9914
+ ]
9915
+ },
9916
+ {
9917
+ "id": "Directory",
9918
+ "type": "object",
9919
+ "properties": [
9920
+ {
9921
+ "name": "name",
9922
+ "type": "string"
9923
+ },
9924
+ {
9925
+ "name": "nestedDirectories",
9926
+ "type": "array",
9927
+ "items": {
9928
+ "type": "string"
9929
+ }
9930
+ },
9931
+ {
9932
+ "name": "nestedFiles",
9933
+ "description": "Files that are directly nested under this directory.",
9934
+ "type": "array",
9935
+ "items": {
9936
+ "$ref": "File"
9937
+ }
9938
+ }
9939
+ ]
9940
+ },
9941
+ {
9942
+ "id": "BucketFileSystemLocator",
9943
+ "type": "object",
9944
+ "properties": [
9945
+ {
9946
+ "name": "storageKey",
9947
+ "description": "Storage key",
9948
+ "$ref": "Storage.SerializedStorageKey"
9949
+ },
9950
+ {
9951
+ "name": "bucketName",
9952
+ "description": "Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)",
9953
+ "optional": true,
9954
+ "type": "string"
9955
+ },
9956
+ {
9957
+ "name": "pathComponents",
9958
+ "description": "Path to the directory using each path component as an array item.",
9959
+ "type": "array",
9960
+ "items": {
9961
+ "type": "string"
9962
+ }
9963
+ }
9964
+ ]
9965
+ }
9966
+ ],
9967
+ "commands": [
9968
+ {
9969
+ "name": "getDirectory",
9970
+ "parameters": [
9971
+ {
9972
+ "name": "bucketFileSystemLocator",
9973
+ "$ref": "BucketFileSystemLocator"
9974
+ }
9975
+ ],
9976
+ "returns": [
9977
+ {
9978
+ "name": "directory",
9979
+ "description": "Returns the directory object at the path.",
9980
+ "$ref": "Directory"
9981
+ }
9982
+ ]
9983
+ }
9984
+ ]
9985
+ },
9885
9986
  {
9886
9987
  "domain": "IndexedDB",
9887
9988
  "experimental": true,
@@ -18177,7 +18278,6 @@
18177
18278
  "Printing",
18178
18279
  "WebDatabase",
18179
18280
  "PictureInPicture",
18180
- "Portal",
18181
18281
  "SpeechRecognizer",
18182
18282
  "IdleManager",
18183
18283
  "PaymentManager",
@@ -21617,6 +21717,10 @@
21617
21717
  "name": "value",
21618
21718
  "description": "number instead of integer because not all uint32 can be represented by\nint",
21619
21719
  "type": "number"
21720
+ },
21721
+ {
21722
+ "name": "filteringId",
21723
+ "$ref": "UnsignedInt64AsBase10"
21620
21724
  }
21621
21725
  ]
21622
21726
  },
@@ -21742,6 +21846,10 @@
21742
21846
  "$ref": "AttributionReportingAggregatableValueEntry"
21743
21847
  }
21744
21848
  },
21849
+ {
21850
+ "name": "aggregatableFilteringIdMaxBytes",
21851
+ "type": "integer"
21852
+ },
21745
21853
  {
21746
21854
  "name": "debugReporting",
21747
21855
  "type": "boolean"
@@ -23019,7 +23127,7 @@
23019
23127
  },
23020
23128
  {
23021
23129
  "name": "subtype",
23022
- "description": "Provides additional details for specific target types. For example, for\nthe type of \"page\", this may be set to \"portal\" or \"prerender\".",
23130
+ "description": "Provides additional details for specific target types. For example, for\nthe type of \"page\", this may be set to \"prerender\".",
23023
23131
  "experimental": true,
23024
23132
  "optional": true,
23025
23133
  "type": "string"
@@ -25777,7 +25885,8 @@
25777
25885
  "ActivationUrlHasEffectiveUrl",
25778
25886
  "JavaScriptInterfaceAdded",
25779
25887
  "JavaScriptInterfaceRemoved",
25780
- "AllPrerenderingCanceled"
25888
+ "AllPrerenderingCanceled",
25889
+ "WindowClosed"
25781
25890
  ]
25782
25891
  },
25783
25892
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1323829",
3
+ "version": "0.0.1325288",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -803,7 +803,6 @@ experimental domain Audits
803
803
 
804
804
  type GenericIssueErrorType extends string
805
805
  enum
806
- CrossOriginPortalPostMessageError
807
806
  FormLabelForNameError
808
807
  FormDuplicateIdForInputError
809
808
  FormInputWithNoLabelError
@@ -4560,6 +4559,42 @@ domain IO
4560
4559
  # UUID of the specified Blob.
4561
4560
  string uuid
4562
4561
 
4562
+ experimental domain FileSystem
4563
+ depends on Network
4564
+ depends on Storage
4565
+
4566
+ type File extends object
4567
+ properties
4568
+ string name
4569
+ # Timestamp
4570
+ Network.TimeSinceEpoch lastModified
4571
+ # Size in bytes
4572
+ number size
4573
+ string type
4574
+
4575
+ type Directory extends object
4576
+ properties
4577
+ string name
4578
+ array of string nestedDirectories
4579
+ # Files that are directly nested under this directory.
4580
+ array of File nestedFiles
4581
+
4582
+ type BucketFileSystemLocator extends object
4583
+ properties
4584
+ # Storage key
4585
+ Storage.SerializedStorageKey storageKey
4586
+ # Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)
4587
+ optional string bucketName
4588
+ # Path to the directory using each path component as an array item.
4589
+ array of string pathComponents
4590
+
4591
+ command getDirectory
4592
+ parameters
4593
+ BucketFileSystemLocator bucketFileSystemLocator
4594
+ returns
4595
+ # Returns the directory object at the path.
4596
+ Directory directory
4597
+
4563
4598
  experimental domain IndexedDB
4564
4599
  depends on Runtime
4565
4600
  depends on Storage
@@ -9295,7 +9330,6 @@ domain Page
9295
9330
  Printing
9296
9331
  WebDatabase
9297
9332
  PictureInPicture
9298
- Portal
9299
9333
  SpeechRecognizer
9300
9334
  IdleManager
9301
9335
  PaymentManager
@@ -10537,6 +10571,8 @@ experimental domain Storage
10537
10571
  # number instead of integer because not all uint32 can be represented by
10538
10572
  # int
10539
10573
  number value
10574
+ UnsignedInt64AsBase10 filteringId
10575
+
10540
10576
 
10541
10577
  experimental type AttributionReportingAggregatableValueEntry extends object
10542
10578
  properties
@@ -10569,6 +10605,7 @@ experimental domain Storage
10569
10605
  array of AttributionReportingEventTriggerData eventTriggerData
10570
10606
  array of AttributionReportingAggregatableTriggerData aggregatableTriggerData
10571
10607
  array of AttributionReportingAggregatableValueEntry aggregatableValues
10608
+ integer aggregatableFilteringIdMaxBytes
10572
10609
  boolean debugReporting
10573
10610
  optional string aggregationCoordinatorOrigin
10574
10611
  AttributionReportingSourceRegistrationTimeConfig sourceRegistrationTimeConfig
@@ -10800,7 +10837,7 @@ domain Target
10800
10837
  experimental optional Page.FrameId openerFrameId
10801
10838
  experimental optional Browser.BrowserContextID browserContextId
10802
10839
  # Provides additional details for specific target types. For example, for
10803
- # the type of "page", this may be set to "portal" or "prerender".
10840
+ # the type of "page", this may be set to "prerender".
10804
10841
  experimental optional string subtype
10805
10842
 
10806
10843
  # A filter used by target query/discovery/auto-attach operations.
@@ -12188,6 +12225,7 @@ experimental domain Preload
12188
12225
  JavaScriptInterfaceAdded
12189
12226
  JavaScriptInterfaceRemoved
12190
12227
  AllPrerenderingCanceled
12228
+ WindowClosed
12191
12229
 
12192
12230
  # Fired when a preload enabled state is updated.
12193
12231
  event preloadEnabledStateUpdated
@@ -2869,6 +2869,10 @@ export namespace ProtocolMapping {
2869
2869
  paramsType: [Protocol.IO.ResolveBlobRequest];
2870
2870
  returnType: Protocol.IO.ResolveBlobResponse;
2871
2871
  };
2872
+ 'FileSystem.getDirectory': {
2873
+ paramsType: [Protocol.FileSystem.GetDirectoryRequest];
2874
+ returnType: Protocol.FileSystem.GetDirectoryResponse;
2875
+ };
2872
2876
  /**
2873
2877
  * Clears all entries from an object store.
2874
2878
  */
@@ -62,6 +62,8 @@ export namespace ProtocolProxyApi {
62
62
 
63
63
  IO: IOApi;
64
64
 
65
+ FileSystem: FileSystemApi;
66
+
65
67
  IndexedDB: IndexedDBApi;
66
68
 
67
69
  Input: InputApi;
@@ -1999,6 +2001,11 @@ export namespace ProtocolProxyApi {
1999
2001
 
2000
2002
  }
2001
2003
 
2004
+ export interface FileSystemApi {
2005
+ getDirectory(params: Protocol.FileSystem.GetDirectoryRequest): Promise<Protocol.FileSystem.GetDirectoryResponse>;
2006
+
2007
+ }
2008
+
2002
2009
  export interface IndexedDBApi {
2003
2010
  /**
2004
2011
  * Clears all entries from an object store.
@@ -62,6 +62,8 @@ export namespace ProtocolTestsProxyApi {
62
62
 
63
63
  IO: IOApi;
64
64
 
65
+ FileSystem: FileSystemApi;
66
+
65
67
  IndexedDB: IndexedDBApi;
66
68
 
67
69
  Input: InputApi;
@@ -2123,6 +2125,11 @@ export namespace ProtocolTestsProxyApi {
2123
2125
 
2124
2126
  }
2125
2127
 
2128
+ export interface FileSystemApi {
2129
+ getDirectory(params: Protocol.FileSystem.GetDirectoryRequest): Promise<{id: number, result: Protocol.FileSystem.GetDirectoryResponse, sessionId: string}>;
2130
+
2131
+ }
2132
+
2126
2133
  export interface IndexedDBApi {
2127
2134
  /**
2128
2135
  * Clears all entries from an object store.
@@ -3513,7 +3513,7 @@ export namespace Protocol {
3513
3513
  request: AffectedRequest;
3514
3514
  }
3515
3515
 
3516
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB');
3516
+ export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB');
3517
3517
 
3518
3518
  /**
3519
3519
  * Depending on the concrete errorType, different properties are set.
@@ -8654,6 +8654,57 @@ export namespace Protocol {
8654
8654
  }
8655
8655
  }
8656
8656
 
8657
+ export namespace FileSystem {
8658
+
8659
+ export interface File {
8660
+ name: string;
8661
+ /**
8662
+ * Timestamp
8663
+ */
8664
+ lastModified: Network.TimeSinceEpoch;
8665
+ /**
8666
+ * Size in bytes
8667
+ */
8668
+ size: number;
8669
+ type: string;
8670
+ }
8671
+
8672
+ export interface Directory {
8673
+ name: string;
8674
+ nestedDirectories: string[];
8675
+ /**
8676
+ * Files that are directly nested under this directory.
8677
+ */
8678
+ nestedFiles: File[];
8679
+ }
8680
+
8681
+ export interface BucketFileSystemLocator {
8682
+ /**
8683
+ * Storage key
8684
+ */
8685
+ storageKey: Storage.SerializedStorageKey;
8686
+ /**
8687
+ * Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)
8688
+ */
8689
+ bucketName?: string;
8690
+ /**
8691
+ * Path to the directory using each path component as an array item.
8692
+ */
8693
+ pathComponents: string[];
8694
+ }
8695
+
8696
+ export interface GetDirectoryRequest {
8697
+ bucketFileSystemLocator: BucketFileSystemLocator;
8698
+ }
8699
+
8700
+ export interface GetDirectoryResponse {
8701
+ /**
8702
+ * Returns the directory object at the path.
8703
+ */
8704
+ directory: Directory;
8705
+ }
8706
+ }
8707
+
8657
8708
  export namespace IndexedDB {
8658
8709
 
8659
8710
  /**
@@ -13883,7 +13934,7 @@ export namespace Protocol {
13883
13934
  /**
13884
13935
  * List of not restored reasons for back-forward cache.
13885
13936
  */
13886
- 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' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | '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' | 'RequestedByWebViewClient');
13937
+ 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' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | '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' | 'RequestedByWebViewClient');
13887
13938
 
13888
13939
  /**
13889
13940
  * Types of not restored reasons for back-forward cache.
@@ -15899,6 +15950,7 @@ export namespace Protocol {
15899
15950
  * int
15900
15951
  */
15901
15952
  value: number;
15953
+ filteringId: UnsignedInt64AsBase10;
15902
15954
  }
15903
15955
 
15904
15956
  export interface AttributionReportingAggregatableValueEntry {
@@ -15931,6 +15983,7 @@ export namespace Protocol {
15931
15983
  eventTriggerData: AttributionReportingEventTriggerData[];
15932
15984
  aggregatableTriggerData: AttributionReportingAggregatableTriggerData[];
15933
15985
  aggregatableValues: AttributionReportingAggregatableValueEntry[];
15986
+ aggregatableFilteringIdMaxBytes: integer;
15934
15987
  debugReporting: boolean;
15935
15988
  aggregationCoordinatorOrigin?: string;
15936
15989
  sourceRegistrationTimeConfig: AttributionReportingSourceRegistrationTimeConfig;
@@ -16690,7 +16743,7 @@ export namespace Protocol {
16690
16743
  browserContextId?: Browser.BrowserContextID;
16691
16744
  /**
16692
16745
  * Provides additional details for specific target types. For example, for
16693
- * the type of "page", this may be set to "portal" or "prerender".
16746
+ * the type of "page", this may be set to "prerender".
16694
16747
  */
16695
16748
  subtype?: string;
16696
16749
  }
@@ -18364,7 +18417,7 @@ export namespace Protocol {
18364
18417
  /**
18365
18418
  * List of FinalStatus reasons for Prerender2.
18366
18419
  */
18367
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl' | 'JavaScriptInterfaceAdded' | 'JavaScriptInterfaceRemoved' | 'AllPrerenderingCanceled');
18420
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl' | 'JavaScriptInterfaceAdded' | 'JavaScriptInterfaceRemoved' | 'AllPrerenderingCanceled' | 'WindowClosed');
18368
18421
 
18369
18422
  /**
18370
18423
  * Preloading status values, see also PreloadingTriggeringOutcome. This