devtools-protocol 0.0.947303 → 0.0.948336
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.
|
@@ -1452,7 +1452,10 @@
|
|
|
1452
1452
|
"AttributionTriggerDataTooLarge",
|
|
1453
1453
|
"AttributionEventSourceTriggerDataTooLarge",
|
|
1454
1454
|
"InvalidAttributionSourceExpiry",
|
|
1455
|
-
"InvalidAttributionSourcePriority"
|
|
1455
|
+
"InvalidAttributionSourcePriority",
|
|
1456
|
+
"InvalidEventSourceTriggerData",
|
|
1457
|
+
"InvalidTriggerPriority",
|
|
1458
|
+
"InvalidTriggerDedupKey"
|
|
1456
1459
|
]
|
|
1457
1460
|
},
|
|
1458
1461
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -705,6 +705,9 @@ experimental domain Audits
|
|
|
705
705
|
AttributionEventSourceTriggerDataTooLarge
|
|
706
706
|
InvalidAttributionSourceExpiry
|
|
707
707
|
InvalidAttributionSourcePriority
|
|
708
|
+
InvalidEventSourceTriggerData
|
|
709
|
+
InvalidTriggerPriority
|
|
710
|
+
InvalidTriggerDedupKey
|
|
708
711
|
|
|
709
712
|
# Details for issues around "Attribution Reporting API" usage.
|
|
710
713
|
# Explainer: https://github.com/WICG/conversion-measurement-api
|
package/types/protocol.d.ts
CHANGED
|
@@ -3261,7 +3261,7 @@ export namespace Protocol {
|
|
|
3261
3261
|
clientSecurityState?: Network.ClientSecurityState;
|
|
3262
3262
|
}
|
|
3263
3263
|
|
|
3264
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge' | 'InvalidAttributionSourceExpiry' | 'InvalidAttributionSourcePriority');
|
|
3264
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge' | 'InvalidAttributionSourceExpiry' | 'InvalidAttributionSourcePriority' | 'InvalidEventSourceTriggerData' | 'InvalidTriggerPriority' | 'InvalidTriggerDedupKey');
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
3267
|
* Details for issues around "Attribution Reporting API" usage.
|