devtools-protocol 0.0.1325906 → 0.0.1326544
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.
@@ -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
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
package/types/protocol.d.ts
CHANGED
@@ -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');
|