devtools-protocol 0.0.1166296 → 0.0.1167732

Sign up to get free protection for your applications and to get access to all the features.
@@ -20012,7 +20012,8 @@
20012
20012
  "successNoised",
20013
20013
  "destinationReportingLimitReached",
20014
20014
  "destinationGlobalLimitReached",
20015
- "destinationBothLimitsReached"
20015
+ "destinationBothLimitsReached",
20016
+ "reportingOriginsPerSiteLimitReached"
20016
20017
  ]
20017
20018
  }
20018
20019
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1166296",
3
+ "version": "0.0.1167732",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9711,6 +9711,7 @@ experimental domain Storage
9711
9711
  destinationReportingLimitReached
9712
9712
  destinationGlobalLimitReached
9713
9713
  destinationBothLimitsReached
9714
+ reportingOriginsPerSiteLimitReached
9714
9715
 
9715
9716
  # TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
9716
9717
  # trigger registration.
@@ -15082,7 +15082,7 @@ export namespace Protocol {
15082
15082
  debugKey?: UnsignedInt64AsBase10;
15083
15083
  }
15084
15084
 
15085
- export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached');
15085
+ export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached');
15086
15086
 
15087
15087
  export interface GetStorageKeyForFrameRequest {
15088
15088
  frameId: Page.FrameId;