devtools-protocol 0.0.1666022 → 0.0.1669207
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.
- package/json/browser_protocol.json +18 -1
- package/package.json +1 -1
- package/pdl/domains/WebAuthn.pdl +11 -3
- package/types/protocol.d.ts +13 -3
|
@@ -30535,7 +30535,8 @@
|
|
|
30535
30535
|
},
|
|
30536
30536
|
{
|
|
30537
30537
|
"name": "signCount",
|
|
30538
|
-
"description": "Signature counter.
|
|
30538
|
+
"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",
|
|
30539
|
+
"optional": true,
|
|
30539
30540
|
"type": "integer"
|
|
30540
30541
|
},
|
|
30541
30542
|
{
|
|
@@ -30789,6 +30790,22 @@
|
|
|
30789
30790
|
"name": "backupState",
|
|
30790
30791
|
"optional": true,
|
|
30791
30792
|
"type": "boolean"
|
|
30793
|
+
},
|
|
30794
|
+
{
|
|
30795
|
+
"name": "activeCmtgKeyIndex",
|
|
30796
|
+
"optional": true,
|
|
30797
|
+
"type": "integer"
|
|
30798
|
+
},
|
|
30799
|
+
{
|
|
30800
|
+
"name": "generateCmtgKeyOnNextOperation",
|
|
30801
|
+
"optional": true,
|
|
30802
|
+
"type": "boolean"
|
|
30803
|
+
},
|
|
30804
|
+
{
|
|
30805
|
+
"name": "signCount",
|
|
30806
|
+
"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",
|
|
30807
|
+
"optional": true,
|
|
30808
|
+
"type": "integer"
|
|
30792
30809
|
}
|
|
30793
30810
|
]
|
|
30794
30811
|
}
|
package/package.json
CHANGED
package/pdl/domains/WebAuthn.pdl
CHANGED
|
@@ -98,10 +98,11 @@ experimental domain WebAuthn
|
|
|
98
98
|
# An opaque byte sequence with a maximum size of 64 bytes mapping the
|
|
99
99
|
# credential to a specific user.
|
|
100
100
|
optional binary userHandle
|
|
101
|
-
# Signature counter.
|
|
102
|
-
#
|
|
101
|
+
# Signature counter. Must be equal to or greater than -1.
|
|
102
|
+
# If -1, the credential won't have an associated signature counter, and
|
|
103
|
+
# every assertion operation will report a value of 0.
|
|
103
104
|
# See https://w3c.github.io/webauthn/#signature-counter
|
|
104
|
-
integer signCount
|
|
105
|
+
optional integer signCount
|
|
105
106
|
# The large blob associated with the credential.
|
|
106
107
|
# See https://w3c.github.io/webauthn/#sctn-large-blob-extension
|
|
107
108
|
optional binary largeBlob
|
|
@@ -222,6 +223,13 @@ experimental domain WebAuthn
|
|
|
222
223
|
binary credentialId
|
|
223
224
|
optional boolean backupEligibility
|
|
224
225
|
optional boolean backupState
|
|
226
|
+
optional integer activeCmtgKeyIndex
|
|
227
|
+
optional boolean generateCmtgKeyOnNextOperation
|
|
228
|
+
# Must be equal to or greater than -1.
|
|
229
|
+
# If -1, the signature counter is removed from the credential, and every
|
|
230
|
+
# assertion operation will report a value of 0.
|
|
231
|
+
# See https://w3c.github.io/webauthn/#signature-counter
|
|
232
|
+
optional integer signCount
|
|
225
233
|
|
|
226
234
|
# Triggered when a credential is added to an authenticator.
|
|
227
235
|
event credentialAdded
|
package/types/protocol.d.ts
CHANGED
|
@@ -22007,11 +22007,12 @@ export namespace Protocol {
|
|
|
22007
22007
|
*/
|
|
22008
22008
|
userHandle?: string;
|
|
22009
22009
|
/**
|
|
22010
|
-
* Signature counter.
|
|
22011
|
-
*
|
|
22010
|
+
* Signature counter. Must be equal to or greater than -1.
|
|
22011
|
+
* If -1, the credential won't have an associated signature counter, and
|
|
22012
|
+
* every assertion operation will report a value of 0.
|
|
22012
22013
|
* See https://w3c.github.io/webauthn/#signature-counter
|
|
22013
22014
|
*/
|
|
22014
|
-
signCount
|
|
22015
|
+
signCount?: integer;
|
|
22015
22016
|
/**
|
|
22016
22017
|
* The large blob associated with the credential.
|
|
22017
22018
|
* See https://w3c.github.io/webauthn/#sctn-large-blob-extension (Encoded as a base64 string when passed over JSON)
|
|
@@ -22142,6 +22143,15 @@ export namespace Protocol {
|
|
|
22142
22143
|
credentialId: string;
|
|
22143
22144
|
backupEligibility?: boolean;
|
|
22144
22145
|
backupState?: boolean;
|
|
22146
|
+
activeCmtgKeyIndex?: integer;
|
|
22147
|
+
generateCmtgKeyOnNextOperation?: boolean;
|
|
22148
|
+
/**
|
|
22149
|
+
* Must be equal to or greater than -1.
|
|
22150
|
+
* If -1, the signature counter is removed from the credential, and every
|
|
22151
|
+
* assertion operation will report a value of 0.
|
|
22152
|
+
* See https://w3c.github.io/webauthn/#signature-counter
|
|
22153
|
+
*/
|
|
22154
|
+
signCount?: integer;
|
|
22145
22155
|
}
|
|
22146
22156
|
|
|
22147
22157
|
/**
|