devtools-protocol 0.0.971103 → 0.0.971358

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.
@@ -1082,6 +1082,7 @@
1082
1082
  "id": "MixedContentResourceType",
1083
1083
  "type": "string",
1084
1084
  "enum": [
1085
+ "AttributionSrc",
1085
1086
  "Audio",
1086
1087
  "Beacon",
1087
1088
  "CSPReport",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.971103",
3
+ "version": "0.0.971358",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -526,6 +526,7 @@ experimental domain Audits
526
526
 
527
527
  type MixedContentResourceType extends string
528
528
  enum
529
+ AttributionSrc
529
530
  Audio
530
531
  Beacon
531
532
  CSPReport
@@ -3109,7 +3109,7 @@ export namespace Protocol {
3109
3109
 
3110
3110
  export type MixedContentResolutionStatus = ('MixedContentBlocked' | 'MixedContentAutomaticallyUpgraded' | 'MixedContentWarning');
3111
3111
 
3112
- export type MixedContentResourceType = ('Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
3112
+ export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
3113
3113
 
3114
3114
  export interface MixedContentIssueDetails {
3115
3115
  /**