devtools-protocol 0.0.1495869 → 0.0.1498010

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.
@@ -2089,7 +2089,8 @@
2089
2089
  "type": "string",
2090
2090
  "enum": [
2091
2091
  "BlockedFrameNavigation",
2092
- "BlockedSubresource"
2092
+ "BlockedSubresource",
2093
+ "NoisedCanvasReadback"
2093
2094
  ]
2094
2095
  },
2095
2096
  {
@@ -2106,6 +2107,12 @@
2106
2107
  "description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.",
2107
2108
  "optional": true,
2108
2109
  "$ref": "AffectedRequest"
2110
+ },
2111
+ {
2112
+ "name": "sourceCodeLocation",
2113
+ "description": "Applies to NoisedCanvasReadback issue type.",
2114
+ "optional": true,
2115
+ "$ref": "SourceCodeLocation"
2109
2116
  }
2110
2117
  ]
2111
2118
  },
@@ -6338,6 +6345,7 @@
6338
6345
  "before",
6339
6346
  "after",
6340
6347
  "picker-icon",
6348
+ "interest-hint",
6341
6349
  "marker",
6342
6350
  "backdrop",
6343
6351
  "column",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1495869",
3
+ "version": "0.0.1498010",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1096,6 +1096,7 @@ experimental domain Audits
1096
1096
  enum
1097
1097
  BlockedFrameNavigation
1098
1098
  BlockedSubresource
1099
+ NoisedCanvasReadback
1099
1100
 
1100
1101
  # This issue warns about uses of APIs that may be considered misuse to
1101
1102
  # re-identify users.
@@ -1104,6 +1105,8 @@ experimental domain Audits
1104
1105
  UserReidentificationIssueType type
1105
1106
  # Applies to BlockedFrameNavigation and BlockedSubresource issue types.
1106
1107
  optional AffectedRequest request
1108
+ # Applies to NoisedCanvasReadback issue type.
1109
+ optional SourceCodeLocation sourceCodeLocation
1107
1110
 
1108
1111
  # A unique identifier for the type of issue. Each type may use one of the
1109
1112
  # optional fields in InspectorIssueDetails to convey more specific
@@ -3016,6 +3019,7 @@ domain DOM
3016
3019
  before
3017
3020
  after
3018
3021
  picker-icon
3022
+ interest-hint
3019
3023
  marker
3020
3024
  backdrop
3021
3025
  column
@@ -3851,7 +3851,7 @@ export namespace Protocol {
3851
3851
  propertyValue?: string;
3852
3852
  }
3853
3853
 
3854
- export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource');
3854
+ export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource' | 'NoisedCanvasReadback');
3855
3855
 
3856
3856
  /**
3857
3857
  * This issue warns about uses of APIs that may be considered misuse to
@@ -3863,6 +3863,10 @@ export namespace Protocol {
3863
3863
  * Applies to BlockedFrameNavigation and BlockedSubresource issue types.
3864
3864
  */
3865
3865
  request?: AffectedRequest;
3866
+ /**
3867
+ * Applies to NoisedCanvasReadback issue type.
3868
+ */
3869
+ sourceCodeLocation?: SourceCodeLocation;
3866
3870
  }
3867
3871
 
3868
3872
  /**
@@ -6568,7 +6572,7 @@ export namespace Protocol {
6568
6572
  /**
6569
6573
  * Pseudo element type.
6570
6574
  */
6571
- export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6575
+ export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6572
6576
 
6573
6577
  /**
6574
6578
  * Shadow root type.