devtools-protocol 0.0.1275388 → 0.0.1279463

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.
@@ -20924,7 +20924,8 @@
20924
20924
  "destinationGlobalLimitReached",
20925
20925
  "destinationBothLimitsReached",
20926
20926
  "reportingOriginsPerSiteLimitReached",
20927
- "exceedsMaxChannelCapacity"
20927
+ "exceedsMaxChannelCapacity",
20928
+ "exceedsMaxTriggerStateCardinality"
20928
20929
  ]
20929
20930
  },
20930
20931
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1275388",
3
+ "version": "0.0.1279463",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10237,6 +10237,7 @@ experimental domain Storage
10237
10237
  destinationBothLimitsReached
10238
10238
  reportingOriginsPerSiteLimitReached
10239
10239
  exceedsMaxChannelCapacity
10240
+ exceedsMaxTriggerStateCardinality
10240
10241
 
10241
10242
  experimental event attributionReportingSourceRegistered
10242
10243
  parameters
@@ -15593,7 +15593,7 @@ export namespace Protocol {
15593
15593
  triggerDataMatching: AttributionReportingTriggerDataMatching;
15594
15594
  }
15595
15595
 
15596
- export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
15596
+ export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');
15597
15597
 
15598
15598
  export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
15599
15599