devtools-protocol 0.0.1084174 → 0.0.1084670

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.
@@ -20593,6 +20593,13 @@
20593
20593
  "description": "Whether to create the target in background or foreground (chrome-only,\nfalse by default).",
20594
20594
  "optional": true,
20595
20595
  "type": "boolean"
20596
+ },
20597
+ {
20598
+ "name": "forTab",
20599
+ "description": "Whether to create the target of type \"tab\".",
20600
+ "experimental": true,
20601
+ "optional": true,
20602
+ "type": "boolean"
20596
20603
  }
20597
20604
  ],
20598
20605
  "returns": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1084174",
3
+ "version": "0.0.1084670",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9723,6 +9723,8 @@ domain Target
9723
9723
  # Whether to create the target in background or foreground (chrome-only,
9724
9724
  # false by default).
9725
9725
  optional boolean background
9726
+ # Whether to create the target of type "tab".
9727
+ experimental optional boolean forTab
9726
9728
  returns
9727
9729
  # The id of the page opened.
9728
9730
  TargetID targetId
@@ -15449,6 +15449,10 @@ export namespace Protocol {
15449
15449
  * false by default).
15450
15450
  */
15451
15451
  background?: boolean;
15452
+ /**
15453
+ * Whether to create the target of type "tab".
15454
+ */
15455
+ forTab?: boolean;
15452
15456
  }
15453
15457
 
15454
15458
  export interface CreateTargetResponse {