devtools-protocol 0.0.1325906 → 0.0.1326544

Sign up to get free protection for your applications and to get access to all the features.
@@ -21678,6 +21678,10 @@
21678
21678
  {
21679
21679
  "name": "triggerDataMatching",
21680
21680
  "$ref": "AttributionReportingTriggerDataMatching"
21681
+ },
21682
+ {
21683
+ "name": "destinationLimitPriority",
21684
+ "$ref": "SignedInt64AsBase10"
21681
21685
  }
21682
21686
  ]
21683
21687
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1325906",
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",
@@ -10541,6 +10541,7 @@ experimental domain Storage
10541
10541
  array of AttributionReportingAggregationKeysEntry aggregationKeys
10542
10542
  optional UnsignedInt64AsBase10 debugKey
10543
10543
  AttributionReportingTriggerDataMatching triggerDataMatching
10544
+ SignedInt64AsBase10 destinationLimitPriority
10544
10545
 
10545
10546
  experimental type AttributionReportingSourceRegistrationResult extends string
10546
10547
  enum
@@ -15942,6 +15942,7 @@ export namespace Protocol {
15942
15942
  aggregationKeys: AttributionReportingAggregationKeysEntry[];
15943
15943
  debugKey?: UnsignedInt64AsBase10;
15944
15944
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15945
+ destinationLimitPriority: SignedInt64AsBase10;
15945
15946
  }
15946
15947
 
15947
15948
  export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');