devtools-protocol 0.0.1505444 → 0.0.1507524
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.
@@ -17165,6 +17165,13 @@
|
|
17165
17165
|
"experimental": true,
|
17166
17166
|
"optional": true,
|
17167
17167
|
"type": "boolean"
|
17168
|
+
},
|
17169
|
+
{
|
17170
|
+
"name": "enableDurableMessages",
|
17171
|
+
"description": "Enable storing response bodies outside of renderer, so that these survive\na cross-process navigation. Requires maxTotalBufferSize to be set.\nCurrently defaults to false.",
|
17172
|
+
"experimental": true,
|
17173
|
+
"optional": true,
|
17174
|
+
"type": "boolean"
|
17168
17175
|
}
|
17169
17176
|
]
|
17170
17177
|
},
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
@@ -1107,6 +1107,10 @@ domain Network
|
|
1107
1107
|
optional integer maxPostDataSize
|
1108
1108
|
# Whether DirectSocket chunk send/receive events should be reported.
|
1109
1109
|
experimental optional boolean reportDirectSocketTraffic
|
1110
|
+
# Enable storing response bodies outside of renderer, so that these survive
|
1111
|
+
# a cross-process navigation. Requires maxTotalBufferSize to be set.
|
1112
|
+
# Currently defaults to false.
|
1113
|
+
experimental optional boolean enableDurableMessages
|
1110
1114
|
|
1111
1115
|
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
1112
1116
|
# information in the `cookies` field.
|
package/types/protocol.d.ts
CHANGED
@@ -13532,6 +13532,13 @@ export namespace Protocol {
|
|
13532
13532
|
* @experimental
|
13533
13533
|
*/
|
13534
13534
|
reportDirectSocketTraffic?: boolean;
|
13535
|
+
/**
|
13536
|
+
* Enable storing response bodies outside of renderer, so that these survive
|
13537
|
+
* a cross-process navigation. Requires maxTotalBufferSize to be set.
|
13538
|
+
* Currently defaults to false.
|
13539
|
+
* @experimental
|
13540
|
+
*/
|
13541
|
+
enableDurableMessages?: boolean;
|
13535
13542
|
}
|
13536
13543
|
|
13537
13544
|
export interface GetAllCookiesResponse {
|