devtools-protocol 0.0.963043 → 0.0.964215

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.
@@ -1591,6 +1591,42 @@
1591
1591
  "MetaTagModifiedHTML"
1592
1592
  ]
1593
1593
  },
1594
+ {
1595
+ "id": "FederatedAuthRequestIssueDetails",
1596
+ "type": "object",
1597
+ "properties": [
1598
+ {
1599
+ "name": "federatedAuthRequestIssueReason",
1600
+ "$ref": "FederatedAuthRequestIssueReason"
1601
+ }
1602
+ ]
1603
+ },
1604
+ {
1605
+ "id": "FederatedAuthRequestIssueReason",
1606
+ "description": "Represents the failure reason when a federated authentication reason fails.\nShould be updated alongside RequestIdTokenStatus in\nthird_party/blink/public/mojom/webid/federated_auth_request.mojom to include\nall cases except for success.",
1607
+ "type": "string",
1608
+ "enum": [
1609
+ "ApprovalDeclined",
1610
+ "TooManyRequests",
1611
+ "WellKnownHttpNotFound",
1612
+ "WellKnownNoResponse",
1613
+ "WellKnownInvalidResponse",
1614
+ "ClientIdMetadataHttpNotFound",
1615
+ "ClientIdMetadataNoResponse",
1616
+ "ClientIdMetadataInvalidResponse",
1617
+ "ErrorFetchingSignin",
1618
+ "InvalidSigninResponse",
1619
+ "AccountsHttpNotFound",
1620
+ "AccountsNoResponse",
1621
+ "AccountsInvalidResponse",
1622
+ "IdTokenHttpNotFound",
1623
+ "IdTokenNoResponse",
1624
+ "IdTokenInvalidResponse",
1625
+ "IdTokenInvalidRequest",
1626
+ "ErrorIdToken",
1627
+ "Canceled"
1628
+ ]
1629
+ },
1594
1630
  {
1595
1631
  "id": "ClientHintIssueDetails",
1596
1632
  "description": "This issue tracks client hints related issues. It's used to deprecate old\nfeatures, encourage the use of new ones, and provide general guidance.",
@@ -1625,7 +1661,8 @@
1625
1661
  "NavigatorUserAgentIssue",
1626
1662
  "GenericIssue",
1627
1663
  "DeprecationIssue",
1628
- "ClientHintIssue"
1664
+ "ClientHintIssue",
1665
+ "FederatedAuthRequestIssue"
1629
1666
  ]
1630
1667
  },
1631
1668
  {
@@ -1707,6 +1744,11 @@
1707
1744
  "name": "clientHintIssueDetails",
1708
1745
  "optional": true,
1709
1746
  "$ref": "ClientHintIssueDetails"
1747
+ },
1748
+ {
1749
+ "name": "federatedAuthRequestIssueDetails",
1750
+ "optional": true,
1751
+ "$ref": "FederatedAuthRequestIssueDetails"
1710
1752
  }
1711
1753
  ]
1712
1754
  },
@@ -4844,7 +4886,20 @@
4844
4886
  },
4845
4887
  {
4846
4888
  "name": "enable",
4847
- "description": "Enables DOM agent for the given page."
4889
+ "description": "Enables DOM agent for the given page.",
4890
+ "parameters": [
4891
+ {
4892
+ "name": "includeWhitespace",
4893
+ "description": "Whether to include whitespaces in the children array of returned Nodes.",
4894
+ "experimental": true,
4895
+ "optional": true,
4896
+ "type": "string",
4897
+ "enum": [
4898
+ "none",
4899
+ "all"
4900
+ ]
4901
+ }
4902
+ ]
4848
4903
  },
4849
4904
  {
4850
4905
  "name": "focus",
@@ -11757,7 +11812,8 @@
11757
11812
  "SameOrigin",
11758
11813
  "SameOriginAllowPopups",
11759
11814
  "UnsafeNone",
11760
- "SameOriginPlusCoep"
11815
+ "SameOriginPlusCoep",
11816
+ "SameOriginAllowPopupsPlusCoep"
11761
11817
  ]
11762
11818
  },
