devtools-protocol 0.0.1279463 → 0.0.1281655

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  */
@@ -10720,6 +10729,10 @@ export namespace Protocol {
10720
10729
  * The reason the cookie was exempted.
10721
10730
  */
10722
10731
  exemptionReason: CookieExemptionReason;
10732
+ /**
10733
+ * The string representing this individual cookie as it would appear in the header.
10734
+ */
10735
+ cookieLine: string;
10723
10736
  /**
10724
10737
  * The cookie object representing the cookie.
10725
10738
  */
@@ -12163,6 +12176,22 @@ export namespace Protocol {
12163
12176
  exemptedCookies?: ExemptedSetCookieWithReason[];
12164
12177
  }
12165
12178
 
12179
+ /**
12180
+ * Fired when 103 Early Hints headers is received in addition to the common response.
12181
+ * Not every responseReceived event will have an responseReceivedEarlyHints fired.
12182
+ * Only one responseReceivedEarlyHints may be fired for eached responseReceived event.
12183
+ */
12184
+ export interface ResponseReceivedEarlyHintsEvent {
12185
+ /**
12186
+ * Request identifier. Used to match this information to another responseReceived event.
12187
+ */
12188
+ requestId: RequestId;
12189
+ /**
12190
+ * Raw response headers as they were received over the wire.
12191
+ */
12192
+ headers: Headers;
12193
+ }
12194
+
12166
12195
  export const enum TrustTokenOperationDoneEventStatus {
12167
12196
  Ok = 'Ok',
12168
12197
  InvalidArgument = 'InvalidArgument',