devtools-protocol 0.0.1601035 → 0.0.1601756
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 +22 -1
- package/package.json +1 -1
- package/pdl/domains/CSS.pdl +2 -0
- package/pdl/domains/DOM.pdl +1 -0
- package/pdl/domains/WebAuthn.pdl +9 -0
- package/types/protocol.d.ts +19 -2
|
@@ -5508,6 +5508,13 @@
|
|
|
5508
5508
|
"items": {
|
|
5509
5509
|
"$ref": "CSSFunctionNode"
|
|
5510
5510
|
}
|
|
5511
|
+
},
|
|
5512
|
+
{
|
|
5513
|
+
"name": "originTreeScopeNodeId",
|
|
5514
|
+
"description": "The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.",
|
|
5515
|
+
"experimental": true,
|
|
5516
|
+
"optional": true,
|
|
5517
|
+
"$ref": "DOM.BackendNodeId"
|
|
5511
5518
|
}
|
|
5512
5519
|
]
|
|
5513
5520
|
},
|
|
@@ -6970,6 +6977,7 @@
|
|
|
6970
6977
|
"checkmark",
|
|
6971
6978
|
"before",
|
|
6972
6979
|
"after",
|
|
6980
|
+
"expand-icon",
|
|
6973
6981
|
"picker-icon",
|
|
6974
6982
|
"interest-hint",
|
|
6975
6983
|
"marker",
|
|
@@ -30926,7 +30934,8 @@
|
|
|
30926
30934
|
"type": "string",
|
|
30927
30935
|
"enum": [
|
|
30928
30936
|
"ctap2_0",
|
|
30929
|
-
"ctap2_1"
|
|
30937
|
+
"ctap2_1",
|
|
30938
|
+
"ctap2_2"
|
|
30930
30939
|
]
|
|
30931
30940
|
},
|
|
30932
30941
|
{
|
|
@@ -30994,6 +31003,18 @@
|
|
|
30994
31003
|
"optional": true,
|
|
30995
31004
|
"type": "boolean"
|
|
30996
31005
|
},
|
|
31006
|
+
{
|
|
31007
|
+
"name": "hasHmacSecret",
|
|
31008
|
+
"description": "If set to true, the authenticator will support the hmac-secret extension.\nhttps://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-hmac-secret-extension\nDefaults to false.",
|
|
31009
|
+
"optional": true,
|
|
31010
|
+
"type": "boolean"
|
|
31011
|
+
},
|
|
31012
|
+
{
|
|
31013
|
+
"name": "hasHmacSecretMc",
|
|
31014
|
+
"description": "If set to true, the authenticator will support the hmac-secret-mc extension.\nhttps://fidoalliance.org/specs/fido-v2.2-rd-20241003/fido-client-to-authenticator-protocol-v2.2-rd-20241003.html#sctn-hmac-secret-make-cred-extension\nDefaults to false.",
|
|
31015
|
+
"optional": true,
|
|
31016
|
+
"type": "boolean"
|
|
31017
|
+
},
|
|
30997
31018
|
{
|
|
30998
31019
|
"name": "automaticPresenceSimulation",
|
|
30999
31020
|
"description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",
|
package/package.json
CHANGED
package/pdl/domains/CSS.pdl
CHANGED
|
@@ -602,6 +602,8 @@ experimental domain CSS
|
|
|
602
602
|
array of CSSFunctionParameter parameters
|
|
603
603
|
# Function body.
|
|
604
604
|
array of CSSFunctionNode children
|
|
605
|
+
# The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.
|
|
606
|
+
experimental optional DOM.BackendNodeId originTreeScopeNodeId
|
|
605
607
|
|
|
606
608
|
# CSS keyframe rule representation.
|
|
607
609
|
type CSSKeyframeRule extends object
|
package/pdl/domains/DOM.pdl
CHANGED
package/pdl/domains/WebAuthn.pdl
CHANGED
|
@@ -20,6 +20,7 @@ experimental domain WebAuthn
|
|
|
20
20
|
enum
|
|
21
21
|
ctap2_0
|
|
22
22
|
ctap2_1
|
|
23
|
+
ctap2_2
|
|
23
24
|
|
|
24
25
|
type AuthenticatorTransport extends string
|
|
25
26
|
enum
|
|
@@ -57,6 +58,14 @@ experimental domain WebAuthn
|
|
|
57
58
|
# https://w3c.github.io/webauthn/#prf-extension
|
|
58
59
|
# Defaults to false.
|
|
59
60
|
optional boolean hasPrf
|
|
61
|
+
# If set to true, the authenticator will support the hmac-secret extension.
|
|
62
|
+
# https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-hmac-secret-extension
|
|
63
|
+
# Defaults to false.
|
|
64
|
+
optional boolean hasHmacSecret
|
|
65
|
+
# If set to true, the authenticator will support the hmac-secret-mc extension.
|
|
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
|
+
# Defaults to false.
|
|
68
|
+
optional boolean hasHmacSecretMc
|
|
60
69
|
# If set to true, tests of user presence will succeed immediately.
|
|
61
70
|
# Otherwise, they will not be resolved. Defaults to true.
|
|
62
71
|
optional boolean automaticPresenceSimulation
|
package/types/protocol.d.ts
CHANGED
|
@@ -6017,6 +6017,11 @@ export namespace Protocol {
|
|
|
6017
6017
|
* Function body.
|
|
6018
6018
|
*/
|
|
6019
6019
|
children: CSSFunctionNode[];
|
|
6020
|
+
/**
|
|
6021
|
+
* The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.
|
|
6022
|
+
* @experimental
|
|
6023
|
+
*/
|
|
6024
|
+
originTreeScopeNodeId?: DOM.BackendNodeId;
|
|
6020
6025
|
}
|
|
6021
6026
|
|
|
6022
6027
|
/**
|
|
@@ -6886,7 +6891,7 @@ export namespace Protocol {
|
|
|
6886
6891
|
/**
|
|
6887
6892
|
* Pseudo element type.
|
|
6888
6893
|
*/
|
|
6889
|
-
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent');
|
|
6894
|
+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'expand-icon' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent');
|
|
6890
6895
|
|
|
6891
6896
|
/**
|
|
6892
6897
|
* Shadow root type.
|
|
@@ -22047,7 +22052,7 @@ export namespace Protocol {
|
|
|
22047
22052
|
|
|
22048
22053
|
export type AuthenticatorProtocol = ('u2f' | 'ctap2');
|
|
22049
22054
|
|
|
22050
|
-
export type Ctap2Version = ('ctap2_0' | 'ctap2_1');
|
|
22055
|
+
export type Ctap2Version = ('ctap2_0' | 'ctap2_1' | 'ctap2_2');
|
|
22051
22056
|
|
|
22052
22057
|
export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'internal');
|
|
22053
22058
|
|
|
@@ -22090,6 +22095,18 @@ export namespace Protocol {
|
|
|
22090
22095
|
* Defaults to false.
|
|
22091
22096
|
*/
|
|
22092
22097
|
hasPrf?: boolean;
|
|
22098
|
+
/**
|
|
22099
|
+
* If set to true, the authenticator will support the hmac-secret extension.
|
|
22100
|
+
* https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-hmac-secret-extension
|
|
22101
|
+
* Defaults to false.
|
|
22102
|
+
*/
|
|
22103
|
+
hasHmacSecret?: boolean;
|
|
22104
|
+
/**
|
|
22105
|
+
* If set to true, the authenticator will support the hmac-secret-mc extension.
|
|
22106
|
+
* 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
|
|
22107
|
+
* Defaults to false.
|
|
22108
|
+
*/
|
|
22109
|
+
hasHmacSecretMc?: boolean;
|
|
22093
22110
|
/**
|
|
22094
22111
|
* If set to true, tests of user presence will succeed immediately.
|
|
22095
22112
|
* Otherwise, they will not be resolved. Defaults to true.
|