devtools-protocol 0.0.1373723 → 0.0.1375038
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.
@@ -22041,6 +22041,10 @@
|
|
22041
22041
|
"name": "scopesData",
|
22042
22042
|
"optional": true,
|
22043
22043
|
"$ref": "AttributionScopesData"
|
22044
|
+
},
|
22045
|
+
{
|
22046
|
+
"name": "maxEventLevelReports",
|
22047
|
+
"type": "integer"
|
22044
22048
|
}
|
22045
22049
|
]
|
22046
22050
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10715,6 +10715,7 @@ experimental domain Storage
|
|
10715
10715
|
SignedInt64AsBase10 destinationLimitPriority
|
10716
10716
|
AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
|
10717
10717
|
optional AttributionScopesData scopesData
|
10718
|
+
integer maxEventLevelReports
|
10718
10719
|
|
10719
10720
|
experimental type AttributionReportingSourceRegistrationResult extends string
|
10720
10721
|
enum
|
package/types/protocol.d.ts
CHANGED
@@ -16126,6 +16126,7 @@ export namespace Protocol {
|
|
16126
16126
|
destinationLimitPriority: SignedInt64AsBase10;
|
16127
16127
|
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
16128
16128
|
scopesData?: AttributionScopesData;
|
16129
|
+
maxEventLevelReports: integer;
|
16129
16130
|
}
|
16130
16131
|
|
16131
16132
|
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxScopesChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'exceedsMaxEventStatesLimit' | 'destinationPerDayReportingLimitReached');
|