11763
11819
  {
@@ -14705,6 +14761,7 @@
14705
14761
  "ch-ua-platform",
14706
14762
  "ch-ua-model",
14707
14763
  "ch-ua-mobile",
14764
+ "ch-ua-full",
14708
14765
  "ch-ua-full-version",
14709
14766
  "ch-ua-full-version-list",
14710
14767
  "ch-ua-platform-version",
@@ -15566,7 +15623,7 @@
15566
15623
  "experimental": true,
15567
15624
  "type": "string",
15568
15625
  "enum": [
15569
- "NotMainFrame",
15626
+ "NotPrimaryMainFrame",
15570
15627
  "BackForwardCacheDisabled",
15571
15628
  "RelatedActiveContentsExist",
15572
15629
  "HTTPStatusNotOK",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.963043",
3
+ "version": "0.0.964215",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -773,6 +773,36 @@ experimental domain Audits
773
773
  # are respected. Any injected via javascript (or other means) are ignored.
774
774
  MetaTagModifiedHTML
775
775
 
776
+ type FederatedAuthRequestIssueDetails extends object
777
+ properties
778
+ FederatedAuthRequestIssueReason federatedAuthRequestIssueReason
779
+
780
+ # Represents the failure reason when a federated authentication reason fails.
781
+ # Should be updated alongside RequestIdTokenStatus in
782
+ # third_party/blink/public/mojom/webid/federated_auth_request.mojom to include
783
+ # all cases except for success.
784
+ type FederatedAuthRequestIssueReason extends string
785
+ enum
786
+ ApprovalDeclined
787
+ TooManyRequests
788
+ WellKnownHttpNotFound
789
+ WellKnownNoResponse
790
+ WellKnownInvalidResponse
791
+ ClientIdMetadataHttpNotFound
792
+ ClientIdMetadataNoResponse
793
+ ClientIdMetadataInvalidResponse
794
+ ErrorFetchingSignin
795
+ InvalidSigninResponse
796
+ AccountsHttpNotFound
797
+ AccountsNoResponse
798
+ AccountsInvalidResponse
799
+ IdTokenHttpNotFound
800
+ IdTokenNoResponse
801
+ IdTokenInvalidResponse
802
+ IdTokenInvalidRequest
803
+ ErrorIdToken
804
+ Canceled
805
+
776
806
  # This issue tracks client hints related issues. It's used to deprecate old
777
807
  # features, encourage the use of new ones, and provide general guidance.
778
808
  type ClientHintIssueDetails extends object
@@ -800,6 +830,7 @@ experimental domain Audits
800
830
  GenericIssue
801
831
  DeprecationIssue
802
832
  ClientHintIssue
833
+ FederatedAuthRequestIssue
803
834
 
804
835
  # This struct holds a list of optional fields with additional information
805
836
  # specific to the kind of issue. When adding a new issue code, please also
@@ -821,6 +852,7 @@ experimental domain Audits
821
852
  optional GenericIssueDetails genericIssueDetails
822
853
  optional DeprecationIssueDetails deprecationIssueDetails
823
854
  optional ClientHintIssueDetails clientHintIssueDetails
855
+ optional FederatedAuthRequestIssueDetails federatedAuthRequestIssueDetails
824
856
 
825
857
  # A unique id for a DevTools inspector issue. Allows other entities (e.g.
826
858
  # exceptions, CDP message, console messages, etc.) to reference an issue.
@@ -2259,6 +2291,13 @@ domain DOM
2259
2291
 
2260
2292
  # Enables DOM agent for the given page.
2261
2293
  command enable
2294
+ parameters
2295
+ # Whether to include whitespaces in the children array of returned Nodes.
2296
+ experimental optional enum includeWhitespace
2297
+ # Strip whitespaces from child arrays (default).
2298
+ none
2299
+ # Return all children including block-level whitespace nodes.
2300
+ all
2262
2301
 
2263
2302
  # Focuses the given element.
2264
2303
  command focus
@@ -6147,6 +6186,7 @@ domain Network
6147
6186
  SameOriginAllowPopups
6148
6187
  UnsafeNone
6149
6188
  SameOriginPlusCoep
6189
+ SameOriginAllowPopupsPlusCoep
6150
6190
 
6151
6191
  experimental type CrossOriginOpenerPolicyStatus extends object
6152
6192
  properties
@@ -6836,6 +6876,7 @@ domain Page
6836
6876
  ch-ua-platform
6837
6877
  ch-ua-model
6838
6878
  ch-ua-mobile
6879
+ ch-ua-full
6839
6880
  ch-ua-full-version
6840
6881
  ch-ua-full-version-list
6841
6882
  ch-ua-platform-version
@@ -7961,7 +8002,7 @@ domain Page
7961
8002
  # List of not restored reasons for back-forward cache.
7962
8003
  experimental type BackForwardCacheNotRestoredReason extends string
7963
8004
  enum
7964
- NotMainFrame
8005
+ NotPrimaryMainFrame
7965
8006
  BackForwardCacheDisabled
7966
8007
  RelatedActiveContentsExist
7967
8008
  HTTPStatusNotOK
@@ -1866,7 +1866,7 @@ export namespace ProtocolMapping {
1866
1866
  * Enables DOM agent for the given page.
1867
1867
  */
1868
1868
  'DOM.enable': {
1869
- paramsType: [];
1869
+ paramsType: [Protocol.DOM.EnableRequest?];
1870
1870
  returnType: void;
1871
1871
  };
1872
1872
  /**
@@ -1182,7 +1182,7 @@ export namespace ProtocolProxyApi {
1182
1182
  /**
1183
1183
  * Enables DOM agent for the given page.
1184
1184
  */
1185
- enable(): Promise<void>;
1185
+ enable(params: Protocol.DOM.EnableRequest): Promise<void>;
1186
1186
 
1187
1187
  /**
1188
1188
  * Focuses the given element.
@@ -3332,6 +3332,18 @@ export namespace Protocol {
3332
3332
 
3333
3333
  export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');
3334
3334
 
3335
+ export interface FederatedAuthRequestIssueDetails {
3336
+ federatedAuthRequestIssueReason: FederatedAuthRequestIssueReason;
3337
+ }
3338
+
3339
+ /**
3340
+ * Represents the failure reason when a federated authentication reason fails.
3341
+ * Should be updated alongside RequestIdTokenStatus in
3342
+ * third_party/blink/public/mojom/webid/federated_auth_request.mojom to include
3343
+ * all cases except for success.
3344
+ */
3345
+ export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'ClientIdMetadataHttpNotFound' | 'ClientIdMetadataNoResponse' | 'ClientIdMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3346
+
3335
3347
  /**
3336
3348
  * This issue tracks client hints related issues. It's used to deprecate old
3337
3349
  * features, encourage the use of new ones, and provide general guidance.
@@ -3346,7 +3358,7 @@ export namespace Protocol {
3346
3358
  * optional fields in InspectorIssueDetails to convey more specific
3347
3359
  * information about the kind of issue.
3348
3360
  */
3349
- export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue');
3361
+ export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue');
3350
3362
 
3351
3363
  /**
3352
3364
  * This struct holds a list of optional fields with additional information
@@ -3369,6 +3381,7 @@ export namespace Protocol {
3369
3381
  genericIssueDetails?: GenericIssueDetails;
3370
3382
  deprecationIssueDetails?: DeprecationIssueDetails;
3371
3383
  clientHintIssueDetails?: ClientHintIssueDetails;
3384
+ federatedAuthRequestIssueDetails?: FederatedAuthRequestIssueDetails;
3372
3385
  }
3373
3386
 
3374
3387
  /**
@@ -5412,6 +5425,18 @@ export namespace Protocol {
5412
5425
  searchId: string;
5413
5426
  }
5414
5427
 
5428
+ export const enum EnableRequestIncludeWhitespace {
5429
+ None = 'none',
5430
+ All = 'all',
5431
+ }
5432
+
5433
+ export interface EnableRequest {
5434
+ /**
5435
+ * Whether to include whitespaces in the children array of returned Nodes. (EnableRequestIncludeWhitespace enum)
5436
+ */
5437
+ includeWhitespace?: ('none' | 'all');
5438
+ }
5439
+
5415
5440
  export interface FocusRequest {
5416
5441
  /**
5417
5442
  * Identifier of the node.
@@ -9914,7 +9939,7 @@ export namespace Protocol {
9914
9939
  privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
9915
9940
  }
9916
9941
 
9917
- export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'UnsafeNone' | 'SameOriginPlusCoep');
9942
+ export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'UnsafeNone' | 'SameOriginPlusCoep' | 'SameOriginAllowPopupsPlusCoep');
9918
9943
 
9919
9944
  export interface CrossOriginOpenerPolicyStatus {
9920
9945
  value: CrossOriginOpenerPolicyValue;
@@ -11877,7 +11902,7 @@ export namespace Protocol {
11877
11902
  * All Permissions Policy features. This enum should match the one defined
11878
11903
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
11879
11904
  */
11880
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
11905
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
11881
11906
 
11882
11907
  /**
11883
11908
  * Reason for a permissions policy feature to be disabled.
@@ -12376,7 +12401,7 @@ export namespace Protocol {
12376
12401
  /**
12377
12402
  * List of not restored reasons for back-forward cache.
12378
12403
  */
12379
- export type BackForwardCacheNotRestoredReason = ('NotMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | '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' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | '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' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
12404
+ export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | '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' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | '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' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
12380
12405
 
12381
12406
  /**
12382
12407
  * Types of not restored reasons for back-forward cache.