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
package/pdl/domains/Page.pdl
CHANGED
package/pdl/domains/WebAuthn.pdl
CHANGED
|
@@ -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
|
package/types/protocol.d.ts
CHANGED
|
@@ -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;
|