devtools-protocol 0.0.1475386 → 0.0.1478340

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.
@@ -1966,19 +1966,20 @@
1966
1966
  ]
1967
1967
  },
1968
1968
  {
1969
- "id": "SelectElementAccessibilityIssueReason",
1969
+ "id": "ElementAccessibilityIssueReason",
1970
1970
  "type": "string",
1971
1971
  "enum": [
1972
1972
  "DisallowedSelectChild",
1973
1973
  "DisallowedOptGroupChild",
1974
1974
  "NonPhrasingContentOptionChild",
1975
1975
  "InteractiveContentOptionChild",
1976
- "InteractiveContentLegendChild"
1976
+ "InteractiveContentLegendChild",
1977
+ "InteractiveContentSummaryDescendant"
1977
1978
  ]
1978
1979
  },
1979
1980
  {
1980
- "id": "SelectElementAccessibilityIssueDetails",
1981
- "description": "This issue warns about errors in the select element content model.",
1981
+ "id": "ElementAccessibilityIssueDetails",
1982
+ "description": "This issue warns about errors in the select or summary element content model.",
1982
1983
  "type": "object",
1983
1984
  "properties": [
1984
1985
  {
@@ -1986,8 +1987,8 @@
1986
1987
  "$ref": "DOM.BackendNodeId"
1987
1988
  },
1988
1989
  {
1989
- "name": "selectElementAccessibilityIssueReason",
1990
- "$ref": "SelectElementAccessibilityIssueReason"
1990
+ "name": "elementAccessibilityIssueReason",
1991
+ "$ref": "ElementAccessibilityIssueReason"
1991
1992
  },
1992
1993
  {
1993
1994
  "name": "hasDisallowedAttributes",
@@ -2111,7 +2112,7 @@
2111
2112
  "FederatedAuthUserInfoRequestIssue",
2112
2113
  "PropertyRuleIssue",
2113
2114
  "SharedDictionaryIssue",
2114
- "SelectElementAccessibilityIssue",
2115
+ "ElementAccessibilityIssue",
2115
2116
  "SRIMessageSignatureIssue",
2116
2117
  "UserReidentificationIssue"
2117
2118
  ]
@@ -2233,9 +2234,9 @@
2233
2234
  "$ref": "SharedDictionaryIssueDetails"
2234
2235
  },
2235
2236
  {
2236
- "name": "selectElementAccessibilityIssueDetails",
2237
+ "name": "elementAccessibilityIssueDetails",
2237
2238
  "optional": true,
2238
- "$ref": "SelectElementAccessibilityIssueDetails"
2239
+ "$ref": "ElementAccessibilityIssueDetails"
2239
2240
  },
2240
2241
  {
2241
2242
  "name": "sriMessageSignatureIssueDetails",
@@ -19549,18 +19550,6 @@
19549
19550
  }
19550
19551
  ]
19551
19552
  },
19552
- {
19553
- "id": "AutoResponseMode",
19554
- "description": "Enum of possible auto-response for permission / prompt dialogs.",
19555
- "experimental": true,
19556
- "type": "string",
19557
- "enum": [
19558
- "none",
19559
- "autoAccept",
19560
- "autoReject",
19561
- "autoOptOut"
19562
- ]
19563
- },
19564
19553
  {
19565
19554
  "id": "NavigationType",
19566
19555
  "description": "The type of a frameNavigated event.",
@@ -19657,6 +19646,7 @@
19657
19646
  "BroadcastChannel",
19658
19647
  "WebXR",
19659
19648
  "SharedWorker",
19649
+ "SharedWorkerMessage",
19660
19650
  "WebLocks",
19661
19651
  "WebHID",
19662
19652
  "WebShare",
@@ -21000,7 +20990,14 @@
21000
20990
  "parameters": [
21001
20991
  {
21002
20992
  "name": "mode",
21003
- "$ref": "AutoResponseMode"
20993
+ "type": "string",
20994
+ "enum": [
20995
+ "none",
20996
+ "autoAccept",
20997
+ "autoChooseToAuthAnotherWay",
20998
+ "autoReject",
20999
+ "autoOptOut"
21000
+ ]
21004
21001
  }
21005
21002
  ]
21006
21003
  },
@@ -21011,7 +21008,12 @@
21011
21008
  "parameters": [
21012
21009
  {
21013
21010
  "name": "mode",
21014
- "$ref": "AutoResponseMode"
21011
+ "type": "string",
21012
+ "enum": [
21013
+ "none",
21014
+ "autoAccept",
21015
+ "autoReject"
21016
+ ]
21015
21017
  }
21016
21018
  ]
