devtools-protocol 0.0.1663043 → 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.
- package/json/browser_protocol.json +37 -1
- package/package.json +1 -1
- package/pdl/domains/Storage.pdl +0 -1
- package/pdl/domains/WebAuthn.pdl +13 -0
- package/types/protocol.d.ts +22 -1
|
@@ -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
|
}
|
|
@@ -30763,6 +30789,16 @@
|
|
|
30763
30789
|
"name": "backupState",
|
|
30764
30790
|
"optional": true,
|
|
30765
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"
|
|
30766
30802
|
}
|
|
30767
30803
|
]
|
|
30768
30804
|
}
|
package/package.json
CHANGED
package/pdl/domains/Storage.pdl
CHANGED
package/pdl/domains/WebAuthn.pdl
CHANGED
|
@@ -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.
|
|
@@ -211,6 +222,8 @@ experimental domain WebAuthn
|
|
|
211
222
|
binary credentialId
|
|
212
223
|
optional boolean backupEligibility
|
|
213
224
|
optional boolean backupState
|
|
225
|
+
optional integer activeCmtgKeyIndex
|
|
226
|
+
optional boolean generateCmtgKeyOnNextOperation
|
|
214
227
|
|
|
215
228
|
# Triggered when a credential is added to an authenticator.
|
|
216
229
|
event credentialAdded
|
package/types/protocol.d.ts
CHANGED
|
@@ -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' | '
|
|
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 {
|
|
@@ -22123,6 +22142,8 @@ export namespace Protocol {
|
|
|
22123
22142
|
credentialId: string;
|
|
22124
22143
|
backupEligibility?: boolean;
|
|
22125
22144
|
backupState?: boolean;
|
|
22145
|
+
activeCmtgKeyIndex?: integer;
|
|
22146
|
+
generateCmtgKeyOnNextOperation?: boolean;
|
|
22126
22147
|
}
|
|
22127
22148
|
|
|
22128
22149
|
/**
|