devtools-protocol 0.0.1676105 → 0.0.1677763

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.
@@ -1696,7 +1696,10 @@
1696
1696
  "ItemNotInnerList",
1697
1697
  "InvalidAllowlistItemType",
1698
1698
  "ReportingEndpointNotToken",
1699
- "InvalidUrlPattern"
1699
+ "InvalidUrlPattern",
1700
+ "IFrameAttributeLoosensEmbeddingRequirement",
1701
+ "InvalidAllowConnectionAllowlistFrom",
1702
+ "EmbeddingRequirementNotSatisfied"
1700
1703
  ]
1701
1704
  },
1702
1705
  {
@@ -11280,6 +11283,18 @@
11280
11283
  }
11281
11284
  ]
11282
11285
  },
11286
+ {
11287
+ "name": "setVirtualKeyboardGeometryOverride",
11288
+ "description": "Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The\nprovided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and\nenv(keyboard-inset-*) values on the inspected frame. The override applies independently of\nnavigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without\nmutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the\noverride.",
11289
+ "experimental": true,
11290
+ "parameters": [
11291
+ {
11292
+ "name": "keyboardRect",
11293
+ "optional": true,
11294
+ "$ref": "DOM.Rect"
11295
+ }
11296
+ ]
11297
+ },
11283
11298
  {
11284
11299
  "name": "setDeviceMetricsOverride",
11285
11300
  "description": "Overrides the values of device screen dimensions (window.screen.width, window.screen.height,\nwindow.innerWidth, window.innerHeight, and \"device-width\"/\"device-height\"-related CSS media\nquery results).",
@@ -17253,18 +17268,6 @@
17253
17268
  }
17254
17269
  ]
17255
17270
  },
17256
- {
17257
- "id": "ContentEncoding",
17258
- "description": "List of content encodings supported by the backend.",
17259
- "experimental": true,
17260
- "type": "string",
17261
- "enum": [
17262
- "deflate",
17263
- "gzip",
17264
- "br",
17265
- "zstd"
17266
- ]
17267
- },
17268
17271
  {
17269
17272
  "id": "NetworkConditions",
17270
17273
  "experimental": true,
@@ -18281,26 +18284,6 @@
18281
18284
  }
18282
18285
  ],
18283
18286
  "commands": [
18284
- {
18285
- "name": "setAcceptedEncodings",
18286
- "description": "Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.",
18287
- "experimental": true,
18288
- "parameters": [
18289
- {
18290
- "name": "encodings",
18291
- "description": "List of accepted content encodings.",
18292
- "type": "array",
18293
- "items": {
18294
- "$ref": "ContentEncoding"
18295
- }
18296
- }
18297
- ]
18298
- },
18299
- {
18300
- "name": "clearAcceptedEncodingsOverride",
18301
- "description": "Clears accepted encodings set by setAcceptedEncodings",
18302
- "experimental": true
18303
- },
18304
18287
  {
18305
18288
  "name": "canClearBrowserCache",
18306
18289
  "description": "Tells whether clearing browser cache is supported.",
@@ -23177,6 +23160,7 @@
23177
23160
  "EmbedderExtensionMessagingForOpenPort",
23178
23161
  "EmbedderExtensionSentMessageToCachedFrame",
23179
23162
  "EmbedderExtensionFrame",
23163
+ "EmbedderPrivilegedWebContents",
23180
23164
  "RequestedByWebViewClient",
23181
23165
  "PostMessageByWebViewClient",
23182
23166
  "CacheControlNoStoreDeviceBoundSessionTerminated",
@@ -30236,12 +30220,15 @@
30236
30220
  },
30237
30221
  {
30238
30222
  "id": "AuthenticatorTransport",
30223
+ "description": "LINT.IfChange(AuthenticatorTransport)",
30239
30224
  "type": "string",
30240
30225
  "enum": [
30241
30226
  "usb",
30242
30227
  "nfc",
30243
30228
  "ble",
30244
30229
  "cable",
30230
+ "hybrid",
30231
+ "smart-card",
30245
30232
  "internal"
30246
30233
  ]
30247
30234
  },
@@ -1040,7 +1040,8 @@
1040
1040
  },