21017
21019
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1475386",
3
+ "version": "0.0.1478340",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1031,19 +1031,20 @@ experimental domain Audits
1031
1031
  # Additional information about the Partitioning Blob URL issue.
1032
1032
  PartitioningBlobURLInfo partitioningBlobURLInfo
1033
1033
 
1034
- type SelectElementAccessibilityIssueReason extends string
1034
+ type ElementAccessibilityIssueReason extends string
1035
1035
  enum
1036
1036
  DisallowedSelectChild
1037
1037
  DisallowedOptGroupChild
1038
1038
  NonPhrasingContentOptionChild
1039
1039
  InteractiveContentOptionChild
1040
1040
  InteractiveContentLegendChild
1041
+ InteractiveContentSummaryDescendant
1041
1042
 
1042
- # This issue warns about errors in the select element content model.
1043
- type SelectElementAccessibilityIssueDetails extends object
1043
+ # This issue warns about errors in the select or summary element content model.
1044
+ type ElementAccessibilityIssueDetails extends object
1044
1045
  properties
1045
1046
  DOM.BackendNodeId nodeId
1046
- SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
1047
+ ElementAccessibilityIssueReason elementAccessibilityIssueReason
1047
1048
  boolean hasDisallowedAttributes
1048
1049
 
1049
1050
  type StyleSheetLoadingIssueReason extends string
@@ -1120,7 +1121,7 @@ experimental domain Audits
1120
1121
  FederatedAuthUserInfoRequestIssue
1121
1122
  PropertyRuleIssue
1122
1123
  SharedDictionaryIssue
1123
- SelectElementAccessibilityIssue
1124
+ ElementAccessibilityIssue
1124
1125
  SRIMessageSignatureIssue
1125
1126
  UserReidentificationIssue
1126
1127
 
@@ -1151,7 +1152,7 @@ experimental domain Audits
1151
1152
  optional PropertyRuleIssueDetails propertyRuleIssueDetails
1152
1153
  optional FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
1153
1154
  optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
1154
- optional SelectElementAccessibilityIssueDetails selectElementAccessibilityIssueDetails
1155
+ optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
1155
1156
  optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
1156
1157
  optional UserReidentificationIssueDetails userReidentificationIssueDetails
1157
1158
 
@@ -3517,7 +3518,8 @@ domain DOM
3517
3518
  # Get the popover target for a given element. In this case, this given
3518
3519
  # element can only be an HTMLFormControlElement (<input>, <button>).
3519
3520
  PopoverTarget
3520
- # Get the interest target for a given element.
3521
+ # Get the interestfor target (the attribute used to be named
3522
+ # `interesttarget`) for for a given element.
3521
3523
  InterestTarget
3522
3524
  # Get the commandfor target for a given element. In this case, this given
3523
3525
  # element can only be an HTMLButtonElement.
@@ -9720,25 +9722,25 @@ domain Page
9720
9722
  # Clears seeded compilation cache.
9721
9723
  experimental command clearCompilationCache
9722
9724
 
9723
- # Enum of possible auto-response for permission / prompt dialogs.
9724
- experimental type AutoResponseMode extends string
9725
- enum
9726
- none
9727
- autoAccept
9728
- autoReject
9729
- autoOptOut
9730
-
9731
9725
  # Sets the Secure Payment Confirmation transaction mode.
9732
9726
  # https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
9733
9727
  experimental command setSPCTransactionMode
9734
9728
  parameters
9735
- AutoResponseMode mode
9729
+ enum mode
9730
+ none
9731
+ autoAccept
9732
+ autoChooseToAuthAnotherWay
9733
+ autoReject
9734
+ autoOptOut
9736
9735
 
9737
9736
  # Extensions for Custom Handlers API:
9738
9737
  # https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
9739
9738
  experimental command setRPHRegistrationMode
9740
9739
  parameters
9741
- AutoResponseMode mode
9740
+ enum mode
9741
+ none
9742
+ autoAccept
9743
+ autoReject
9742
9744
 
9743
9745
  # Generates a report for testing.
9744
9746
  experimental command generateTestReport
@@ -10060,6 +10062,7 @@ domain Page
10060
10062
  BroadcastChannel
10061
10063
  WebXR
10062
10064
  SharedWorker
10065
+ SharedWorkerMessage
10063
10066
  WebLocks
10064
10067
  WebHID
