devtools-protocol 0.0.938931 → 0.0.939359

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.
@@ -308,6 +308,12 @@
308
308
  "$ref": "AXProperty"
309
309
  }
310
310
  },
311
+ {
312
+ "name": "parentId",
313
+ "description": "ID for this node's parent.",
314
+ "optional": true,
315
+ "$ref": "AXNodeId"
316
+ },
311
317
  {
312
318
  "name": "childIds",
313
319
  "description": "IDs for each of this node's child nodes.",
@@ -322,6 +328,12 @@
322
328
  "description": "The backend ID for the associated DOM node, if any.",
323
329
  "optional": true,
324
330
  "$ref": "DOM.BackendNodeId"
331
+ },
332
+ {
333
+ "name": "frameId",
334
+ "description": "The frame ID for the frame associated with this nodes document.",
335
+ "optional": true,
336
+ "$ref": "Page.FrameId"
325
337
  }
326
338
  ]
327
339
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.938931",
3
+ "version": "0.0.939359",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -176,10 +176,14 @@ experimental domain Accessibility
176
176
  optional AXValue value
177
177
  # All other properties
178
178
  optional array of AXProperty properties
179
+ # ID for this node's parent.
180
+ optional AXNodeId parentId
179
181
  # IDs for each of this node's child nodes.
180
182
  optional array of AXNodeId childIds
181
183
  # The backend ID for the associated DOM node, if any.
182
184
  optional DOM.BackendNodeId backendDOMNodeId
185
+ # The frame ID for the frame associated with this nodes document.
186
+ optional Page.FrameId frameId
183
187
 
184
188
  # Disables the accessibility domain.
185
189
  command disable
@@ -2631,6 +2631,10 @@ export namespace Protocol {
2631
2631
  * All other properties
2632
2632
  */
2633
2633
  properties?: AXProperty[];
2634
+ /**
2635
+ * ID for this node's parent.
2636
+ */
2637
+ parentId?: AXNodeId;
2634
2638
  /**
2635
2639
  * IDs for each of this node's child nodes.
2636
2640
  */
@@ -2639,6 +2643,10 @@ export namespace Protocol {
2639
2643
  * The backend ID for the associated DOM node, if any.
2640
2644
  */
2641
2645
  backendDOMNodeId?: DOM.BackendNodeId;
2646
+ /**
2647
+ * The frame ID for the frame associated with this nodes document.
2648
+ */
2649
+ frameId?: Page.FrameId;
2642
2650
  }
2643
2651
 
2644
2652
  export interface GetPartialAXTreeRequest {