devtools-protocol 0.0.972468 → 0.0.972883
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.
@@ -399,13 +399,6 @@
|
|
399
399
|
"optional": true,
|
400
400
|
"type": "integer"
|
401
401
|
},
|
402
|
-
{
|
403
|
-
"name": "max_depth",
|
404
|
-
"description": "Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.",
|
405
|
-
"deprecated": true,
|
406
|
-
"optional": true,
|
407
|
-
"type": "integer"
|
408
|
-
},
|
409
402
|
{
|
410
403
|
"name": "frameId",
|
411
404
|
"description": "The frame for whose document the AX tree should be retrieved.\nIf omited, the root frame is used.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -214,8 +214,6 @@ experimental domain Accessibility
|
|
214
214
|
# The maximum depth at which descendants of the root node should be retrieved.
|
215
215
|
# If omitted, the full tree is returned.
|
216
216
|
optional integer depth
|
217
|
-
# Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.
|
218
|
-
deprecated optional integer max_depth
|
219
217
|
# The frame for whose document the AX tree should be retrieved.
|
220
218
|
# If omited, the root frame is used.
|
221
219
|
optional Page.FrameId frameId
|
package/types/protocol.d.ts
CHANGED
@@ -2682,10 +2682,6 @@ export namespace Protocol {
|
|
2682
2682
|
* If omitted, the full tree is returned.
|
2683
2683
|
*/
|
2684
2684
|
depth?: integer;
|
2685
|
-
/**
|
2686
|
-
* Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used.
|
2687
|
-
*/
|
2688
|
-
max_depth?: integer;
|
2689
2685
|
/**
|
2690
2686
|
* The frame for whose document the AX tree should be retrieved.
|
2691
2687
|
* If omited, the root frame is used.
|