devtools-protocol 0.0.1347151 → 0.0.1347815
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.
@@ -21987,7 +21987,9 @@
|
|
21987
21987
|
"destinationBothLimitsReached",
|
21988
21988
|
"reportingOriginsPerSiteLimitReached",
|
21989
21989
|
"exceedsMaxChannelCapacity",
|
21990
|
+
"exceedsMaxScopesChannelCapacity",
|
21990
21991
|
"exceedsMaxTriggerStateCardinality",
|
21992
|
+
"exceedsMaxEventStatesLimit",
|
21991
21993
|
"destinationPerDayReportingLimitReached"
|
21992
21994
|
]
|
21993
21995
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10696,7 +10696,9 @@ experimental domain Storage
|
|
10696
10696
|
destinationBothLimitsReached
|
10697
10697
|
reportingOriginsPerSiteLimitReached
|
10698
10698
|
exceedsMaxChannelCapacity
|
10699
|
+
exceedsMaxScopesChannelCapacity
|
10699
10700
|
exceedsMaxTriggerStateCardinality
|
10701
|
+
exceedsMaxEventStatesLimit
|
10700
10702
|
destinationPerDayReportingLimitReached
|
10701
10703
|
|
10702
10704
|
experimental event attributionReportingSourceRegistered
|
package/types/protocol.d.ts
CHANGED
@@ -16081,7 +16081,7 @@ export namespace Protocol {
|
|
16081
16081
|
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
16082
16082
|
}
|
16083
16083
|
|
16084
|
-
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');
|
16084
|
+
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxScopesChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'exceedsMaxEventStatesLimit' | 'destinationPerDayReportingLimitReached');
|
16085
16085
|
|
16086
16086
|
export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
|
16087
16087
|
|