devtools-protocol 0.0.1676105 → 0.0.1676914

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.
@@ -30236,12 +30236,15 @@
30236
30236
  },
30237
30237
  {
30238
30238
  "id": "AuthenticatorTransport",
30239
+ "description": "LINT.IfChange(AuthenticatorTransport)",
30239
30240
  "type": "string",
30240
30241
  "enum": [
30241
30242
  "usb",
30242
30243
  "nfc",
30243
30244
  "ble",
30244
30245
  "cable",
30246
+ "hybrid",
30247
+ "smart-card",
30245
30248
  "internal"
30246
30249
  ]
30247
30250
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1676105",
3
+ "version": "0.0.1676914",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -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
@@ -21786,7 +21786,7 @@ export namespace Protocol {
21786
21786
 
21787
21787
  export type Ctap2Version = ('ctap2_0' | 'ctap2_1' | 'ctap2_2');
21788
21788
 
21789
- export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'internal');
21789
+ export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'hybrid' | 'smart-card' | 'internal');
21790
21790
 
21791
21791
  export interface VirtualAuthenticatorOptions {
21792
21792
  protocol: AuthenticatorProtocol;