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
package/pdl/domains/Network.pdl
CHANGED
|
@@ -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
|
package/types/protocol.d.ts
CHANGED
|
@@ -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;
|