devtools-protocol 0.0.1124027 → 0.0.1129085

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.
@@ -3555,7 +3555,6 @@
3555
3555
  {
3556
3556
  "name": "style",
3557
3557
  "description": "Associated style declaration.",
3558
- "optional": true,
3559
3558
  "$ref": "CSSStyle"
3560
3559
  }
3561
3560
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1124027",
3
+ "version": "0.0.1129085",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -708,6 +708,8 @@ experimental domain Audits
708
708
  InvalidHeader
709
709
  InvalidRegisterTriggerHeader
710
710
  InvalidEligibleHeader
711
+ # TODO(crbug.com/1431942): Remove this issue once DevTools stops
712
+ # referencing it
711
713
  TooManyConcurrentRequests
712
714
  SourceAndTriggerHeaders
713
715
  SourceIgnored
@@ -1679,7 +1681,7 @@ experimental domain CSS
1679
1681
  # Parent stylesheet's origin.
1680
1682
  StyleSheetOrigin origin
1681
1683
  # Associated style declaration.
1682
- optional CSSStyle style
1684
+ CSSStyle style
1683
1685
 
1684
1686
  # CSS position-fallback rule representation.
1685
1687
  type CSSPositionFallbackRule extends object
@@ -4735,7 +4735,7 @@ export namespace Protocol {
4735
4735
  /**
4736
4736
  * Associated style declaration.
4737
4737
  */
4738
- style?: CSSStyle;
4738
+ style: CSSStyle;
4739
4739
  }
4740
4740
 
4741
4741
  /**