devtools-protocol 0.0.1325288 → 0.0.1326544

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.
@@ -4638,6 +4638,12 @@
4638
4638
  "$ref": "CSSPositionTryRule"
4639
4639
  }
4640
4640
  },
4641
+ {
4642
+ "name": "activePositionFallbackIndex",
4643
+ "description": "Index of the active fallback in the applied position-try-fallback property,\nwill not be set if there is no active position-try fallback.",
4644
+ "optional": true,
4645
+ "type": "integer"
4646
+ },
4641
4647
  {
4642
4648
  "name": "cssPropertyRules",
4643
4649
  "description": "A list of CSS at-property rules matching this node.",
@@ -13784,7 +13790,8 @@
13784
13790
  "RestrictProperties",
13785
13791
  "UnsafeNone",
13786
13792
  "SameOriginPlusCoep",
13787
- "RestrictPropertiesPlusCoep"
13793
+ "RestrictPropertiesPlusCoep",
13794
+ "NoopenerAllowPopups"
13788
13795
  ]
13789
13796
  },
13790
13797
  {
@@ -21671,6 +21678,10 @@
21671
21678
  {
21672
21679
  "name": "triggerDataMatching",
21673
21680
  "$ref": "AttributionReportingTriggerDataMatching"
21681
+ },
21682
+ {
21683
+ "name": "destinationLimitPriority",
21684
+ "$ref": "SignedInt64AsBase10"
21674
21685
  }
21675
21686
  ]
21676
21687
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1325288",
3
+ "version": "0.0.1326544",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2208,6 +2208,9 @@ experimental domain CSS
2208
2208
  deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2209
2209
  # A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
2210
2210
  optional array of CSSPositionTryRule cssPositionTryRules
2211
+ # Index of the active fallback in the applied position-try-fallback property,
2212
+ # will not be set if there is no active position-try fallback.
2213
+ optional integer activePositionFallbackIndex
2211
2214
  # A list of CSS at-property rules matching this node.
2212
2215
  optional array of CSSPropertyRule cssPropertyRules
2213
2216
  # A list of CSS property registrations matching this node.
@@ -7215,6 +7218,7 @@ domain Network
7215
7218
  UnsafeNone
7216
7219
  SameOriginPlusCoep
7217
7220
  RestrictPropertiesPlusCoep
7221
+ NoopenerAllowPopups
7218
7222
 
7219
7223
  experimental type CrossOriginOpenerPolicyStatus extends object
7220
7224
  properties
@@ -10537,6 +10541,7 @@ experimental domain Storage
10537
10541
  array of AttributionReportingAggregationKeysEntry aggregationKeys
10538
10542
  optional UnsignedInt64AsBase10 debugKey
10539
10543
  AttributionReportingTriggerDataMatching triggerDataMatching
10544
+ SignedInt64AsBase10 destinationLimitPriority
10540
10545
 
10541
10546
  experimental type AttributionReportingSourceRegistrationResult extends string
10542
10547
  enum
@@ -5426,6 +5426,11 @@ export namespace Protocol {
5426
5426
  * A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
5427
5427
  */
5428
5428
  cssPositionTryRules?: CSSPositionTryRule[];
5429
+ /**
5430
+ * Index of the active fallback in the applied position-try-fallback property,
5431
+ * will not be set if there is no active position-try fallback.
5432
+ */
5433
+ activePositionFallbackIndex?: integer;
5429
5434
  /**
5430
5435
  * A list of CSS at-property rules matching this node.
5431
5436
  */
@@ -11223,7 +11228,7 @@ export namespace Protocol {
11223
11228
  privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
11224
11229
  }
11225
11230
 
11226
- export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'RestrictProperties' | 'UnsafeNone' | 'SameOriginPlusCoep' | 'RestrictPropertiesPlusCoep');
11231
+ export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'RestrictProperties' | 'UnsafeNone' | 'SameOriginPlusCoep' | 'RestrictPropertiesPlusCoep' | 'NoopenerAllowPopups');
11227
11232
 
11228
11233
  export interface CrossOriginOpenerPolicyStatus {
11229
11234
  value: CrossOriginOpenerPolicyValue;
@@ -15937,6 +15942,7 @@ export namespace Protocol {
15937
15942
  aggregationKeys: AttributionReportingAggregationKeysEntry[];
15938
15943
  debugKey?: UnsignedInt64AsBase10;
15939
15944
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15945
+ destinationLimitPriority: SignedInt64AsBase10;
15940
15946
  }
15941
15947
 
15942
15948
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');