devtools-protocol 0.0.1147663 → 0.0.1148337

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.
@@ -11199,6 +11199,12 @@
11199
11199
  "experimental": true,
11200
11200
  "type": "number"
11201
11201
  },
11202
+ {
11203
+ "name": "receiveHeadersStart",
11204
+ "description": "Started receiving response headers.",
11205
+ "experimental": true,
11206
+ "type": "number"
11207
+ },
11202
11208
  {
11203
11209
  "name": "receiveHeadersEnd",
11204
11210
  "description": "Finished receiving response headers.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1147663",
3
+ "version": "0.0.1148337",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5121,6 +5121,8 @@ domain Network
5121
5121
  experimental number pushStart
5122
5122
  # Time the server finished pushing request.
5123
5123
  experimental number pushEnd
5124
+ # Started receiving response headers.
5125
+ experimental number receiveHeadersStart
5124
5126
  # Finished receiving response headers.
5125
5127
  number receiveHeadersEnd
5126
5128
 
@@ -9676,6 +9676,10 @@ export namespace Protocol {
9676
9676
  * Time the server finished pushing request.
9677
9677
  */
9678
9678
  pushEnd: number;
9679
+ /**
9680
+ * Started receiving response headers.
9681
+ */
9682
+ receiveHeadersStart: number;
9679
9683
  /**
9680
9684
  * Finished receiving response headers.
9681
9685
  */