devtools-protocol 0.0.1044932 → 0.0.1045489

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.
@@ -1448,6 +1448,7 @@
1448
1448
  "type": "string",
1449
1449
  "enum": [
1450
1450
  "PermissionPolicyDisabled",
1451
+ "PermissionPolicyNotDelegated",
1451
1452
  "UntrustworthyReportingOrigin",
1452
1453
  "InsecureContext",
1453
1454
  "InvalidHeader",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1044932",
3
+ "version": "0.0.1045489",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -701,6 +701,7 @@ experimental domain Audits
701
701
  type AttributionReportingIssueType extends string
702
702
  enum
703
703
  PermissionPolicyDisabled
704
+ PermissionPolicyNotDelegated
704
705
  UntrustworthyReportingOrigin
705
706
  InsecureContext
706
707
  # TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
@@ -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' | 'SourceIgnored' | 'TriggerIgnored');
3426
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'PermissionPolicyNotDelegated' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'InvalidEligibleHeader' | 'TooManyConcurrentRequests' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored');
3427
3427
 
3428
3428
  /**
3429
3429
  * Details for issues around "Attribution Reporting API" usage.