devtools-protocol 0.0.1673900 → 0.0.1674729

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.
@@ -507,6 +507,13 @@
507
507
  "experimental": true,
508
508
  "optional": true,
509
509
  "$ref": "Runtime.TimeDelta"
510
+ },
511
+ {
512
+ "name": "scopeNumber",
513
+ "description": "Specifies the scope number to evaluate the expression in (default: 0, innermost scope).",
514
+ "experimental": true,
515
+ "optional": true,
516
+ "type": "integer"
510
517
  }
511
518
  ],
512
519
  "returns": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1673900",
3
+ "version": "0.0.1674729",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -212,6 +212,8 @@ domain Debugger
212
212
  optional boolean throwOnSideEffect
213
213
  # Terminate execution after timing out (number of milliseconds).
214
214
  experimental optional Runtime.TimeDelta timeout
215
+ # Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
216
+ experimental optional integer scopeNumber
215
217
  returns
216
218
  # Object wrapper for the evaluation result.
217
219
  Runtime.RemoteObject result
@@ -381,6 +381,11 @@ export namespace Protocol {
381
381
  * @experimental
382
382
  */
383
383
  timeout?: Runtime.TimeDelta;
384
+ /**
385
+ * Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
386
+ * @experimental
387
+ */
388
+ scopeNumber?: integer;
384
389
  }
385
390
 
386
391
  export interface EvaluateOnCallFrameResponse {