devtools-protocol 0.0.1413303 → 0.0.1413902

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.
@@ -4684,6 +4684,12 @@
4684
4684
  "name": "frameId",
4685
4685
  "description": "Identifier of the frame where \"via-inspector\" stylesheet should be created.",
4686
4686
  "$ref": "Page.FrameId"
4687
+ },
4688
+ {
4689
+ "name": "force",
4690
+ "description": "If true, creates a new stylesheet for every call. If false,\nreturns a stylesheet previously created by a call with force=false\nfor the frame's document if it exists or creates a new stylesheet\n(default: false).",
4691
+ "optional": true,
4692
+ "type": "boolean"
4687
4693
  }
4688
4694
  ],
4689
4695
  "returns": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1413303",
3
+ "version": "0.0.1413902",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2253,6 +2253,11 @@ experimental domain CSS
2253
2253
  parameters
2254
2254
  # Identifier of the frame where "via-inspector" stylesheet should be created.
2255
2255
  Page.FrameId frameId
2256
+ # If true, creates a new stylesheet for every call. If false,
2257
+ # returns a stylesheet previously created by a call with force=false
2258
+ # for the frame's document if it exists or creates a new stylesheet
2259
+ # (default: false).
2260
+ optional boolean force
2256
2261
  returns
2257
2262
  # Identifier of the created "via-inspector" stylesheet.
2258
2263
  StyleSheetId styleSheetId
@@ -5492,6 +5492,13 @@ export namespace Protocol {
5492
5492
  * Identifier of the frame where "via-inspector" stylesheet should be created.
5493
5493
  */
5494
5494
  frameId: Page.FrameId;
5495
+ /**
5496
+ * If true, creates a new stylesheet for every call. If false,
5497
+ * returns a stylesheet previously created by a call with force=false
5498
+ * for the frame's document if it exists or creates a new stylesheet
5499
+ * (default: false).
5500
+ */
5501
+ force?: boolean;
5495
5502
  }
5496
5503
 
5497
5504
  export interface CreateStyleSheetResponse {