devtools-protocol 0.0.953752 → 0.0.957163
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.
|
@@ -1598,6 +1598,10 @@
|
|
|
1598
1598
|
"deprecated": true,
|
|
1599
1599
|
"optional": true,
|
|
1600
1600
|
"type": "string"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"name": "deprecationType",
|
|
1604
|
+
"type": "string"
|
|
1601
1605
|
}
|
|
1602
1606
|
]
|
|
1603
1607
|
},
|
|
@@ -20884,6 +20888,12 @@
|
|
|
20884
20888
|
"optional": true,
|
|
20885
20889
|
"type": "boolean"
|
|
20886
20890
|
},
|
|
20891
|
+
{
|
|
20892
|
+
"name": "hasMinPinLength",
|
|
20893
|
+
"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.",
|
|
20894
|
+
"optional": true,
|
|
20895
|
+
"type": "boolean"
|
|
20896
|
+
},
|
|
20887
20897
|
{
|
|
20888
20898
|
"name": "automaticPresenceSimulation",
|
|
20889
20899
|
"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
|
@@ -769,6 +769,7 @@ experimental domain Audits
|
|
|
769
769
|
# instead. This standard was abandoned in January, 1970. See
|
|
770
770
|
# https://www.chromestatus.com/feature/5684870116278272 for more details."
|
|
771
771
|
deprecated optional string message
|
|
772
|
+
string deprecationType
|
|
772
773
|
|
|
773
774
|
type ClientHintIssueReason extends string
|
|
774
775
|
enum
|
|
@@ -9795,6 +9796,10 @@ experimental domain WebAuthn
|
|
|
9795
9796
|
# https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension
|
|
9796
9797
|
# Defaults to false.
|
|
9797
9798
|
optional boolean hasCredBlob
|
|
9799
|
+
# If set to true, the authenticator will support the minPinLength extension.
|
|
9800
|
+
# https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
|
|
9801
|
+
# Defaults to false.
|
|
9802
|
+
optional boolean hasMinPinLength
|
|
9798
9803
|
# If set to true, tests of user presence will succeed immediately.
|
|
9799
9804
|
# Otherwise, they will not be resolved. Defaults to true.
|
|
9800
9805
|
optional boolean automaticPresenceSimulation
|
package/types/protocol.d.ts
CHANGED
|
@@ -3334,6 +3334,7 @@ export namespace Protocol {
|
|
|
3334
3334
|
* https://www.chromestatus.com/feature/5684870116278272 for more details."
|
|
3335
3335
|
*/
|
|
3336
3336
|
message?: string;
|
|
3337
|
+
deprecationType: string;
|
|
3337
3338
|
}
|
|
3338
3339
|
|
|
3339
3340
|
export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');
|
|
@@ -15647,6 +15648,12 @@ export namespace Protocol {
|
|
|
15647
15648
|
* Defaults to false.
|
|
15648
15649
|
*/
|
|
15649
15650
|
hasCredBlob?: boolean;
|
|
15651
|
+
/**
|
|
15652
|
+
* If set to true, the authenticator will support the minPinLength extension.
|
|
15653
|
+
* https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
|
|
15654
|
+
* Defaults to false.
|
|
15655
|
+
*/
|
|
15656
|
+
hasMinPinLength?: boolean;
|
|
15650
15657
|
/**
|
|
15651
15658
|
* If set to true, tests of user presence will succeed immediately.
|
|
15652
15659
|
* Otherwise, they will not be resolved. Defaults to true.
|