10065
10068
  WebShare
@@ -3699,14 +3699,14 @@ export namespace Protocol {
3699
3699
  partitioningBlobURLInfo: PartitioningBlobURLInfo;
3700
3700
  }
3701
3701
 
3702
- export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
3702
+ export type ElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild' | 'InteractiveContentSummaryDescendant');
3703
3703
 
3704
3704
  /**
3705
- * This issue warns about errors in the select element content model.
3705
+ * This issue warns about errors in the select or summary element content model.
3706
3706
  */
3707
- export interface SelectElementAccessibilityIssueDetails {
3707
+ export interface ElementAccessibilityIssueDetails {
3708
3708
  nodeId: DOM.BackendNodeId;
3709
- selectElementAccessibilityIssueReason: SelectElementAccessibilityIssueReason;
3709
+ elementAccessibilityIssueReason: ElementAccessibilityIssueReason;
3710
3710
  hasDisallowedAttributes: boolean;
3711
3711
  }
3712
3712
 
@@ -3770,7 +3770,7 @@ export namespace Protocol {
3770
3770
  * optional fields in InspectorIssueDetails to convey more specific
3771
3771
  * information about the kind of issue.
3772
3772
  */
3773
- export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue' | 'SRIMessageSignatureIssue' | 'UserReidentificationIssue');
3773
+ export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'ElementAccessibilityIssue' | 'SRIMessageSignatureIssue' | 'UserReidentificationIssue');
3774
3774
 
3775
3775
  /**
3776
3776
  * This struct holds a list of optional fields with additional information
@@ -3800,7 +3800,7 @@ export namespace Protocol {
3800
3800
  propertyRuleIssueDetails?: PropertyRuleIssueDetails;
3801
3801
  federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
3802
3802
  sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
3803
- selectElementAccessibilityIssueDetails?: SelectElementAccessibilityIssueDetails;
3803
+ elementAccessibilityIssueDetails?: ElementAccessibilityIssueDetails;
3804
3804
  sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
3805
3805
  userReidentificationIssueDetails?: UserReidentificationIssueDetails;
3806
3806
  }
@@ -14688,11 +14688,6 @@ export namespace Protocol {
14688
14688
  themeColor?: string;
14689
14689
  }
14690
14690
 
14691
- /**
14692
- * Enum of possible auto-response for permission / prompt dialogs.
14693
- */
14694
- export type AutoResponseMode = ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
14695
-
14696
14691
  /**
14697
14692
  * The type of a frameNavigated event.
14698
14693
  */
@@ -14701,7 +14696,7 @@ export namespace Protocol {
14701
14696
  /**
14702
14697
  * List of not restored reasons for back-forward cache.
14703
14698
  */
14704
- 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' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
14699
+ 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' | 'SharedWorkerMessage' | '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' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
14705
14700
 
14706
14701
  /**
14707
14702
  * Types of not restored reasons for back-forward cache.
@@ -15485,12 +15480,32 @@ export namespace Protocol {
15485
15480
  data: string;
15486
15481
  }
15487
15482
 
15483
+ export const enum SetSPCTransactionModeRequestMode {
15484
+ None = 'none',
15485
+ AutoAccept = 'autoAccept',
15486
+ AutoChooseToAuthAnotherWay = 'autoChooseToAuthAnotherWay',
15487
+ AutoReject = 'autoReject',
15488
+ AutoOptOut = 'autoOptOut',
15489
+ }
15490
+
15488
15491
  export interface SetSPCTransactionModeRequest {
15489
- mode: AutoResponseMode;
15492
+ /**
15493
+ * (SetSPCTransactionModeRequestMode enum)
15494
+ */
15495
+ mode: ('none' | 'autoAccept' | 'autoChooseToAuthAnotherWay' | 'autoReject' | 'autoOptOut');
15496
+ }
15497
+
15498
+ export const enum SetRPHRegistrationModeRequestMode {
15499
+ None = 'none',
15500
+ AutoAccept = 'autoAccept',
15501
+ AutoReject = 'autoReject',
15490
15502
  }
15491
15503
 
15492
15504
  export interface SetRPHRegistrationModeRequest {
15493
- mode: AutoResponseMode;
15505
+ /**
15506
+ * (SetRPHRegistrationModeRequestMode enum)
15507
+ */
15508
+ mode: ('none' | 'autoAccept' | 'autoReject');
15494
15509
  }
15495
15510
 
15496
15511
  export interface GenerateTestReportRequest {