devtools-protocol 0.0.1121538 → 0.0.1122063

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.
@@ -1202,7 +1202,8 @@
1202
1202
  "OOM",
1203
1203
  "other",
1204
1204
  "promiseRejection",
1205
- "XHR"
1205
+ "XHR",
1206
+ "step"
1206
1207
  ]
1207
1208
  },
1208
1209
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1121538",
3
+ "version": "0.0.1122063",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -580,6 +580,7 @@ domain Debugger
580
580
  other
581
581
  promiseRejection
582
582
  XHR
583
+ step
583
584
  # Object containing break-specific auxiliary properties.
584
585
  optional object data
585
586
  # Hit breakpoints IDs
@@ -838,6 +838,7 @@ export namespace Protocol {
838
838
  Other = 'other',
839
839
  PromiseRejection = 'promiseRejection',
840
840
  XHR = 'XHR',
841
+ Step = 'step',
841
842
  }
842
843
 
843
844
  /**
@@ -851,7 +852,7 @@ export namespace Protocol {
851
852
  /**
852
853
  * Pause reason. (PausedEventReason enum)
853
854
  */
854
- reason: ('ambiguous' | 'assert' | 'CSPViolation' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR');
855
+ reason: ('ambiguous' | 'assert' | 'CSPViolation' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR' | 'step');
855
856
  /**
856
857
  * Object containing break-specific auxiliary properties.
857
858
  */