devtools-protocol 0.0.1279463 → 0.0.1280070
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.
package/types/protocol.d.ts
CHANGED
@@ -8193,10 +8193,15 @@ export namespace Protocol {
|
|
8193
8193
|
/**
|
8194
8194
|
* If set, the posture of a foldable device. If not set the posture is set
|
8195
8195
|
* to continuous.
|
8196
|
+
* Deprecated, use Emulation.setDevicePostureOverride.
|
8196
8197
|
*/
|
8197
8198
|
devicePosture?: DevicePosture;
|
8198
8199
|
}
|
8199
8200
|
|
8201
|
+
export interface SetDevicePostureOverrideRequest {
|
8202
|
+
posture: DevicePosture;
|
8203
|
+
}
|
8204
|
+
|
8200
8205
|
export interface SetScrollbarsHiddenRequest {
|
8201
8206
|
/**
|
8202
8207
|
* Whether scrollbars should be always hidden.
|
@@ -10437,6 +10442,10 @@ export namespace Protocol {
|
|
10437
10442
|
* Specifies that the request was served from the prefetch cache.
|
10438
10443
|
*/
|
10439
10444
|
fromPrefetchCache?: boolean;
|
10445
|
+
/**
|
10446
|
+
* Specifies that the request was served from the prefetch cache.
|
10447
|
+
*/
|
10448
|
+
fromEarlyHints?: boolean;
|
10440
10449
|
/**
|
10441
10450
|
* Information about how Service Worker Static Router was used.
|
10442
10451
|
*/
|