devtools-protocol 0.0.1632630 → 0.0.1634055

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.
@@ -28752,6 +28752,13 @@
28752
28752
  "experimental": true,
28753
28753
  "optional": true,
28754
28754
  "type": "string"
28755
+ },
28756
+ {
28757
+ "name": "embedderData",
28758
+ "description": "Embedder-specific target metadata. This is only set for targets of\ntype \"tab\".",
28759
+ "experimental": true,
28760
+ "optional": true,
28761
+ "type": "object"
28755
28762
  }
28756
28763
  ]
28757
28764
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1632630",
3
+ "version": "0.0.1634055",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -36,6 +36,9 @@ domain Target
36
36
  # Provides additional details for specific target types. For example, for
37
37
  # the type of "page", this may be set to "prerender".
38
38
  experimental optional string subtype
39
+ # Embedder-specific target metadata. This is only set for targets of
40
+ # type "tab".
41
+ experimental optional object embedderData
39
42
 
40
43
  # A filter used by target query/discovery/auto-attach operations.
41
44
  experimental type FilterEntry extends object
@@ -20804,6 +20804,12 @@ export namespace Protocol {
20804
20804
  * @experimental
20805
20805
  */
20806
20806
  subtype?: string;
20807
+ /**
20808
+ * Embedder-specific target metadata. This is only set for targets of
20809
+ * type "tab".
20810
+ * @experimental
20811
+ */
20812
+ embedderData?: any;
20807
20813
  }
20808
20814
 
20809
20815
  /**