devtools-protocol 0.0.1030018 → 0.0.1030398

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.
@@ -1450,7 +1450,8 @@
1450
1450
  "InsecureContext",
1451
1451
  "InvalidHeader",
1452
1452
  "InvalidRegisterTriggerHeader",
1453
- "InvalidEligibleHeader"
1453
+ "InvalidEligibleHeader",
1454
+ "TooManyConcurrentRequests"
1454
1455
  ]
1455
1456
  },
1456
1457
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1030018",
3
+ "version": "0.0.1030398",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -705,6 +705,7 @@ experimental domain Audits
705
705
  InvalidHeader
706
706
  InvalidRegisterTriggerHeader
707
707
  InvalidEligibleHeader
708
+ TooManyConcurrentRequests
708
709
 
709
710
  # Details for issues around "Attribution Reporting API" usage.
710
711
  # 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');
3426
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.