devtools-protocol 0.0.1502260 → 0.0.1503134

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.
@@ -17108,6 +17108,13 @@
17108
17108
  "experimental": true,
17109
17109
  "optional": true,
17110
17110
  "type": "boolean"
17111
+ },
17112
+ {
17113
+ "name": "enableDurableMessages",
17114
+ "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.",
17115
+ "experimental": true,
17116
+ "optional": true,
17117
+ "type": "boolean"
17111
17118
  }
17112
17119
  ]
17113
17120
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1502260",
3
+ "version": "0.0.1503134",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1088,6 +1088,10 @@ domain Network
1088
1088
  optional integer maxPostDataSize
1089
1089
  # Whether DirectSocket chunk send/receive events should be reported.
1090
1090
  experimental optional boolean reportDirectSocketTraffic
1091
+ # Enable storing response bodies outside of renderer, so that these survive
1092
+ # a cross-process navigation. Requires maxTotalBufferSize to be set.
1093
+ # Currently defaults to false.
1094
+ experimental optional boolean enableDurableMessages
1091
1095
 
1092
1096
  # Returns all browser cookies. Depending on the backend support, will return detailed cookie
1093
1097
  # information in the `cookies` field.
@@ -13495,6 +13495,13 @@ export namespace Protocol {
13495
13495
  * @experimental
13496
13496
  */
13497
13497
  reportDirectSocketTraffic?: boolean;
13498
+ /**
13499
+ * Enable storing response bodies outside of renderer, so that these survive
13500
+ * a cross-process navigation. Requires maxTotalBufferSize to be set.
13501
+ * Currently defaults to false.
13502
+ * @experimental
13503
+ */
13504
+ enableDurableMessages?: boolean;
13498
13505
  }
13499
13506
 
13500
13507
  export interface GetAllCookiesResponse {