devtools-protocol 0.0.1275388 → 0.0.1280070

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
  */
@@ -15593,7 +15602,7 @@ export namespace Protocol {
15593
15602
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15594
15603
  }
15595
15604
 
15596
- export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
15605
+ export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');
15597
15606
 
15598
15607
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
15599
15608