devtools-protocol 0.0.1263784 → 0.0.1266247
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.
@@ -1468,7 +1468,12 @@
|
|
1468
1468
|
"InvalidRegisterOsTriggerHeader",
|
1469
1469
|
"WebAndOsHeaders",
|
1470
1470
|
"NoWebOrOsSupport",
|
1471
|
-
"NavigationRegistrationWithoutTransientUserActivation"
|
1471
|
+
"NavigationRegistrationWithoutTransientUserActivation",
|
1472
|
+
"InvalidInfoHeader",
|
1473
|
+
"NoRegisterSourceHeader",
|
1474
|
+
"NoRegisterTriggerHeader",
|
1475
|
+
"NoRegisterOsSourceHeader",
|
1476
|
+
"NoRegisterOsTriggerHeader"
|
1472
1477
|
]
|
1473
1478
|
},
|
1474
1479
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -729,6 +729,11 @@ experimental domain Audits
|
|
729
729
|
WebAndOsHeaders
|
730
730
|
NoWebOrOsSupport
|
731
731
|
NavigationRegistrationWithoutTransientUserActivation
|
732
|
+
InvalidInfoHeader
|
733
|
+
NoRegisterSourceHeader
|
734
|
+
NoRegisterTriggerHeader
|
735
|
+
NoRegisterOsSourceHeader
|
736
|
+
NoRegisterOsTriggerHeader
|
732
737
|
|
733
738
|
# Details for issues around "Attribution Reporting API" usage.
|
734
739
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
package/types/protocol.d.ts
CHANGED
@@ -3462,7 +3462,7 @@ export namespace Protocol {
|
|
3462
3462
|
clientSecurityState?: Network.ClientSecurityState;
|
3463
3463
|
}
|
3464
3464
|
|
3465
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation');
|
3465
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation' | 'InvalidInfoHeader' | 'NoRegisterSourceHeader' | 'NoRegisterTriggerHeader' | 'NoRegisterOsSourceHeader' | 'NoRegisterOsTriggerHeader');
|
3466
3466
|
|
3467
3467
|
/**
|
3468
3468
|
* Details for issues around "Attribution Reporting API" usage.
|