devtools-protocol 0.0.953752 → 0.0.953906
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.
|
@@ -20884,6 +20884,12 @@
|
|
|
20884
20884
|
"optional": true,
|
|
20885
20885
|
"type": "boolean"
|
|
20886
20886
|
},
|
|
20887
|
+
{
|
|
20888
|
+
"name": "hasMinPinLength",
|
|
20889
|
+
"description": "If set to true, the authenticator will support the minPinLength extension.\nhttps://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension\nDefaults to false.",
|
|
20890
|
+
"optional": true,
|
|
20891
|
+
"type": "boolean"
|
|
20892
|
+
},
|
|
20887
20893
|
{
|
|
20888
20894
|
"name": "automaticPresenceSimulation",
|
|
20889
20895
|
"description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -9795,6 +9795,10 @@ experimental domain WebAuthn
|
|
|
9795
9795
|
# https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension
|
|
9796
9796
|
# Defaults to false.
|
|
9797
9797
|
optional boolean hasCredBlob
|
|
9798
|
+
# If set to true, the authenticator will support the minPinLength extension.
|
|
9799
|
+
# https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
|
|
9800
|
+
# Defaults to false.
|
|
9801
|
+
optional boolean hasMinPinLength
|
|
9798
9802
|
# If set to true, tests of user presence will succeed immediately.
|
|
9799
9803
|
# Otherwise, they will not be resolved. Defaults to true.
|
|
9800
9804
|
optional boolean automaticPresenceSimulation
|
package/types/protocol.d.ts
CHANGED
|
@@ -15647,6 +15647,12 @@ export namespace Protocol {
|
|
|
15647
15647
|
* Defaults to false.
|
|
15648
15648
|
*/
|
|
15649
15649
|
hasCredBlob?: boolean;
|
|
15650
|
+
/**
|
|
15651
|
+
* If set to true, the authenticator will support the minPinLength extension.
|
|
15652
|
+
* https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
|
|
15653
|
+
* Defaults to false.
|
|
15654
|
+
*/
|
|
15655
|
+
hasMinPinLength?: boolean;
|
|
15650
15656
|
/**
|
|
15651
15657
|
* If set to true, tests of user presence will succeed immediately.
|
|
15652
15658
|
* Otherwise, they will not be resolved. Defaults to true.
|