devtools-protocol 0.0.1616338 → 0.0.1617013

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.
@@ -28665,6 +28665,12 @@
28665
28665
  "description": "Whether the target has an attached client.",
28666
28666
  "type": "boolean"
28667
28667
  },
28668
+ {
28669
+ "name": "parentId",
28670
+ "description": "Id of the parent target, if any. For example, \"iframe\" target may have a \"page\" parent.",
28671
+ "optional": true,
28672
+ "$ref": "TargetID"
28673
+ },
28668
28674
  {
28669
28675
  "name": "openerId",
28670
28676
  "description": "Opener target Id",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1616338",
3
+ "version": "0.0.1617013",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -21,6 +21,8 @@ domain Target
21
21
  string url
22
22
  # Whether the target has an attached client.
23
23
  boolean attached
24
+ # Id of the parent target, if any. For example, "iframe" target may have a "page" parent.
25
+ optional TargetID parentId
24
26
  # Opener target Id
25
27
  optional TargetID openerId
26
28
  # Whether the target has access to the originating window.
@@ -20747,6 +20747,10 @@ export namespace Protocol {
20747
20747
  * Whether the target has an attached client.
20748
20748
  */
20749
20749
  attached: boolean;
20750
+ /**
20751
+ * Id of the parent target, if any. For example, "iframe" target may have a "page" parent.
20752
+ */
20753
+ parentId?: TargetID;
20750
20754
  /**
20751
20755
  * Opener target Id
20752
20756
  */