devtools-protocol 0.0.1663043 → 0.0.1666022

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.
@@ -27437,7 +27437,6 @@
27437
27437
  "websql",
27438
27438
  "service_workers",
27439
27439
  "cache_storage",
27440
- "interest_groups",
27441
27440
  "shared_storage",
27442
27441
  "storage_buckets",
27443
27442
  "all",
@@ -30473,6 +30472,12 @@
30473
30472
  "optional": true,
30474
30473
  "type": "boolean"
30475
30474
  },
30475
+ {
30476
+ "name": "hasCmtgKey",
30477
+ "description": "If set to true, the authenticator will support the cmtgKey (Credential\nManager Trust Group Key) extension.\nhttps://github.com/w3c/webauthn/pull/2377\nDefaults to false.",
30478
+ "optional": true,
30479
+ "type": "boolean"
30480
+ },
30476
30481
  {
30477
30482
  "name": "automaticPresenceSimulation",
30478
30483
  "description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",
@@ -30562,6 +30567,27 @@
30562
30567
  "description": "The credential's user.displayName property. Equivalent to empty if\nnot set.\nhttps://w3c.github.io/webauthn/#dom-publickeycredentialuserentity-displayname",
30563
30568
  "optional": true,
30564
30569
  "type": "string"
30570
+ },
30571
+ {
30572
+ "name": "cmtgKeys",
30573
+ "description": "The CMTG keys associated with the credential.",
30574
+ "optional": true,
30575
+ "type": "array",
30576
+ "items": {
30577
+ "type": "string"
30578
+ }
30579
+ },
30580
+ {
30581
+ "name": "activeCmtgKeyIndex",
30582
+ "description": "The 0-based index of the active key in cmtgKeys.",
30583
+ "optional": true,
30584
+ "type": "integer"
30585
+ },
30586
+ {
30587
+ "name": "generateCmtgKeyOnNextOperation",
30588
+ "description": "If true, the authenticator will generate a new CMTG key on the next operation.",
30589
+ "optional": true,
30590
+ "type": "boolean"
30565
30591
  }
30566
30592
  ]
30567
30593
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1663043",
3
+ "version": "0.0.1666022",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -21,7 +21,6 @@ experimental domain Storage
21
21
  websql
22
22
  service_workers
23
23
  cache_storage
24
- interest_groups
25
24
  shared_storage
26
25
  storage_buckets
27
26
  all
@@ -66,6 +66,11 @@ experimental domain WebAuthn
66
66
  # https://fidoalliance.org/specs/fido-v2.2-rd-20241003/fido-client-to-authenticator-protocol-v2.2-rd-20241003.html#sctn-hmac-secret-make-cred-extension
67
67
  # Defaults to false.
68
68
  optional boolean hasHmacSecretMc
69
+ # If set to true, the authenticator will support the cmtgKey (Credential
70
+ # Manager Trust Group Key) extension.
71
+ # https://github.com/w3c/webauthn/pull/2377
72
+ # Defaults to false.
73
+ optional boolean hasCmtgKey
69
74
  # If set to true, tests of user presence will succeed immediately.
70
75
  # Otherwise, they will not be resolved. Defaults to true.
71
76
  optional boolean automaticPresenceSimulation
@@ -115,6 +120,12 @@ experimental domain WebAuthn
115
120
  # not set.
116
121
  # https://w3c.github.io/webauthn/#dom-publickeycredentialuserentity-displayname
117
122
  optional string userDisplayName
123
+ # The CMTG keys associated with the credential.
124
+ optional array of binary cmtgKeys
125
+ # The 0-based index of the active key in cmtgKeys.
126
+ optional integer activeCmtgKeyIndex
127
+ # If true, the authenticator will generate a new CMTG key on the next operation.
128
+ optional boolean generateCmtgKeyOnNextOperation
118
129
 
119
130
  # Enable the WebAuthn domain and start intercepting credential storage and
120
131
  # retrieval with a virtual authenticator.
@@ -19972,7 +19972,7 @@ export namespace Protocol {
19972
19972
  /**
19973
19973
  * Enum of possible storage types.
19974
19974
  */
19975
- export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
19975
+ export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
19976
19976
 
19977
19977
  /**
19978
19978
  * Usage for a storage type.
@@ -21958,6 +21958,13 @@ export namespace Protocol {
21958
21958
  * Defaults to false.
21959
21959
  */
21960
21960
  hasHmacSecretMc?: boolean;
21961
+ /**
21962
+ * If set to true, the authenticator will support the cmtgKey (Credential
21963
+ * Manager Trust Group Key) extension.
21964
+ * https://github.com/w3c/webauthn/pull/2377
21965
+ * Defaults to false.
21966
+ */
21967
+ hasCmtgKey?: boolean;
21961
21968
  /**
21962
21969
  * If set to true, tests of user presence will succeed immediately.
21963
21970
  * Otherwise, they will not be resolved. Defaults to true.
@@ -22033,6 +22040,18 @@ export namespace Protocol {
22033
22040
  * https://w3c.github.io/webauthn/#dom-publickeycredentialuserentity-displayname
22034
22041
  */
22035
22042
  userDisplayName?: string;
22043
+ /**
22044
+ * The CMTG keys associated with the credential.
22045
+ */
22046
+ cmtgKeys?: string[];
22047
+ /**
22048
+ * The 0-based index of the active key in cmtgKeys.
22049
+ */
22050
+ activeCmtgKeyIndex?: integer;
22051
+ /**
22052
+ * If true, the authenticator will generate a new CMTG key on the next operation.
22053
+ */
22054
+ generateCmtgKeyOnNextOperation?: boolean;
22036
22055
  }
22037
22056
 
22038
22057
  export interface EnableRequest {