devtools-protocol 0.0.1032240 → 0.0.1032873

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.
@@ -1454,7 +1454,9 @@
1454
1454
  "InvalidRegisterTriggerHeader",
1455
1455
  "InvalidEligibleHeader",
1456
1456
  "TooManyConcurrentRequests",
1457
- "SourceAndTriggerHeaders"
1457
+ "SourceAndTriggerHeaders",
1458
+ "SourceIgnored",
1459
+ "TriggerIgnored"
1458
1460
  ]
1459
1461
  },
1460
1462
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1032240",
3
+ "version": "0.0.1032873",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -709,6 +709,8 @@ experimental domain Audits
709
709
  InvalidEligibleHeader
710
710
  TooManyConcurrentRequests
711
711
  SourceAndTriggerHeaders
712
+ SourceIgnored
713
+ TriggerIgnored
712
714
 
713
715
  # Details for issues around "Attribution Reporting API" usage.
714
716
  # Explainer: https://github.com/WICG/attribution-reporting-api
@@ -3423,7 +3423,7 @@ export namespace Protocol {
3423
3423
  clientSecurityState?: Network.ClientSecurityState;
3424
3424
  }
3425
3425
 
3426
- export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders');
3426
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.