devtools-protocol 0.0.1686980 → 0.0.1687809
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.
|
@@ -30125,7 +30125,7 @@
|
|
|
30125
30125
|
{
|
|
30126
30126
|
"name": "signCount",
|
|
30127
30127
|
"description": "Signature counter. Must be equal to or greater than -1.\nIf -1, the credential won't have an associated signature counter, and\nevery assertion operation will report a value of 0.\nSee https://w3c.github.io/webauthn/#signature-counter",
|
|
30128
|
-
"type": "
|
|
30128
|
+
"type": "number"
|
|
30129
30129
|
},
|
|
30130
30130
|
{
|
|
30131
30131
|
"name": "largeBlob",
|
|
@@ -30393,7 +30393,7 @@
|
|
|
30393
30393
|
"name": "signCount",
|
|
30394
30394
|
"description": "Must be equal to or greater than -1.\nIf -1, the signature counter is removed from the credential, and every\nassertion operation will report a value of 0.\nSee https://w3c.github.io/webauthn/#signature-counter",
|
|
30395
30395
|
"optional": true,
|
|
30396
|
-
"type": "
|
|
30396
|
+
"type": "number"
|
|
30397
30397
|
}
|
|
30398
30398
|
]
|
|
30399
30399
|
}
|
package/package.json
CHANGED
package/pdl/domains/WebAuthn.pdl
CHANGED
|
@@ -106,7 +106,7 @@ experimental domain WebAuthn
|
|
|
106
106
|
# If -1, the credential won't have an associated signature counter, and
|
|
107
107
|
# every assertion operation will report a value of 0.
|
|
108
108
|
# See https://w3c.github.io/webauthn/#signature-counter
|
|
109
|
-
|
|
109
|
+
number signCount
|
|
110
110
|
# The large blob associated with the credential.
|
|
111
111
|
# See https://w3c.github.io/webauthn/#sctn-large-blob-extension
|
|
112
112
|
optional binary largeBlob
|
|
@@ -233,7 +233,7 @@ experimental domain WebAuthn
|
|
|
233
233
|
# If -1, the signature counter is removed from the credential, and every
|
|
234
234
|
# assertion operation will report a value of 0.
|
|
235
235
|
# See https://w3c.github.io/webauthn/#signature-counter
|
|
236
|
-
optional
|
|
236
|
+
optional number signCount
|
|
237
237
|
|
|
238
238
|
# Triggered when a credential is added to an authenticator.
|
|
239
239
|
event credentialAdded
|
package/types/protocol.d.ts
CHANGED
|
@@ -21706,7 +21706,7 @@ export namespace Protocol {
|
|
|
21706
21706
|
* every assertion operation will report a value of 0.
|
|
21707
21707
|
* See https://w3c.github.io/webauthn/#signature-counter
|
|
21708
21708
|
*/
|
|
21709
|
-
signCount:
|
|
21709
|
+
signCount: number;
|
|
21710
21710
|
/**
|
|
21711
21711
|
* The large blob associated with the credential.
|
|
21712
21712
|
* See https://w3c.github.io/webauthn/#sctn-large-blob-extension (Encoded as a base64 string when passed over JSON)
|
|
@@ -21845,7 +21845,7 @@ export namespace Protocol {
|
|
|
21845
21845
|
* assertion operation will report a value of 0.
|
|
21846
21846
|
* See https://w3c.github.io/webauthn/#signature-counter
|
|
21847
21847
|
*/
|
|
21848
|
-
signCount?:
|
|
21848
|
+
signCount?: number;
|
|
21849
21849
|
}
|
|
21850
21850
|
|
|
21851
21851
|
/**
|