devtools-protocol 0.0.1585077 → 0.0.1587613

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.
@@ -17920,7 +17920,7 @@
17920
17920
  "parameters": [
17921
17921
  {
17922
17922
  "name": "maxTotalBufferSize",
17923
- "description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).",
17923
+ "description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).\nThis is the maximum number of bytes that will be collected by this\nDevTools session.",
17924
17924
  "experimental": true,
17925
17925
  "optional": true,
17926
17926
  "type": "integer"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1585077",
3
+ "version": "0.0.1587613",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1113,6 +1113,8 @@ domain Network
1113
1113
  command enable
1114
1114
  parameters
1115
1115
  # Buffer size in bytes to use when preserving network payloads (XHRs, etc).
1116
+ # This is the maximum number of bytes that will be collected by this
1117
+ # DevTools session.
1116
1118
  experimental optional integer maxTotalBufferSize
1117
1119
  # Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
1118
1120
  experimental optional integer maxResourceBufferSize
@@ -14028,6 +14028,8 @@ export namespace Protocol {
14028
14028
  export interface EnableRequest {
14029
14029
  /**
14030
14030
  * Buffer size in bytes to use when preserving network payloads (XHRs, etc).
14031
+ * This is the maximum number of bytes that will be collected by this
14032
+ * DevTools session.
14031
14033
  * @experimental
14032
14034
  */
14033
14035
  maxTotalBufferSize?: integer;