devtools-protocol 0.0.1666022 → 0.0.1666840

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.
@@ -30789,6 +30789,16 @@
30789
30789
  "name": "backupState",
30790
30790
  "optional": true,
30791
30791
  "type": "boolean"
30792
+ },
30793
+ {
30794
+ "name": "activeCmtgKeyIndex",
30795
+ "optional": true,
30796
+ "type": "integer"
30797
+ },
30798
+ {
30799
+ "name": "generateCmtgKeyOnNextOperation",
30800
+ "optional": true,
30801
+ "type": "boolean"
30792
30802
  }
30793
30803
  ]
30794
30804
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1666022",
3
+ "version": "0.0.1666840",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -222,6 +222,8 @@ experimental domain WebAuthn
222
222
  binary credentialId
223
223
  optional boolean backupEligibility
224
224
  optional boolean backupState
225
+ optional integer activeCmtgKeyIndex
226
+ optional boolean generateCmtgKeyOnNextOperation
225
227
 
226
228
  # Triggered when a credential is added to an authenticator.
227
229
  event credentialAdded
@@ -22142,6 +22142,8 @@ export namespace Protocol {
22142
22142
  credentialId: string;
22143
22143
  backupEligibility?: boolean;
22144
22144
  backupState?: boolean;
22145
+ activeCmtgKeyIndex?: integer;
22146
+ generateCmtgKeyOnNextOperation?: boolean;
22145
22147
  }
22146
22148
 
22147
22149
  /**