devtools-protocol 0.0.1503134 → 0.0.1503754

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,13 +17108,6 @@
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"
17118
17111
  }
17119
17112
  ]
17120
17113
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1503134",
3
+ "version": "0.0.1503754",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1088,10 +1088,6 @@ 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
1095
1091
 
1096
1092
  # Returns all browser cookies. Depending on the backend support, will return detailed cookie
1097
1093
  # information in the `cookies` field.
@@ -13495,13 +13495,6 @@ 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;
13505
13498
  }
13506
13499
 
13507
13500
  export interface GetAllCookiesResponse {