devtools-protocol 0.0.900033 → 0.0.900357

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.
package/changelog.md CHANGED
@@ -1,5 +1,16 @@
1
1
 
2
2
 
3
+ ## Roll protocol to r900033
4
+ ###### _2021-07-09 09:16:22_ | Diff: [cbb20a9...db8965f](https://github.com/ChromeDevTools/devtools-protocol/compare/cbb20a9...db8965f)
5
+ #### `Overlay`: new command
6
+ * [`Overlay.setShowContainerQueryOverlays`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowContainerQueryOverlays)
7
+ #### `Overlay`: new types
8
+ * [`Overlay.ContainerQueryHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ContainerQueryHighlightConfig)
9
+ * [`Overlay.ContainerQueryContainerHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ContainerQueryContainerHighlightConfig)
10
+ #### `Overlay`: modified type
11
+ * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `containerQueryContainerHighlightConfig` _added_.
12
+
13
+
3
14
  ## Roll protocol to r898382
4
15
  ###### _2021-07-02 16:16:12_ | Diff: [b531de2...c935633](https://github.com/ChromeDevTools/devtools-protocol/compare/b531de2...c935633)
5
16
  #### `DOM`: modified type
@@ -6647,6 +6647,12 @@
6647
6647
  "type": "integer"
6648
6648
  }
6649
6649
  },
6650
+ {
6651
+ "name": "shadowRootType",
6652
+ "description": "Type of the shadow root the `Node` is in. String values are equal to the `ShadowRootType` enum.",
6653
+ "optional": true,
6654
+ "$ref": "RareStringData"
6655
+ },
6650
6656
  {
6651
6657
  "name": "nodeName",
6652
6658
  "description": "`Node`'s nodeName.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.900033",
3
+ "version": "0.0.900357",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -3050,6 +3050,8 @@ experimental domain DOMSnapshot
3050
3050
  optional array of integer parentIndex
3051
3051
  # `Node`'s nodeType.
3052
3052
  optional array of integer nodeType
3053
+ # Type of the shadow root the `Node` is in. String values are equal to the `ShadowRootType` enum.
3054
+ optional RareStringData shadowRootType
3053
3055
  # `Node`'s nodeName.
3054
3056
  optional array of StringIndex nodeName
3055
3057
  # `Node`'s nodeValue.
@@ -6669,6 +6669,10 @@ export namespace Protocol {
6669
6669
  * `Node`'s nodeType.
6670
6670
  */
6671
6671
  nodeType?: integer[];
6672
+ /**
6673
+ * Type of the shadow root the `Node` is in. String values are equal to the `ShadowRootType` enum.
6674
+ */
6675
+ shadowRootType?: RareStringData;
6672
6676
  /**
6673
6677
  * `Node`'s nodeName.
6674
6678
  */