devtools-protocol 0.0.1429850 → 0.0.1430640

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.
@@ -20572,6 +20572,13 @@
20572
20572
  {
20573
20573
  "name": "enabled",
20574
20574
  "type": "boolean"
20575
+ },
20576
+ {
20577
+ "name": "cancel",
20578
+ "description": "If true, cancels the dialog by emitting relevant events (if any)\nin addition to not showing it if the interception is enabled\n(default: false).",
20579
+ "experimental": true,
20580
+ "optional": true,
20581
+ "type": "boolean"
20575
20582
  }
20576
20583
  ]
20577
20584
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1429850",
3
+ "version": "0.0.1430640",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9527,6 +9527,10 @@ domain Page
9527
9527
  command setInterceptFileChooserDialog
9528
9528
  parameters
9529
9529
  boolean enabled
9530
+ # If true, cancels the dialog by emitting relevant events (if any)
9531
+ # in addition to not showing it if the interception is enabled
9532
+ # (default: false).
9533
+ experimental optional boolean cancel
9530
9534
 
9531
9535
  event domContentEventFired
9532
9536
  parameters
@@ -15276,6 +15276,12 @@ export namespace Protocol {
15276
15276
 
15277
15277
  export interface SetInterceptFileChooserDialogRequest {
15278
15278
  enabled: boolean;
15279
+ /**
15280
+ * If true, cancels the dialog by emitting relevant events (if any)
15281
+ * in addition to not showing it if the interception is enabled
15282
+ * (default: false).
15283
+ */
15284
+ cancel?: boolean;
15279
15285
  }
15280
15286
 
15281
15287
  export interface SetPrerenderingAllowedRequest {