devtools-protocol 0.0.1666840 → 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.
@@ -30535,7 +30535,8 @@
30535
30535
  },
30536
30536
  {
30537
30537
  "name": "signCount",
30538
- "description": "Signature counter. This is incremented by one for each successful\nassertion.\nSee https://w3c.github.io/webauthn/#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
  {
@@ -30799,6 +30800,12 @@
30799
30800
  "name": "generateCmtgKeyOnNextOperation",
30800
30801
  "optional": true,
30801
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"
30802
30809
  }
30803
30810
  ]
30804
30811
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1666840",
3
+ "version": "0.0.1669207",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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. This is incremented by one for each successful
102
- # assertion.
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
@@ -224,6 +225,11 @@ experimental domain WebAuthn
224
225
  optional boolean backupState
225
226
  optional integer activeCmtgKeyIndex
226
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
227
233
 
228
234
  # Triggered when a credential is added to an authenticator.
229
235
  event credentialAdded
@@ -22007,11 +22007,12 @@ export namespace Protocol {
22007
22007
  */
22008
22008
  userHandle?: string;
22009
22009
  /**
22010
- * Signature counter. This is incremented by one for each successful
22011
- * assertion.
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: integer;
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)
@@ -22144,6 +22145,13 @@ export namespace Protocol {
22144
22145
  backupState?: boolean;
22145
22146
  activeCmtgKeyIndex?: integer;
22146
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;
22147
22155
  }
22148
22156
 
22149
22157
  /**