1041
1041
  {
1042
1042
  "name": "setScriptSource",
1043
- "description": "Edits JavaScript source live.\n\nIn general, functions that are currently on the stack can not be edited with\na single exception: If the edited function is the top-most stack frame and\nthat is the only activation of that function on the stack. In this case\nthe live edit will be successful and a `Debugger.restartFrame` for the\ntop-most function is automatically triggered.",
1043
+ "description": "Live edit is no longer supported and this command always fails with a \"no longer available\" error.",
1044
+ "deprecated": true,
1044
1045
  "parameters": [
1045
1046
  {
1046
1047
  "name": "scriptId",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1676105",
3
+ "version": "0.0.1677763",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -341,6 +341,9 @@ experimental domain Audits
341
341
  InvalidAllowlistItemType
342
342
  ReportingEndpointNotToken
343
343
  InvalidUrlPattern
344
+ IFrameAttributeLoosensEmbeddingRequirement
345
+ InvalidAllowConnectionAllowlistFrom
346
+ EmbeddingRequirementNotSatisfied
344
347
 
345
348
  # Details for issues about documents in Quirks Mode
346
349
  # or Limited Quirks Mode that affects page layouting.
@@ -258,6 +258,16 @@ domain Emulation
258
258
  parameters
259
259
  SafeAreaInsets insets
260
260
 
261
+ # Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
262
+ # provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
263
+ # env(keyboard-inset-*) values on the inspected frame. The override applies independently of
264
+ # navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
265
+ # mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
266
+ # override.
267
+ experimental command setVirtualKeyboardGeometryOverride
268
+ parameters
269
+ optional DOM.Rect keyboardRect
270
+
261
271
  # Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
262
272
  # window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
263
273
  # query results).
@@ -919,22 +919,6 @@ domain Network
919
919
  # Errors occurred while handling the signed exchange.
920
920
  optional array of SignedExchangeError errors
921
921
 
922
- # List of content encodings supported by the backend.
923
- experimental type ContentEncoding extends string
924
- enum
925
- deflate
926
- gzip
927
- br
928
- zstd
929
-
930
- # Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
931
- experimental command setAcceptedEncodings
932
- parameters
933
- # List of accepted content encodings.
934
- array of ContentEncoding encodings
935
-
936
- # Clears accepted encodings set by setAcceptedEncodings
937
- experimental command clearAcceptedEncodingsOverride
938
922
 
939
923
  # Tells whether clearing browser cache is supported.
940
924
  deprecated command canClearBrowserCache
@@ -158,7 +158,9 @@ domain Page
158
158
  run-ad-auction
159
159
  screen-wake-lock
160
160
  serial
161
+ # Deprecated.
161
162
  shared-storage
163
+ # Deprecated.
162
164
  shared-storage-select-url
163
165
  smart-card
164
166
  speaker-selection
@@ -1645,6 +1647,7 @@ domain Page
1645
1647
  EmbedderExtensionMessagingForOpenPort
1646
1648
  EmbedderExtensionSentMessageToCachedFrame
1647
1649
  EmbedderExtensionFrame
1650
+ EmbedderPrivilegedWebContents
1648
1651
  RequestedByWebViewClient
1649
1652
  PostMessageByWebViewClient
1650
1653
  CacheControlNoStoreDeviceBoundSessionTerminated
@@ -22,6 +22,7 @@ experimental domain WebAuthn
22
22
  ctap2_1
23
23
  ctap2_2
24
24
 
25
+ # LINT.IfChange(AuthenticatorTransport)
25
26
  type AuthenticatorTransport extends string
26
27
  enum
27
28
  # Cross-Platform authenticator attachments:
@@ -29,8 +30,11 @@ experimental domain WebAuthn
29
30
  nfc
30
31
  ble
31
32
  cable
33
+ hybrid
34
+ smart-card
32
35
  # Platform authenticator attachment:
33
36
  internal
37
+ # LINT.ThenChange(//content/browser/devtools/protocol/webauthn_handler.cc:ConvertToFidoTransportProtocol)
34
38
 
35
39
  type VirtualAuthenticatorOptions extends object
36
40
  properties
@@ -487,14 +487,8 @@ domain Debugger
487
487
  # New return value.
488
488
  Runtime.CallArgument newValue
489
489
 
490
- # Edits JavaScript source live.
491
- #
492
- # In general, functions that are currently on the stack can not be edited with
493
- # a single exception: If the edited function is the top-most stack frame and
494
- # that is the only activation of that function on the stack. In this case
495
- # the live edit will be successful and a `Debugger.restartFrame` for the
496
- # top-most function is automatically triggered.
497
- command setScriptSource
490
+ # Live edit is no longer supported and this command always fails with a "no longer available" error.
491
+ deprecated command setScriptSource
498
492
  parameters
499
493
  # Id of the script to edit.
500
494
  Runtime.ScriptId scriptId
@@ -1343,13 +1343,8 @@ export namespace ProtocolMapping {
1343
1343
  returnType: void;
1344
1344
  };
1345
1345
  /**
1346
- * Edits JavaScript source live.
1347
- *
1348
- * In general, functions that are currently on the stack can not be edited with
1349
- * a single exception: If the edited function is the top-most stack frame and
1350
- * that is the only activation of that function on the stack. In this case
1351
- * the live edit will be successful and a `Debugger.restartFrame` for the
1352
- * top-most function is automatically triggered.
1346
+ * Live edit is no longer supported and this command always fails with a "no longer available" error.
1347
+ * @deprecated
1353
1348
  */
1354
1349
  'Debugger.setScriptSource': {
1355
1350
  paramsType: [Protocol.Debugger.SetScriptSourceRequest];
@@ -3292,6 +3287,19 @@ export namespace ProtocolMapping {
3292
3287
  paramsType: [Protocol.Emulation.SetSafeAreaInsetsOverrideRequest];
3293
3288
  returnType: void;
3294
3289
  };
3290
+ /**
3291
+ * Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
3292
+ * provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
3293
+ * env(keyboard-inset-*) values on the inspected frame. The override applies independently of
3294
+ * navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
3295
+ * mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
3296
+ * override.
3297
+ * @experimental
3298
+ */
3299
+ 'Emulation.setVirtualKeyboardGeometryOverride': {
3300
+ paramsType: [Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest?];
3301
+ returnType: void;
3302
+ };
3295
3303
  /**
3296
3304
  * Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
3297
3305
  * window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
@@ -4231,22 +4239,6 @@ export namespace ProtocolMapping {
4231
4239
  paramsType: [];
4232
4240
  returnType: Protocol.Memory.GetSamplingProfileResponse;
4233
4241
  };
4234
- /**
4235
- * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
4236
- * @experimental
4237
- */
4238
- 'Network.setAcceptedEncodings': {
4239
- paramsType: [Protocol.Network.SetAcceptedEncodingsRequest];
4240
- returnType: void;
4241
- };
4242
- /**
4243
- * Clears accepted encodings set by setAcceptedEncodings
4244
- * @experimental
4245
- */
4246
- 'Network.clearAcceptedEncodingsOverride': {
4247
- paramsType: [];
4248
- returnType: void;
4249
- };
4250
4242
  /**
4251
4243
  * Tells whether clearing browser cache is supported.
4252
4244
  * @deprecated
@@ -333,13 +333,8 @@ export namespace ProtocolProxyApi {
333
333
  setReturnValue(params: Protocol.Debugger.SetReturnValueRequest): Promise<void>;
334
334
 
335
335
  /**
336
- * Edits JavaScript source live.
337
- *
338
- * In general, functions that are currently on the stack can not be edited with
339
- * a single exception: If the edited function is the top-most stack frame and
340
- * that is the only activation of that function on the stack. In this case
341
- * the live edit will be successful and a `Debugger.restartFrame` for the
342
- * top-most function is automatically triggered.
336
+ * Live edit is no longer supported and this command always fails with a "no longer available" error.
337
+ * @deprecated
343
338
  */
344
339
  setScriptSource(params: Protocol.Debugger.SetScriptSourceRequest): Promise<Protocol.Debugger.SetScriptSourceResponse>;
345
340
 
@@ -2192,6 +2187,17 @@ export namespace ProtocolProxyApi {
2192
2187
  */
2193
2188
  setSafeAreaInsetsOverride(params: Protocol.Emulation.SetSafeAreaInsetsOverrideRequest): Promise<void>;
2194
2189
 
2190
+ /**
2191
+ * Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
2192
+ * provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
2193
+ * env(keyboard-inset-*) values on the inspected frame. The override applies independently of
2194
+ * navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
2195
+ * mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
2196
+ * override.
2197
+ * @experimental
2198
+ */
2199
+ setVirtualKeyboardGeometryOverride(params: Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest): Promise<void>;
2200
+
2195
2201
  /**
2196
2202
  * Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
2197
2203
  * window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
@@ -3039,18 +3045,6 @@ export namespace ProtocolProxyApi {
3039
3045
  }
3040
3046
 
3041
3047
  export interface NetworkApi {
3042
- /**
3043
- * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
3044
- * @experimental
3045
- */
3046
- setAcceptedEncodings(params: Protocol.Network.SetAcceptedEncodingsRequest): Promise<void>;
3047
-
3048
- /**
3049
- * Clears accepted encodings set by setAcceptedEncodings
3050
- * @experimental
3051
- */
3052
- clearAcceptedEncodingsOverride(): Promise<void>;
3053
-
3054
3048
  /**
3055
3049
  * Tells whether clearing browser cache is supported.
3056
3050
  * @deprecated
@@ -335,13 +335,8 @@ export namespace ProtocolTestsProxyApi {
335
335
  setReturnValue(params: Protocol.Debugger.SetReturnValueRequest): Promise<{id: number, result: void, sessionId: string}>;
336
336
 
337
337
  /**
338
- * Edits JavaScript source live.
339
- *
340
- * In general, functions that are currently on the stack can not be edited with
341
- * a single exception: If the edited function is the top-most stack frame and
342
- * that is the only activation of that function on the stack. In this case
343
- * the live edit will be successful and a `Debugger.restartFrame` for the
344
- * top-most function is automatically triggered.
338
+ * Live edit is no longer supported and this command always fails with a "no longer available" error.
339
+ * @deprecated
345
340
  */
346
341
  setScriptSource(params: Protocol.Debugger.SetScriptSourceRequest): Promise<{id: number, result: Protocol.Debugger.SetScriptSourceResponse, sessionId: string}>;
347
342
 
@@ -2330,6 +2325,17 @@ export namespace ProtocolTestsProxyApi {
2330
2325
  */
2331
2326
  setSafeAreaInsetsOverride(params: Protocol.Emulation.SetSafeAreaInsetsOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
2332
2327
 
2328
+ /**
2329
+ * Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
2330
+ * provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
2331
+ * env(keyboard-inset-*) values on the inspected frame. The override applies independently of
2332
+ * navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
2333
+ * mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
2334
+ * override.
2335
+ * @experimental
2336
+ */
2337
+ setVirtualKeyboardGeometryOverride(params: Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
2338
+
2333
2339
  /**
2334
2340
  * Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
2335
2341
  * window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
@@ -3215,18 +3221,6 @@ export namespace ProtocolTestsProxyApi {
3215
3221
  }
3216
3222
 
3217
3223
  export interface NetworkApi {
3218
- /**
3219
- * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
3220
- * @experimental
3221
- */
3222
- setAcceptedEncodings(params: Protocol.Network.SetAcceptedEncodingsRequest): Promise<{id: number, result: void, sessionId: string}>;
3223
-
3224
- /**
3225
- * Clears accepted encodings set by setAcceptedEncodings
3226
- * @experimental
3227
- */
3228
- clearAcceptedEncodingsOverride(): Promise<{id: number, result: void, sessionId: string}>;
3229
-
3230
3224
  /**
3231
3225
  * Tells whether clearing browser cache is supported.
3232
3226
  * @deprecated
@@ -3724,7 +3724,7 @@ export namespace Protocol {
3724
3724
 
3725
3725
  export type UnencodedDigestError = ('MalformedDictionary' | 'UnknownAlgorithm' | 'IncorrectDigestType' | 'IncorrectDigestLength');
3726
3726
 
3727
- export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern');
3727
+ export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern' | 'IFrameAttributeLoosensEmbeddingRequirement' | 'InvalidAllowConnectionAllowlistFrom' | 'EmbeddingRequirementNotSatisfied');
3728
3728
 
3729
3729
  /**
3730
3730
  * Details for issues about documents in Quirks Mode
@@ -9639,6 +9639,10 @@ export namespace Protocol {
9639
9639
  insets: SafeAreaInsets;
9640
9640
  }
9641
9641
 
9642
+ export interface SetVirtualKeyboardGeometryOverrideRequest {
9643
+ keyboardRect?: DOM.Rect;
9644
+ }
9645
+
9642
9646
  export const enum SetDeviceMetricsOverrideRequestScrollbarType {
9643
9647
  Overlay = 'overlay',
9644
9648
  Default = 'default',
@@ -13644,12 +13648,6 @@ export namespace Protocol {
13644
13648
  errors?: SignedExchangeError[];
13645
13649
  }
13646
13650
 
13647
- /**
13648
- * List of content encodings supported by the backend.
13649
- * @experimental
13650
- */
13651
- export type ContentEncoding = ('deflate' | 'gzip' | 'br' | 'zstd');
13652
-
13653
13651
  /**
13654
13652
  * @experimental
13655
13653
  */
@@ -14316,13 +14314,6 @@ export namespace Protocol {
14316
14314
  includeCredentials: boolean;
14317
14315
  }
14318
14316
 
14319
- export interface SetAcceptedEncodingsRequest {
14320
- /**
14321
- * List of accepted content encodings.
14322
- */
14323
- encodings: ContentEncoding[];
14324
- }
14325
-
14326
14317
  export interface CanClearBrowserCacheResponse {
14327
14318
  /**
14328
14319
  * True if browser cache can be cleared.
@@ -17361,7 +17352,7 @@ export namespace Protocol {
17361
17352
  * List of not restored reasons for back-forward cache.
17362
17353
  * @experimental
17363
17354
  */
17364
- 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' | 'ForwardCacheDisabled' | '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' | 'SharedWorkerWithNoActiveClient' | 'WebLocks' | 'WebLocksContention' | 'WebHID' | 'WebBluetooth' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | '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' | 'EmbedderExtensionFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
17355
+ 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' | 'ForwardCacheDisabled' | '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' | 'SharedWorkerWithNoActiveClient' | 'WebLocks' | 'WebLocksContention' | 'WebHID' | 'WebBluetooth' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | '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' | 'EmbedderExtensionFrame' | 'EmbedderPrivilegedWebContents' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
17365
17356
 
17366
17357
  /**
17367
17358
  * Types of not restored reasons for back-forward cache.
@@ -21786,7 +21777,7 @@ export namespace Protocol {
21786
21777
 
21787
21778
  export type Ctap2Version = ('ctap2_0' | 'ctap2_1' | 'ctap2_2');
21788
21779
 
21789
- export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'internal');
21780
+ export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'hybrid' | 'smart-card' | 'internal');
21790
21781
 
21791
21782
  export interface VirtualAuthenticatorOptions {
21792
21783
  protocol: AuthenticatorProtocol;